Skip to content
Snippets Groups Projects
Commit cbc183e6 authored by ashivani's avatar ashivani
Browse files

Update README.md

parent aadcc8ca
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,22 @@ _result_object = {
}
```
For challenge, with the concept of public/private score, we use meta parameters.
```python
_result_object = {
"score": f1,
"score_secondary": log_loss_score,
"meta": {
"private_score": 0.0,
"private_score_secondary": 0.0
}
}
```
Here the numbers in score & score_secondary will be visible to participants during the challenge, while "private_*" are hidden for them .
Once the challenge is over, we can change it to "private_score" & "private_score_secondary" in Leaderboard settings.
### requirements.txt
This is the requirements file for `evaluator.py` and contains all the python modules which might be needed for evaluation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment