Skip to content

Commit 6c5a0d4

Browse files
committed
removing some duplicate text and attempting single quote fix
1 parent 1f842d2 commit 6c5a0d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Template code for participating in Topcoder Marathon Matches
33

44

55
## Submission format
6-
Our template supports both the "submit data" and "submit code" submission styles. Your submission should be a single ZIP file not larger than 500 MB, with the following content:
6+
Our template supports both the "submit data" and "submit code" submission styles. Your submission should be a single ZIP file with the following content:
77

88
```
99
/solution
@@ -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 &apos;.&apos; is significant), where <id> is your TopCoder handle.
46+
command will be used to build your docker image (the final &#39;.&#39; 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&apos;s data to the container&apos;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&#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.
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&apos;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&#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.
6969

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

0 commit comments

Comments
 (0)