cavalab / srbench

A living benchmark framework for symbolic regression
https://cavalab.org/srbench/
GNU General Public License v3.0
216 stars 75 forks source link

adds TaylorGP for competition #94

Closed lacava closed 2 years ago

lacava commented 2 years ago

cc @KGAE-CUP

Competition Checklist:

I have verified that:

Refer to the competition guide if you are unsure about any steps. If you don't find an answer, ping us!

lacava commented 2 years ago

@KGAE-CUP please provide an install.sh with something simple like

cd taylorGP
python setup.py install

Otherwise python setup.py install won't be triggered anywhere. Hopefully will work after that.

KGAE-CUP commented 2 years ago

@KGAE-CUP please provide an install.sh with something simple like

cd taylorGP
python setup.py install

Otherwise python setup.py install won't be triggered anywhere. Hopefully will work after that.

@lacava Thank you for your valuable comments! I saw that there are many ways to submit code in competition requirements. To replace the "install. sh" method, I chose environmen.yml to install the virtual environment locally through "conda env create - f environment. yml". Do you have any suggestions on this? Thank you for your letter.

lacava commented 2 years ago

@lacava Thank you for your valuable comments! I saw that there are many ways to submit code in competition requirements. To replace the "install. sh" method, I chose environmen.yml to install the virtual environment locally through "conda env create - f environment. yml". Do you have any suggestions on this? Thank you for your letter.

Unless taylorGP is a conda package, you will need to both 1) create the env via environment.yml and 2) call 'python setup.py install' in the package directory. the install.sh file would accomplish 2).

this is what i understand from the .travis.yml file in your submission - i left a comment on the relevant line. you should confirm this is how to install the package.

KGAE-CUP commented 2 years ago

@lacava Hello lcava, I found that the "install. sh" in the "experiment/methods/TaylorGP" folder is empty, which is not the same as the install. sh in the "submission/TaylorGP" folder, will this cause my algorithm fail to test datasets?

lacava commented 2 years ago

hi @KGAE-CUP no, you should be all set. I will let you know if I run into any issues.