├── .dockerignore ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docker └── dockerfile ├── imgs └── timeseries.png ├── notebooks ├── regression_example.ipynb ├── results │ └── parameter_optimization │ │ ├── experiment 12 features.csv │ │ └── experiment 2 features.csv ├── tabnet-does-not-learn-interesting-features.ipynb ├── tabnet-first-experiment.ipynb ├── test-gpu.ipynb └── trying-seb-ideas.ipynb └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | data/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | data/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/README.md -------------------------------------------------------------------------------- /docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/docker/dockerfile -------------------------------------------------------------------------------- /imgs/timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/imgs/timeseries.png -------------------------------------------------------------------------------- /notebooks/regression_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/regression_example.ipynb -------------------------------------------------------------------------------- /notebooks/results/parameter_optimization/experiment 12 features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/results/parameter_optimization/experiment 12 features.csv -------------------------------------------------------------------------------- /notebooks/results/parameter_optimization/experiment 2 features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/results/parameter_optimization/experiment 2 features.csv -------------------------------------------------------------------------------- /notebooks/tabnet-does-not-learn-interesting-features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/tabnet-does-not-learn-interesting-features.ipynb -------------------------------------------------------------------------------- /notebooks/tabnet-first-experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/tabnet-first-experiment.ipynb -------------------------------------------------------------------------------- /notebooks/test-gpu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/test-gpu.ipynb -------------------------------------------------------------------------------- /notebooks/trying-seb-ideas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/notebooks/trying-seb-ideas.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoCastelo/tabnet-timeseries-spike/HEAD/requirements.txt --------------------------------------------------------------------------------