File tree Expand file tree Collapse file tree 1 file changed +0
-34
lines changed
Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments