Skip to content
Snippets Groups Projects
Commit e89d19c9 authored by spmohanty's avatar spmohanty
Browse files

Update README

parent 80d65e01
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
A non-exhaustive list of Frequently Asked Questions for the [Flatland Challenge](https://www.aicrowd.com/challenges/flatland-challenge). A non-exhaustive list of Frequently Asked Questions for the [Flatland Challenge](https://www.aicrowd.com/challenges/flatland-challenge).
## How do I locally build a docker image out of my submission ? ### How do I locally build a docker image out of my submission ?
* Install Dependencies * Install Dependencies
- **docker** : By following the instructions [here](https://docs.docker.com/install/linux/docker-ce/ubuntu/) - **docker** : By following the instructions [here](https://docs.docker.com/install/linux/docker-ce/ubuntu/)
...@@ -21,5 +21,18 @@ sudo aicrowd-repo2docker --no-run \ ...@@ -21,5 +21,18 @@ sudo aicrowd-repo2docker --no-run \
--debug . --debug .
``` ```
### Debugging the packaged software environment
If you have issues with your submission because of your software environment and dependencies, you can debug them, by first building the docker image, and then getting a shell inside the image by :
```
# After ensuring that you have build the docker image by following the
# instructions here : https://github.com/AIcrowd/flatland-challenge-starter-kit/blob/master/FAQ.md#how-do-i-locally-build-a-docker-image-out-of-my-submission-
docker run --net=host -it my-random-agent /bin/bash
```
and then exploring to find the cause of the issue.
# Author # Author
Sharada Mohanty <https://twitter.com/MeMohanty> Sharada Mohanty <https://twitter.com/MeMohanty>
\ No newline at end of file
...@@ -43,17 +43,32 @@ cd flatland-challenge-starter-kit ...@@ -43,17 +43,32 @@ cd flatland-challenge-starter-kit
### Test Submission Locally ### Test Submission Locally
**NOTE** : Please ensure that you have a redis-server running on localhost. * First lets begin by downloading a small set of test envs, and put them at a location of your choice.
In this exercise, we assume that you will download the test-envs provided at : [https://www.aicrowd.com/challenges/flatland-challenge/dataset_files](https://www.aicrowd.com/challenges/flatland-challenge/dataset_files), and will untar them inside `./scratch/test-envs`, so that you have a directory structure similar to :
```
```
* `redis-server` : **NOTE** : Please ensure that you have a redis-server running on localhost.
You can find more instructions on how to run redis [here](https://redis.io/topics/quickstart) You can find more instructions on how to run redis [here](https://redis.io/topics/quickstart)
* **Run evaluator**
``` ```
cd flatland-challenge-starter-kit cd flatland-challenge-starter-kit
# In a separate tab : run local grader # In a separate tab : run local grader
flatland-evaluation --tests <path_to_your_tests_directory> flatland-evaluation --tests <path_to_your_tests_directory>
```
* **Run Agent(s)**
```
# In a separate tab : # In a separate tab :
export AICROWD_TESTS_FOLDER=<path_to_your_tests_directory> export AICROWD_TESTS_FOLDER=<path_to_your_tests_directory>
# or on windows : # or on Windows :
# #
# SET AICROWD_TESTS_FOLDER=<path_to_your_tests_directory> # SET AICROWD_TESTS_FOLDER=<path_to_your_tests_directory>
python run.py python run.py
...@@ -113,16 +128,6 @@ conda env export --no-build > environment.yml ...@@ -113,16 +128,6 @@ conda env export --no-build > environment.yml
# Note the `--no-build` flag, which is important if you want your anaconda env to be replicable across all # Note the `--no-build` flag, which is important if you want your anaconda env to be replicable across all
``` ```
### Debugging the packaged software environment
If you have issues with your submission because of your software environment and dependencies, you can debug them, by first building the docker image, and then getting a shell inside the image by :
```
docker run --net=host -it $IMAGE_NAME /bin/bash
```
and then exploring to find the cause of the issue.
### Code Entrypoint ### Code Entrypoint
The evaluator will use `/home/aicrowd/run.sh` as the entrypoint, so please remember to have a `run.sh` at the root, which can instantitate any necessary environment variables, and also start executing your actual code. This repository includes a sample `run.sh` file. The evaluator will use `/home/aicrowd/run.sh` as the entrypoint, so please remember to have a `run.sh` at the root, which can instantitate any necessary environment variables, and also start executing your actual code. This repository includes a sample `run.sh` file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment