Skip to content

Commit 8aa86fd

Browse files
committed
Remove GNN experiments
1 parent 31df43d commit 8aa86fd

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

chebai/experiments.py

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -319,37 +319,3 @@ def build_dataset(self, batch_size) -> datasets.XYBaseDataModule:
319319
data_path=os.path.join(MODULE_PATH, "preprocessing/bin/BPE_SWJ")
320320
),
321321
)
322-
323-
324-
class GATOnSWJ(Experiment):
325-
MODEL = graph.JCIGraphAttentionNet
326-
327-
@classmethod
328-
def identifier(cls) -> str:
329-
return "GAT+JCIExt"
330-
331-
def model_kwargs(self, *args) -> Dict:
332-
return dict(
333-
in_length=50,
334-
hidden_length=100,
335-
)
336-
337-
def build_dataset(self, batch_size) -> datasets.XYBaseDataModule:
338-
return datasets.JCIGraphData(batch_size)
339-
340-
341-
class GATOnTox21(Experiment):
342-
MODEL = graph.JCIGraphAttentionNet
343-
344-
@classmethod
345-
def identifier(cls) -> str:
346-
return "GAT+Tox21"
347-
348-
def model_kwargs(self, *args) -> Dict:
349-
return dict(
350-
in_length=50,
351-
hidden_length=100,
352-
)
353-
354-
def build_dataset(self, batch_size) -> datasets.XYBaseDataModule:
355-
return datasets.Tox21Graph(batch_size)

0 commit comments

Comments
 (0)