Skip to content

Commit 18a12b2

Browse files
committed
attempting another single quote fix, removed challenge rule language from template README.md
1 parent b8fcde1 commit 18a12b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The /code folder of your submission must contain:
3636
1. All your code (training and inference) that are needed to reproduce your results.
3737
2. A dockerfile (named Dockerfile, without extension) that will be used to build your system.
3838
3. All data files that are needed during training and inference, with the exception of
39-
the contests own training and testing data. You may assume that the contents of the /Training folder and the training annotations (as described in the Input files section) will be available on the machine where your docker container runs, compressed files already unpacked,
39+
the contest's own training and testing data. You may assume that the contents of the /Training folder and the training annotations (as described in the Input files section) will be available on the machine where your docker container runs, compressed files already unpacked,
4040
large data files that can be downloaded automatically either during building or running your docker script.
4141
4. Your trained model file(s). Alternatively your build process may download your model files from the network. Either way, you must make it possible to run inference without having to execute training first.
4242

@@ -50,7 +50,7 @@ Your container will be started by the
5050
```
5151
docker run -v <local_data_path>:/data:ro -v <local_writable_area_path>:/wdata -it <id>
5252
```
53-
command (single line), where the -v parameter mounts the contest's data to the container's /data folder. This means that all the raw contest data will be available for your container within the /data folder. Note that your container will have read only access to the /data folder. You can store large temporary files in the /wdata folder.
53+
command (single line), where the -v parameter mounts the contest's data to the container's /data folder. This means that all the raw contest data will be available for your container within the /data folder. Note that your container will have read only access to the /data folder. You can store large temporary files in the /wdata folder.
5454

5555
To validate the template file supplied with this repo. You can execute the following command:
5656
```
@@ -80,7 +80,7 @@ In this case you can assume that the training data looks like this:
8080
TODO fill after structure fixed
8181
```
8282

83-
test.sh <data-folder> <output_path> should run your inference code using new, unlabeled data and should generate an output CSV file, as specified by the problem statement. The allowed time limit for the test.sh script is 24 hours. The testing data folder contain similar data in the same structure as is available for you during the coding phase. The final testing data will be similar in size and in content to the provisional testing data. You may assume that the data folder path will be under /data.
83+
test.sh <data-folder> <output_path> should run your inference code using new, unlabeled data and should generate an output CSV file, as specified by the problem statement. You may assume that the data folder path will be under /data.
8484

8585
Inference should be possible to do without running training first, i.e. using only your prebuilt model files.
8686

0 commit comments

Comments
 (0)