Skip to content

Commit

Permalink
Added boilerplate for time series data
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenithClown committed Oct 30, 2023
1 parent 2873466 commit 763f5a1
Show file tree
Hide file tree
Showing 3 changed files with 560 additions and 35 deletions.
68 changes: 34 additions & 34 deletions HOWTO.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
<h1 align = "center">HOWTO</h1>

<div align = "justify">

The template provides a minimal approach for getting started with an AI/ML project, and has hardly any dependencies required. However, the [`notebooks/BOILERPLATE.ipynb`](notebooks/BOILERPLATE.ipynb) provides popular import and its configurations (like `pandas`, `numpy`, `scikit-learn` and `tensorflow`). A high level directory overview is as follows:

```
├───config : store all configuration files
├───data : responsible for all data handling, or contains raw data
│ └───processed : contains processed data (like combined/normalized dataframes, tables, etc.)
├───logs : repository to contain log files, can also be saved in `/path/to/directory`
├───notebooks : contains boilerplate notebook for EDA and quick data understanding/explanations
├───output : directory responsible for all output files
│ ├───images : save output images
│ └───savedmodels : save trained model files
├───src : source directory
│ ├───agents : define agents for any rnn application
│ ├───engine : provides a suit of machine learning analytic functions
│ └───models : directory containing model definations
├───static : other important/useful resources required in the project
│ ├───fonts : store additional fonts, maybe used in documentations
│ ├───images : store explanatory images
│ └───logo : setup a project logo
└───utilities : utilities directory containing functions and/or submodules
```

</div>
<h1 align = "center">HOWTO</h1>

<div align = "justify">

The template provides a minimal approach for getting started with an AI/ML project, and has hardly any dependencies required. However, the [`notebooks/BOILERPLATE.ipynb`](notebooks/BOILERPLATE.ipynb) provides popular import and its configurations (like `pandas`, `numpy`, `scikit-learn` and `tensorflow`). A high level directory overview is as follows:

```
├───config : store all configuration files
├───data : responsible for all data handling, or contains raw data
│ └───processed : contains processed data (like combined/normalized dataframes, tables, etc.)
├───logs : repository to contain log files, can also be saved in `/path/to/directory`
├───notebooks : contains boilerplate notebook for EDA and quick data understanding/explanations
├───output : directory responsible for all output files
│ ├───images : save output images
│ └───savedmodels : save trained model files
├───src : source directory
│ ├───agents : define agents for any rnn application
│ ├───engine : provides a suit of machine learning analytic functions
│ └───models : directory containing model definations
├───static : other important/useful resources required in the project
│ ├───fonts : store additional fonts, maybe used in documentations
│ ├───images : store explanatory images
│ └───logo : setup a project logo
└───utilities : utilities directory containing functions and/or submodules
```

</div>
2 changes: 1 addition & 1 deletion notebooks/BOILERPLATE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.13"
"version": "3.10.9"
},
"latex_envs": {
"LaTeX_envs_menu_present": true,
Expand Down
Loading

0 comments on commit 763f5a1

Please sign in to comment.