Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SMLP-037 Improve readme #38

Merged
merged 1 commit into from
Mar 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,23 +53,34 @@ Also, you can stop all services:
docker-compose stop
```

2. When dockerized storage is running, collect data for time series:
2. When dockerized storage is running, you can run all ml pipeline:
```bash
./pipeline.sh
```

Or, you can run each pipeline step separately:

2.1. Collect data for time series:
```bash
python data_creation.py
```

3. After data collected, prepare `y` values:
2.2. After data collected, prepare `y` values:
```bash
python model_preprocessing.py
```

4. After `y` value ready, prepare model:
2.3. After `y` value ready, prepare model:
```bash
python model_preparation.py
```
At the end of this step you can see the chart, like this:
![chart wit predictions](./docs/assets/forecasting_results.png)

2.4. After model prepared, test it:
```bash
python model_testing.py
```

## Continious Integration

Expand Down