Contains starter code for participation in the Numerai competition using deep learning framework, Keras
- Define your Neural Network Architeture in
train.py
- Download data from Numerai
- Remove
t_id
column innumerai_tournament_data
removefeature
column innumerai_training_data
- Put data in
/data
Dependencies
pip install requirements.txt
Set variables training
validation_split=0.3
, Sets aside 30% of training data for testingshuffle=True
, Set toTrue
if you want to shuffle data before each epochnb_epoch=50
, Number of epochs you want your neural net to trainbatch_size=5000
Number of batches you would like to use during training
Train the network python train.py
Create predictions python predict.py
predictions are in /predictions/predictions.csv
Varies by architecture used & Numerai data released each week