You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The C3 AI Suite has Types specifically designed to facilitate certain machine learning pipelines. Taking their inspiration from the Scikit learn machine learning pipeline, at the most general, we have the `MLPipe` type defining the most basic behavior of the pipeline with the `train`, `process`, and `score` methods, and various specializations which define a whole pipeline of operations. With this structure, you can call 'train' on the top level pieline Type, and the whole pipeline is trained. Same with 'process', and 'score' to both process inputs and score results. We'll start by discussing the basic types which are available starting with the abstract types forming the basis of this Machine Learning system, then some concrete implementations of those types, and then some examples. We'll then discuss how a new machine learning model may be ported onto the C3 platform.

MLPipe - An abstract type which, defines general behaviors like train, process, and score. This type is mixed in by nearly all types in the C3 Machine Learning Space.

MLPipeline - An abstract type which mixes MLPipe, and connects multiple steps into a full pipeline., The provided concrete implementation of this type is `MLSerialPipeline`. The MLPipeline contains a list of MLSteps to perform.

MLStep - A helper type to allow MLSerialPipeline and other implementations of MLPipeline store their step pipelines and metadata.

MLLeafPipe - This is an abstract type mixing MLPipe which is meant for steps in a machine learning pipeline which have no child steps, i.e. this step performs a specific action of the pipeline. In the terminology of the C3 AI Suite, this is a 'leaf' of the pipeline. There are several concrete versions of this type, and they are usually different implementations

C3.ai Resources related to Machine Learning

  • No labels