Emily Cooke 81a4ed143d Fix (again) formatting of README project organization 4 years ago
..
data e4bb7e42e8 Add zipping and unzipping raw data files to Makefile. Include compressed raw data. 4 years ago
models e470d32d14 Create data/ and model/ directories needed for code to save output. 4 years ago
notebooks ca75b2228f Fix bugs: cross-sectional data features are correctly lagged by 1 hour; energy data no longer shuffled; outlier feature does not include target information; and weekend feature is formulated properly. Add full commentary to train_model scripts to explain neural network training code. 4 years ago
reports 647852b5d7 Remove text "reports" and figures from repository. 4 years ago
src 17551cc7d2 Download energy prediction data from the Internet, since we cannot include ISO NE raw data in our package. 4 years ago
.gitignore 647852b5d7 Remove text "reports" and figures from repository. 4 years ago
LICENSE f78cb40bec Switch license from MIT to Apache 2.0 4 years ago
Makefile 1edf9852ff Correct false confirmation of conda environment creation. 4 years ago
README.md 81a4ed143d Fix (again) formatting of README project organization 4 years ago
env.yaml 17551cc7d2 Download energy prediction data from the Internet, since we cannot include ISO NE raw data in our package. 4 years ago
test_environment.py b75c0370e9 Working version of load prediction model. 4 years ago

README.md

canarie-energy-time-series-prediction

A deployable reference solution for DAIR participants to observe and study application of machine learning techniques in time-series predictions. This solution builds an energy load predictor.

Project Organization

├── LICENSE
├── Makefile           <- Makefile with commands like `make data` or `make model`
├── README.md          <- The top-level README for developers using this project.
│
├── data
│   ├── interim        <- Intermediate data that has been transformed.
│   ├── processed      <- The final, canonical data sets for modeling.
│   └── raw            <- The original, immutable data dump.
│
├── env.yaml           <- File to re-create development environment.
│
├── models             <- Trained models and model predictions
│
├── notebooks          <- Jupyter notebooks.
│
├── reports
│   └── figures        <- Generated graphics and figures to be used in reporting
│
└── src                <- Source code for use in this project.
    ├── __init__.py    <- Makes src a Python module
    │
    ├── data           <- Scripts to download or generate data
    │   └── make_dataset.py
    │
    ├── features       <- Scripts to turn raw data into features for modeling
    │   └── build_features.py
    │   └── select_features.py
    │
    ├── models         <- Scripts to train models and then use trained models to make
    │   │                 predictions
    │   ├── predict_model.py
    │   └── train_model.py
    │
    └── visualization  <- Scripts to create exploratory and results oriented visualizations
        └── visualize.py

Project based on the cookiecutter data science project template. #cookiecutterdatascience