-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preparation for 3 manifolds experiment
- Loading branch information
1 parent
e10d013
commit eac11c3
Showing
14 changed files
with
225 additions
and
129 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from enum import Enum | ||
from torch_geometric.data import Batch, Data | ||
|
||
|
||
class DatasetType(Enum): | ||
""" | ||
DESCRIPTION: | ||
- FULL_2D - Mantra on 2D manifolds | ||
- FULL_3D - Mantra on 3D manifolds | ||
- NO_NAMELESS_2D - Mantra on 2D manifolds only including simplicial complexes which have a name label. | ||
""" | ||
|
||
FULL_2D = "full_2d" | ||
FULL_3D = "full_3d" | ||
NO_NAMELESS_2D = "no_nameless_2d" | ||
|
||
|
||
def filter_nameless(data: Data) -> bool: | ||
return data.name != "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.