Browse Source

[Exp] Update exceptions in fcsp exps.

v0.2.x
jajupmochi 4 years ago
parent
commit
59a36aa0a0
1 changed files with 9 additions and 7 deletions
  1. +9
    -7
      gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py

+ 9
- 7
gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py View File

@@ -47,12 +47,14 @@ OUT_TIME_LIST = set({('ShortestPath', 'ENZYMES', 'False'),
('StructuralSP', 'Mutagenicity', 'False'),
})

OUT_MEM_LIST = set({('StructuralSP', 'PROTEINS', 'True'),
('StructuralSP', 'PROTEINS', 'False'),
('StructuralSP', 'PROTEINS_full', 'True'),
('StructuralSP', 'PROTEINS_full', 'False'),
('ShortestPath', 'REDDIT-BINARY', 'True'),
})
OUT_MEM_LIST = set({('StructuralSP', 'DD', 'True'),
('StructuralSP', 'DD', 'False'),
('StructuralSP', 'PROTEINS', 'True'),
('StructuralSP', 'PROTEINS', 'False'),
('StructuralSP', 'PROTEINS_full', 'True'),
('StructuralSP', 'PROTEINS_full', 'False'),
('ShortestPath', 'REDDIT-BINARY', 'True'),
})

MISS_LABEL_LIST = set({('StructuralSP', 'GREC', 'True'),
('StructuralSP', 'GREC', 'False'),
@@ -108,7 +110,7 @@ def check_task_status(save_dir, *params):
command = 'squeue --user $USER --partition tlong --noheader'
stream = os.popen(command)
output = stream.readlines()
if len(output) > 10:
if len(output) >= 10:
return True




Loading…
Cancel
Save