This repo contains all starting files for ST4 MDS case study
Clone or download this repository to start working
Via ssh
git clone git@gitlab.com:centralesupelec_ds/st4-mds.git
Via http
git clone https://gitlab.com/centralesupelec_ds/st4-mds.git
cd /path/to/st4-mds
Using virtualenv
virtualenv -p python3 mds_env
Using conda
conda create -n mds_env python=3.7
Using virtualenv
. mds_env/bin/activate
Using conda
conda activate mds_env
python -m pip install -r requirements.txt
Install jupyter
(mds-env)$ python -m pip install jupyter
Add kernel to jupyter
(mds-env)$ ipython kernel install --name mds-env --user
├── README.md <- Contains desctiption of the project
├── notebook <- folder for notebook
├── case_study_arima_group_n.ipynb <- starter notebook for ARIMA modeling, replace n by the group number
├── case_study_rnn_group_n.ipynb <- starter notebook for RNN modeling, replace n by the group number
├── data <- folder for data
├── df_blockchain.csv <- bitcoin and blockchain data from https://blockchain.info/
├── .gitignore