LoslegenKostenlos loslegen

Loading and splitting the data

To deploy and monitor a model in production, you must first create it. In the last video, you've been introduced to loading and processing data, building the model, and creating reference and analysis sets.

In this exercise, you'll follow a similar process, but to simplify matters, you'll use the NYC Green Taxi dataset provided in a csv file that's already been processed.

For this exercise, pandas has been imported as pd and is ready for you to use.

Diese Übung ist Teil des Kurses

Monitoring Machine Learning in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Load the dataset
dataset_name = ____
data = pd.____(____)
____.____()
Code bearbeiten und ausführen