-
Notifications
You must be signed in to change notification settings - Fork 49
First submission (root, С)
Andrey Ustyuzhanin edited this page Jul 20, 2015
·
3 revisions
There are ROOT/С++ scripts to train TMVA in folder baseline_c.
- convert.c - converts csv file to root file
- tmva.c - trains simple gradient boosting, predicts test sample and creates baseline_c.csv submission file
Steps:
- Clone the repository
git clone https://github.com/yandexdataschool/flavours-of-physics-start
- Follow to the instructions in the tau_data/README.md
- go to folder baseline_c
cd baseline_c
- Create training.root
echo '.x convert.c("../tau_data/training")' | root -b -l
- Create test.root
echo '.x convert.c("../tau_data/test")' | root -b -l
- Train and prepare submission file
echo '.x tmva.c' | root -b -l
- Send baseline_c.csv to the kaggle platform.