Skip to content

Commit 16dc796

Browse files
committed
Added backticks to inline code, removed more embedded rules text
1 parent ec7373f commit 16dc796

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The tester tool will unpack your submission, and the
4444
```
4545
docker build -t <id> .
4646
```
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.
4848
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.
4949
Your container will be started by the
5050
```
@@ -60,7 +60,8 @@ docker run -it <id>
6060
## Train and test scripts
6161

6262
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.
6465

6566
As its first step train.sh must delete the self-created models shipped with your submission.
6667

@@ -80,7 +81,7 @@ In this case you can assume that the training data looks like this:
8081
TODO fill after structure fixed
8182
```
8283

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.
8485

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

0 commit comments

Comments
 (0)