cvignac / DiGress

code for the paper "DiGress: Discrete Denoising diffusion for graph generation"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

questions about the hyperparameters

koalaaaaaaaaa opened this issue · comments

Hi, thanks for your code so much!
I'm wondering whether I can reproduce the results in the paper by simply running main.py without changing any hyperparameters? If I have to change the hyperparameters, then which hyperparamerters should I choose?
Thanks so much for your kindest reply!

Hello, the code uses configuration files, which are stored in the config folder.

For example, if you want to run the code for the moses dataset, you should run

python3 main.py dataset=moses +experiment=moses

You can check the documentation of hydra to understand how it works (hydra.cc/)

Thanks a lot! I almost get it, and I want to make sure that you mean the hyperparameters in config files are those used to produce the results in the paper?