The goal of this project is to predict the time of a NYC taxi trip. The data is provided by the NYC Taxi and Limousine Commission.
The pipeline of the entire process is:
The data engineering pipeline is designed to download the data from the NYC Taxi and Limousine Commission, split into train, validation and test sets and create the target.
The data science pipeline is designed to train the model. The model is a scikit-learn pipeline with a Gradient Boosting model. The process is:
- Merge both airport variables
- Create datetime features
- Create the scikit-learn pipeline: feature imputer, column transformer and the gradient boosting model using HistGradientBoosting
- Train the model
Predict the trip duration using the scikit-learn pipeline.
Evaluate the performance model. To do so:
- Compute metrics
- Plot the histograms of the predictions
Prepare data for the dashboard.
This is your new Kedro project, which was generated using kedro 0.19.1
.
Take a look at the Kedro documentation to get started.
In order to get the best out of the template:
- Don't remove any lines from the
.gitignore
file we provide - Make sure your results can be reproduced by following a data engineering convention
- Don't commit data to your repository
- Don't commit any credentials or your local configuration to your repository. Keep all your credentials and local configuration in
conf/local/
Declare any dependencies in requirements.txt
for pip
installation.
To install them, run:
pip install -r requirements.txt
You can run your Kedro project with:
kedro run
Have a look at the file src/tests/test_run.py
for instructions on how to write your tests. You can run your tests as follows:
pytest
You can configure the coverage threshold in your project's pyproject.toml
file under the [tool.coverage.report]
section.
To see and update the dependency requirements for your project use requirements.txt
. You can install the project requirements with pip install -r requirements.txt
.
Further information about project dependencies
Note: Using
kedro jupyter
orkedro ipython
to run your notebook provides these variables in scope:context
, 'session',catalog
, andpipelines
.Jupyter, JupyterLab, and IPython are already included in the project requirements by default, so once you have run
pip install -r requirements.txt
you will not need to take any extra steps before you use them.
To use Jupyter notebooks in your Kedro project, you need to install Jupyter:
pip install jupyter
After installing Jupyter, you can start a local notebook server:
kedro jupyter notebook
To use JupyterLab, you need to install it:
pip install jupyterlab
You can also start JupyterLab:
kedro jupyter lab
And if you want to run an IPython session:
kedro ipython
To automatically strip out all output cell contents before committing to git
, you can use tools like nbstripout
. For example, you can add a hook in .git/config
with nbstripout --install
. This will run nbstripout
before anything is committed to git
.
Note: Your output cells will be retained locally.
Further information about building project documentation and packaging your project