When submitting to the Equity Market Neutral #2 competition via CLI the process fails at what looks like the pip install stage. requirements.txt file contains
pandas
numpy
xgboost
I think xgboost is the problem.
When submitting to the Equity Market Neutral #2 competition via CLI the process fails at what looks like the pip install stage. requirements.txt file contains
pandas
numpy
xgboost
I think xgboost is the problem.
The log shows Created Task: arn:aws:ecs:eu-west-1:491243661843:task/competitionârunnerâproduction/20847ef4238b41b69fd13347834048ff
started
Changed status: RUNNING
/context/requirements.txt: download from https:crunchdaoâcompetitionâproduction.s3-accelerate.amazonaws.com/submissions/63309/requirements.txt (48 bytes)
Running pip⌠Toggle âShow advanced logsâ in order to see more details
command not exited correctly: 1
When the version of xgboost is specified in requirements.txt e.g. xgboost==2.0.3 it works, so maybe the problem is with the latest version of xgboost.
Apologies for the delay in my reply.
To ensure that the library versions match your local environment, the system attempts to freeze the requirements with your locally installed version.
However, sometimes it causes issues if your local environment is too new for the options offered on the platform.
To prevent this behavior, use the following command: crunch push --no-pip-freeze.
That worked. Thanks.