Hello,
I’m trying to make a submission for the learning-to-smell challenge:
I adapted the starter-kit to load and run my model but I keep getting an failure during the prediction setup step.
The error message is the following : The following containers terminated prematurely. : agent Please contact administrators, or refer to the execution logs.
I think there is a bug in my setup method but since I don’t have access to the logs and I don’t understand the error message I can’t debug my code.
In the starter-kit README there is the following instruction for the debug submission: debug_submission: true
but in the file aicrowd.json there is the following line: "debug": false
which one I have to set to true if I want to do a debug submission: debug_submission or debug ?
how many submission are allowed for each player? How many debug-submission are allowed?
(I apologize for the the many questions I’m new to the AIcrowd platform)
Thank you,
just one more thing:
I’m tying to use conda environment, I added the .yml file in the root directory but it doesn’t seem to work because I get errors related to the absence of modules.
Do you have any suggestions ?
I used the command conda env export --no-builds | grep -v "prefix" > environment.yml in the environment to export it with the right name.
Then I have deleted the two following lines (I’m on mac)
clangxx_osx-64=10.0.0
compiler-rt_osx-64=10.0.0
when I make the submission I get the following failure Solving environment: ...working... failed
with this log error:
docker.errors.BuildError: The command '/bin/sh -c conda env update -p ${NB_PYTHON_PREFIX} -f "environment.yml" && conda clean --all -f -y && conda list -p ${NB_PYTHON_PREFIX}' returned a non-zero code: 1
Looks like it is happening because your export contains some packages which are not available on Linux (or the version pinned isn’t available in Linux) v/s osx.
In case you don’t need those packages directly (assuming they got added as a dependency of the package you really wanted to use), please remove them from your environment.yml file and make the submission.
You want to use the package, in that case, please check for its Linux version and/or remove version pinning.
Please let me know in case you continue to face any issue.
thank you,
I removed all the unnecessary packages that where causing problems but i still have the following error:
Pip subprocess error: ERROR: Could not find a version that satisfies the requirement aicrowd-api==0.1.24 ERROR: No matching distribution found for aicrowd-api==0.1.24