Skip to content

Commit ec7373f

Browse files
committed
Added folders and blank data files for ease of understanding, changed "training" to "train" for consistency
1 parent 18a12b2 commit ec7373f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To validate the template file supplied with this repo. You can execute the foll
5757
docker run -it <id>
5858
```
5959

60-
## Training and test scripts
60+
## Train and test scripts
6161

6262
Your container must contain a train and test (a.k.a. inference) script having the following specification:
6363
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.
@@ -70,13 +70,13 @@ Training should be possible to do with working with only the contest's own train
7070

7171
A sample call to your training script (single line):
7272
```
73-
./train.sh /data/training/
73+
./train.sh /data/train/
7474
```
7575

7676
In this case you can assume that the training data looks like this:
7777
```
7878
data/
79-
training/
79+
train/
8080
TODO fill after structure fixed
8181
```
8282

data/test/test.csv

Whitespace-only changes.

data/train/train.csv

Whitespace-only changes.

solution/solution.csv

Whitespace-only changes.

0 commit comments

Comments
 (0)