Data Preparation and Modeling

Introduction to preparing the components of ML decision-making

The full code for this and all other user guides can be found in our user guide tutorial.

Pyreal wraps all the components you need for an ML decision-making use-case in a single RealApp object. This allows you to make model predictions, transform data, get explanations, and otherwise interact with your ML model for decision-making.

There are three key components:

  1. The data

  2. Transformers that transform the data for the ML model

  3. The ML model

In this guide, we go through these components and introduce the process of preparing them.

If you already have a fully set-up ML workflow (including an ML model, data, and possibly data transformers), you can head over to the Migrating to Pyreal tutorial to get started.

In this guide...

Learn to prepare your data as pandas DataFrames

Learn to create Pyreal data transformers for feature engineering

Learn how to train models to make predictions on your data

Last updated

Logo