cvignac / DiGress

code for the paper "DiGress: Discrete Denoising diffusion for graph generation"
MIT License
314 stars 68 forks source link

questions about the hyperparameters #50

Closed koalaaaaaaaaa closed 1 year ago

koalaaaaaaaaa commented 1 year ago

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!

cvignac commented 1 year ago

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/)

koalaaaaaaaaa commented 1 year ago

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?