Skip to content

Commit

Permalink
metric
Browse files Browse the repository at this point in the history
  • Loading branch information
anaderi committed Jul 12, 2020
1 parent 494012f commit 7157754
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,12 @@

This repository will help you get started with coopetitions. The task is to modify the `solution.py`, so it stores the sum of two columns in a separate `data.predict` file into an output directory.

## Metrics

Your solution will be evaluated by Mean Absolute Error metric:
```
from sklearn.metrics import mean_absolute_error
def scorer(solution, prediction):
return mean_absolute_error(solution, prediction)
```
It should give result as low as possible (absolute minimum is equal to zero).

0 comments on commit 7157754

Please sign in to comment.