SPL File Types.spl

Content

Types
  • ModelData: The ModelData type contains a new model and the meta-data describing the model.
  • WMLModelMetaData: The WMLModelMetaData type contains a set of meta-data by which each model in WML repository is identified.

Types

WMLModelMetaData

The WMLModelMetaData type contains a set of meta-data by which each model in WML repository is identified. The PMMLScoring operator uses the data structure in its output to document which model has been used to process the data.

  • modelName

    The name of the trained model.

  • modelType

    The type of the trained model.

  • modelGUID

    The GUID of the trained model.

  • versionGUID

    The Version GUID of the trained model.

  • modelTimestamp

    The timestamp of the trained model.

WMLModelMetaData = tuple<rstring modelName, rstring modelType, rstring modelGUID, rstring versionGUID, rstring modelTimestamp>;

ModelData

The ModelData type contains a new model and the meta-data describing the model.

  • pmmlModel

    The blob containing the new version of the the trained model.

ModelData = tuple<blob pmmlModel>, WMLModelMetaData;