https://github.com/lewagon/taxi-fare-model
https://github.com/lewagon/taxi-fare-model
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lewagon/taxi-fare-model
- Owner: lewagon
- Created: 2022-05-24T14:41:04.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T14:05:44.000Z (about 3 years ago)
- Last Synced: 2025-06-28T13:49:24.212Z (about 1 year ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How does this package work
## `taxifare_model` package
- `interface/main.py` contains all the routes needed to train the model
- `ml_logic/params.py` are global project params to set up manually
``` bash
python -m taxifare_model.interface.main
```
[//]: # ( $ONLY_FROM_prefect_BEGIN )
## `taxifare_flow` package
- `main.py` runs a complete model lifecycle, either locally or through a prefect backend
- `flow.py` creates a graph of the tasks of the model lifecycle and runs it for a test iteration of 7 days
``` bash
python -m taxifare_flow.main
```
[//]: # ( $ONLY_FROM_prefect_END )