/Reveration_Time

Primary LanguageJupyter NotebookGNU General Public License v3.0GPL-3.0

Reveration Time

├── LICENSE ├── README.md <- The top-level README for developers using this project. ├── data │   ├── external <- Data from third party sources. │   ├── interim <- Intermediate data that has been transformed. │   ├── processed <- The final, canonical data sets for modeling. │   └── raw <- The original, immutable data dump. ├── docs <- A default Sphinx project; see sphinx-doc.org for details ├── models <- Trained and serialized models, model predictions, or model summaries ├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering), │ the creator's initials, and a short - delimited description, e.g. │ 1.0-jqp-initial-data-exploration. ├── poetry.lock ├── pyproject.toml <- Will orchestrate your project and its dependencies ├── references <- Data dictionaries, manuals, and all other explanatory materials. ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc. │   └── figures <- Generated graphics and figures to be used in reporting └── src <- Source code for use in this project. ├── data <- Scripts to download or generate data │   └── init.py ├── dataWrangling <- Cleaning and organizing data for analysis │   └── init.py ├── eda <- Exploring and summarizing data to gain insights │   └── init.py ├── etl <- Extracting, transforming, and loading data between systems.
│   └── init.py ├── models <- Scripts to train models and then use trained models to make predictions │   └── init.py ├── utils <- Miscellaneous code goes here. │   └── init.py └── viz <- Graphics and visualization development specific work should go here └── init.py