Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 482 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 482 Bytes

numerai - shared code for Numerai models

Setup:

git clone https://github.com/vbarda/numerai.git

In the repository directory:

vi constants.py

In the file:

PROJECT_PATH = [path to repository directory]

Usage:

Start Notebook:

%load ../tools/nb_start.py

Read datasets in:

from tools.load_datasets import get_training_data, get_tournament_data
train_data = get_training_data()
tournament_data = get_tournament_data()