Abhishek Thakur commited on
Commit
ad58342
·
1 Parent(s): d037a92

doc update

Browse files
Files changed (1) hide show
  1. docs/source/competition_repo.mdx +3 -2
docs/source/competition_repo.mdx CHANGED
@@ -48,7 +48,8 @@ conf.json is the configuration file for the competition. An example conf.json is
48
  "SUBMISSION_ROWS":10000,
49
  "EVAL_METRIC":"roc_auc_score",
50
  "LOGO":"https://github.com/abhishekkrthakur/public_images/blob/main/song.png?raw=true",
51
- "DATASET": ""
 
52
  }
53
  ```
54
 
@@ -71,7 +72,7 @@ as it would require you to re-evaluate all the submissions.
71
  - EVAL_METRIC: This field is used to specify the evaluation metric. We support all the scikit-learn metrics and even custom metrics.
72
  - LOGO: This field is used to specify the logo of the competition. The logo must be a png file. The logo is shown on the all pages of the competition.
73
  - DATASET: This field is used to specify the PRIVATE dataset used in the competition. The dataset is available to the users only during the script run. This is only used for script competitions.
74
-
75
 
76
  ### solution.csv
77
 
 
48
  "SUBMISSION_ROWS":10000,
49
  "EVAL_METRIC":"roc_auc_score",
50
  "LOGO":"https://github.com/abhishekkrthakur/public_images/blob/main/song.png?raw=true",
51
+ "DATASET": "",
52
+ "SUBMISSION_FILENAMES": ["submission.csv"]
53
  }
54
  ```
55
 
 
72
  - EVAL_METRIC: This field is used to specify the evaluation metric. We support all the scikit-learn metrics and even custom metrics.
73
  - LOGO: This field is used to specify the logo of the competition. The logo must be a png file. The logo is shown on the all pages of the competition.
74
  - DATASET: This field is used to specify the PRIVATE dataset used in the competition. The dataset is available to the users only during the script run. This is only used for script competitions.
75
+ - SUBMISSION_FILENAMES: This field is used to specify the name of the submission file. This is only used for script competitions with custom metrics and must not be changed for generic competitions.
76
 
77
  ### solution.csv
78