├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── doc ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── modules │ │ │ ├── targets.doctree │ │ │ └── tasks.doctree │ │ └── workflow.doctree │ └── html │ │ ├── .buildinfo │ │ ├── .nojekyll │ │ ├── _modules │ │ ├── index.html │ │ ├── targets │ │ │ └── numerai_submission.html │ │ ├── tasks │ │ │ ├── numerai_fetch_training_data.html │ │ │ ├── numerai_train_and_predict.html │ │ │ └── numerai_upload_predictions.html │ │ └── workflow.html │ │ ├── _sources │ │ ├── index.rst.txt │ │ ├── modules │ │ │ ├── targets.rst.txt │ │ │ └── tasks.rst.txt │ │ └── workflow.rst.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery-3.2.1.js │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── modules │ │ ├── targets.html │ │ └── tasks.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ ├── searchindex.js │ │ └── workflow.html └── source │ ├── conf.py │ ├── index.rst │ ├── modules │ ├── targets.rst │ └── tasks.rst │ └── workflow.rst ├── make.bat ├── requirements.txt ├── targets ├── __init__.py └── numerai_submission.py ├── tasks ├── .keep ├── __init__.py ├── numerai_fetch_training_data.py ├── numerai_train_and_predict.py └── numerai_upload_predictions.py └── workflow.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/README.md -------------------------------------------------------------------------------- /doc/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /doc/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/doctrees/index.doctree -------------------------------------------------------------------------------- /doc/build/doctrees/modules/targets.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/doctrees/modules/targets.doctree -------------------------------------------------------------------------------- /doc/build/doctrees/modules/tasks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/doctrees/modules/tasks.doctree -------------------------------------------------------------------------------- /doc/build/doctrees/workflow.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/doctrees/workflow.doctree -------------------------------------------------------------------------------- /doc/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/.buildinfo -------------------------------------------------------------------------------- /doc/build/html/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/build/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/index.html -------------------------------------------------------------------------------- /doc/build/html/_modules/targets/numerai_submission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/targets/numerai_submission.html -------------------------------------------------------------------------------- /doc/build/html/_modules/tasks/numerai_fetch_training_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/tasks/numerai_fetch_training_data.html -------------------------------------------------------------------------------- /doc/build/html/_modules/tasks/numerai_train_and_predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/tasks/numerai_train_and_predict.html -------------------------------------------------------------------------------- /doc/build/html/_modules/tasks/numerai_upload_predictions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/tasks/numerai_upload_predictions.html -------------------------------------------------------------------------------- /doc/build/html/_modules/workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_modules/workflow.html -------------------------------------------------------------------------------- /doc/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /doc/build/html/_sources/modules/targets.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_sources/modules/targets.rst.txt -------------------------------------------------------------------------------- /doc/build/html/_sources/modules/tasks.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_sources/modules/tasks.rst.txt -------------------------------------------------------------------------------- /doc/build/html/_sources/workflow.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_sources/workflow.rst.txt -------------------------------------------------------------------------------- /doc/build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/alabaster.css -------------------------------------------------------------------------------- /doc/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/basic.css -------------------------------------------------------------------------------- /doc/build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /doc/build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/comment-close.png -------------------------------------------------------------------------------- /doc/build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/comment.png -------------------------------------------------------------------------------- /doc/build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /doc/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/doctools.js -------------------------------------------------------------------------------- /doc/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /doc/build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /doc/build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/down.png -------------------------------------------------------------------------------- /doc/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/file.png -------------------------------------------------------------------------------- /doc/build/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /doc/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/jquery.js -------------------------------------------------------------------------------- /doc/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/minus.png -------------------------------------------------------------------------------- /doc/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/plus.png -------------------------------------------------------------------------------- /doc/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/pygments.css -------------------------------------------------------------------------------- /doc/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /doc/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /doc/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/underscore.js -------------------------------------------------------------------------------- /doc/build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /doc/build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/up.png -------------------------------------------------------------------------------- /doc/build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/_static/websupport.js -------------------------------------------------------------------------------- /doc/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/genindex.html -------------------------------------------------------------------------------- /doc/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/index.html -------------------------------------------------------------------------------- /doc/build/html/modules/targets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/modules/targets.html -------------------------------------------------------------------------------- /doc/build/html/modules/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/modules/tasks.html -------------------------------------------------------------------------------- /doc/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/objects.inv -------------------------------------------------------------------------------- /doc/build/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/py-modindex.html -------------------------------------------------------------------------------- /doc/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/search.html -------------------------------------------------------------------------------- /doc/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/searchindex.js -------------------------------------------------------------------------------- /doc/build/html/workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/build/html/workflow.html -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/modules/targets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/source/modules/targets.rst -------------------------------------------------------------------------------- /doc/source/modules/tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/source/modules/tasks.rst -------------------------------------------------------------------------------- /doc/source/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/doc/source/workflow.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | luigi=>2.8.0 2 | sklearn 3 | pandas 4 | numerapi 5 | -------------------------------------------------------------------------------- /targets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /targets/numerai_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/targets/numerai_submission.py -------------------------------------------------------------------------------- /tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/numerai_fetch_training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/tasks/numerai_fetch_training_data.py -------------------------------------------------------------------------------- /tasks/numerai_train_and_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/tasks/numerai_train_and_predict.py -------------------------------------------------------------------------------- /tasks/numerai_upload_predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/tasks/numerai_upload_predictions.py -------------------------------------------------------------------------------- /workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianSch/numerflow/HEAD/workflow.py --------------------------------------------------------------------------------