https://github.com/boxdot/bayes_classifier
Multinomial naïve Bayes classifier for https://www.kaggle.com/c/whats-cooking
https://github.com/boxdot/bayes_classifier
Last synced: about 1 year ago
JSON representation
Multinomial naïve Bayes classifier for https://www.kaggle.com/c/whats-cooking
- Host: GitHub
- URL: https://github.com/boxdot/bayes_classifier
- Owner: boxdot
- Created: 2016-07-08T12:40:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-04-02T11:17:52.000Z (about 2 years ago)
- Last Synced: 2025-02-04T15:48:37.751Z (over 1 year ago)
- Language: C++
- Size: 2.13 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build
Put [rapidjson](https://github.com/miloyip/rapidjson) source into `$HOME/src` and build with
```
make
```
## Classify
The train and test data are available at https://www.kaggle.com/c/whats-cooking. Classify with:
```
./bayes_classifier train.json test.json > submission.csv
```