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-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The tester tool will unpack your submission, and the
44
44
```
45
45
docker build -t <id> .
46
46
```
47
-
command will be used to build your docker image (the final '.' is significant), where <id> is your TopCoder handle.
47
+
command will be used to build your docker image (the final '.' is significant), where `<id>` is your TopCoder handle.
48
48
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.
49
49
Your container will be started by the
50
50
```
@@ -60,7 +60,8 @@ docker run -it <id>
60
60
## Train and test scripts
61
61
62
62
Your container must contain a train and test (a.k.a. inference) script having the following specification:
63
-
train.sh <data-folder> should create any data files that your algorithm needs for running test.sh later. The supplied <data-folder> parameters point to a folder having training data in the same structure as is available for you during the coding phase. The allowed time limit for the train.sh script is 3 days. You may assume that the data folder path will be under /data.
63
+
64
+
`train.sh <data-folder>` should create any data files that your algorithm needs for running test.sh later. The supplied `<data-folder>` parameters point to a folder having training data in the same structure as is available for you during the coding phase. You may assume that the data folder path will be under /data.
64
65
65
66
As its first step train.sh must delete the self-created models shipped with your submission.
66
67
@@ -80,7 +81,7 @@ In this case you can assume that the training data looks like this:
80
81
TODO fill after structure fixed
81
82
```
82
83
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.
84
+
`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.
84
85
85
86
Inference should be possible to do without running training first, i.e. using only your prebuilt model files.
0 commit comments