diningphil / gnn-comparison

Official Repository of "A Fair Comparison of Graph Neural Networks for Graph Classification", ICLR 2020
GNU General Public License v3.0
385 stars 54 forks source link

Call each other #15

Closed rym21 closed 4 years ago

rym21 commented 4 years ago

In Launch_Experiments.py, def train() and def _train(), The two functions call each other, resulting in an endless loop?

diningphil commented 4 years ago

There is no definition of methods train and _train in Launch_Experiments.py. What functions are you referring to?

rym21 commented 4 years ago

The reason I suspect they call each other is because the program print to much logs and take a long time. I doubt that the program seems to be stuck in an endless loop and TE loss: None TE acc: None. I have changed classifier_epochs from 5000 to 50 in config_BaselineChemical.yml. I had the program running all night, and it give me a result. I have no problem now. Thanks for your attention.