You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Template code for participating in Topcoder Marathon Matches
3
3
4
4
5
5
## 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:
7
7
8
8
```
9
9
/solution
@@ -43,13 +43,13 @@ The tester tool will unpack your submission, and the
43
43
```
44
44
docker build -t <id> .
45
45
```
46
-
command will be used to build your docker image (the final '.' 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.
47
47
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.
48
48
Your container will be started by the
49
49
```
50
50
docker run -v <local_data_path>:/data:ro -v <local_writable_area_path>:/wdata -it <id>
51
51
```
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.
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.
53
53
54
54
To validate the template file supplied with this repo. You can execute the following command:
55
55
```
@@ -65,7 +65,7 @@ As its first step train.sh must delete the self-created models shipped with your
65
65
66
66
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.
67
67
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.
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.
69
69
70
70
A sample call to your training script (single line):
0 commit comments