Skip to content

Commit

Permalink
Added List of Models
Browse files Browse the repository at this point in the history
  • Loading branch information
SuyashLakhotia committed Apr 3, 2017
1 parent 727ca48 commit e08e2c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Private Score: XYZ, Public Score: XYZ
"""
```

Submit a pull request to `master` once done.
Submit a pull request to `master` once done. After merging with `master`, add details about the model to `List of Models.md`.
10 changes: 10 additions & 0 deletions List of Models.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## List of Models

- `linearregression.py`
- Private Score: 0.16939, Public Score: 0.14867
- Features: Promo, SchoolHoliday, DayOfWeek (one-hot encoded), StateHoliday (one-hot encoded)
- Treating each store as an independent regression problem, loop through all stores training the model for the particular store and predicting its sales value.
- `simplemedian.py`
- Private Score: 0.14598, Public Score: 0.14001
- Features: Store, DayOfWeek, Promo
- This model simply calculates the median value for every ["Store", "DayOfWeek", "Promo"] combination and assigns that value as the prediction for every ["Store", "DayOfWeek", "Promo"] combination in the test data.

0 comments on commit e08e2c8

Please sign in to comment.