> Problem with submission

Hello, when I try to submit the .zip file generated by check_your_submission.py, the webpage shows: failed, competition phase is being migrated, please try again in a few minutes. I tried several times and the same error shows. May I ask what the problem is? Thanks!

Posted by: daisy123 @ June 4, 2020, 2:24 a.m.

Hello,

This problem should have been solved for now.
Sorry for the inconvenience, I don't quite understand what is the cause of that.

You should try and let us know in case of trouble again.

Benjamin

Posted by: BDonnot @ June 4, 2020, 6:42 a.m.

Hi Benjamin,

Thanks for your reply! However, when I tried to upload the .zip file, it shows failed, and the ingestion error log has the following content:

2020-06-04 12:28:12.892929: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libcuda.so.1'; dlerror: libcuda.so.1: cannot open shared object file: No such file or directory
2020-06-04 12:28:12.892967: E tensorflow/stream_executor/cuda/cuda_driver.cc:313] failed call to cuInit: UNKNOWN ERROR (303)
2020-06-04 12:28:12.893127: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:156] kernel driver does not appear to be running on this host (2cbcbac51f69): /proc/driver/nvidia/version does not exist
2020-06-04 12:28:12.893424: I tensorflow/core/platform/cpu_feature_guard.cc:143] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 AVX512F FMA
2020-06-04 12:28:12.917909: I tensorflow/core/platform/profile_utils/cpu_utils.cc:102] CPU Frequency: 2500000000 Hz
2020-06-04 12:28:12.918157: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x557bcb8093f0 initialized for platform Host (this does not guarantee that XLA will be used). Devices:
2020-06-04 12:28:12.918282: I tensorflow/compiler/xla/service/service.cc:176] StreamExecutor device (0): Host, Default Version

The .zip file is generated by check_your_submission.py, and the program can run locally and successfully shows the score and the duration. May I ask why submission fails? Many thanks in advance!

Posted by: daisy123 @ June 4, 2020, 12:35 p.m.

Hello,
Indeed your submission has some trouble.

What i can recommend is that you create a specific virtual env, with only the package "grid2op[challange]==0.9.1.post1" (to mimic then environment of the competition):
> python -m virtualenv venv
> source venv/bin/activate
> pip install -U grid2op[challange]==0.9.1.post1
and then you retry to zip your submission using the "check_your_submission.py" script.
> python check_your_submission.py --model_dir "PATH/WHERE/YOUR/MODEL/IS/SAVED"

Maybe there are a few wrong imports (eg "from submission import xxx" instead of "from .submission import xxx"), possibly some missing files too.

Normally you should get a much clearer error on your submission if you use the provided script.

Benjamin

Posted by: BDonnot @ June 4, 2020, 1:09 p.m.

Hi Benjamin,

Many thanks for your reply! The problem is solved.

Posted by: daisy123 @ June 5, 2020, 2:11 a.m.
Post in this thread