Challenge 04 - Generate batch predictions

< Previous Challenge - Home - Next Challenge >

Introduction

During Challenge 3, you trained and registered a model. You validated it using a variety of metrics. You must now leverage this same model to generate predictions over new data. To do so, you will create a set of simulated input data to feed the model and receive a prediction. Once you have generated the predictions you will save them as a delta table for further use.

Description

Your task in this challenge is to obtain predictions from some simulated inputs. This is a notebook-based challenge, you will find all instructions within Notebook 4.

Notebook sections:

  1. Simulate input data to be used for predictions
  2. Load the model and generate predictions
  3. Format predictions and save them to a delta table

By the end of this challenge, you should be able to understand and know how to use:

Success Criteria

Verify that you have generated a set of predictions with the simulated data and have saved them as a delta table, making them available to create a PowerBI report. Verify that you can load the table with the newly generated predictions into the notebook.

Learning Resources

Refer to Notebook 4 for helpful links

Tips

Advanced Challenges (Optional)

Interested in how you can integrate the PREDICT function call into your analytics workflow?

You can run Fabric notebooks from a pipeline, which means you can generate predictions over new data during the ETL process using Delta tables that you have created/uploaded. Explore how you can use the notebook activity to call a notebook from a pipeline and how you can integrate a notebook by using parameters to pass along table names that the notebook can use for its inference and to write back the results.