1. Learn
  2. /
  3. Courses
  4. /
  5. End-to-End Machine Learning

Exercise

Visualizing a deployed model's output over time

In this exercise, you will utilize data from two separate months - January and February - to monitor changes in your heart disease model's predictions over time. As you know, your model has been trained to perform a binary classification task of heart disease classification, and you have recorded the model's predictions in the logs for these two months.

Assume that the logs of the model's predictions over the last two months have been generated through Elastic Beanstalk and have been imported as pandas DataFrame, called logs_january and logs_february, with a target column of the predictions for that month. matplotlib.pyplot has been imported as plt.

Instructions

100 XP
  • Visualize the distribution of your model's predictions in January and February over time by plotting adjacent bar graphs of the model's target predictions.