You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shared/: Training code and models shared between project members.
src/
data/: Raw trainging and testing data cs files.
arc/: Random forest models with lagging labels.
rfr/: Random forest models without lagging labels.
rnn/: RNN models.
training/: Training code.
ensmeble.sh: Shell script for reproduction.
arcanin_rf.py: Testing code for random forest models with lagging labels. (preprocessing included)
merge_test.py: Testing code for random forest models without lagging labels and final ensemble. (preprocessing included)
rnn2221.py: Testing code for RNN ensmeble models. (preprocessing included)
Report.pdf**
requirements.txt**
README.md**
Reproduce Prediction
Under current directory, install required python3.6 packages with requirements.txt.
Change directory to src/.
Make sure shell script ensmeble.sh is executable.
Execute ensemble.sh.
The final prediction file is generated under src/ and is named ensemble_result.csv. In addition, two intermediate csv files arc.csv and rnn2221.csv will be generated under the same directory.
About
Final project for NTUEE Machine Learning, Spring 2017.