Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit aba4a14

Browse files
attempting another single quote fix, added data directory
1 parent 6c5a0d4 commit aba4a14

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
@@ -43,13 +43,13 @@ The tester tool will unpack your submission, and the
4343
```
4444
docker build -t <id> .
4545
```
46-
command will be used to build your docker image (the final &#39;.&#39; is significant), where <id> is your TopCoder handle.
46+
command will be used to build your docker image (the final \`.\` is significant), where <id> is your TopCoder handle.
4747
The build process must run out of the box, i.e. it should download and install all necessary 3rd party dependencies, either download from internet or copy from the unpacked submission all necessary external data files, your model files, etc.
4848
Your container will be started by the
4949
```
5050
docker run -v <local_data_path>:/data:ro -v <local_writable_area_path>:/wdata -it <id>
5151
```
52-
command (single line), where the -v parameter mounts the contest&#39;s data to the container&#39;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.
52+
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.
5353

5454
To validate the template file supplied with this repo. You can execute the following command:
5555
```
@@ -65,7 +65,7 @@ As its first step train.sh must delete the self-created models shipped with your
6565

6666
Some algorithms may not need any training at all. It is a valid option to leave train.sh empty, but the file must exist nevertheless.
6767

68-
Training should be possible to do with working with only the contest&#39;s own training data and publicly available external data. This means that this script should do all the preprocessing and training steps that are necessary to reproduce your complete training work flow.
68+
Training should be possible to do with working with only the contest\`s own training data and publicly available external data. This means that this script should do all the preprocessing and training steps that are necessary to reproduce your complete training work flow.
6969

7070
A sample call to your training script (single line):
7171
```

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /