parthp2107 d52297e28f
updated schema documentaiton (#1188)
* updated schema documentaiton

* id correction
2021-11-15 08:05:54 -08:00

6.0 KiB

MLModel

This schema defines the Model entity. Models are algorithms trained on data to find patterns or make predictions.

$id:https://open-metadata.org/schema/entity/data/mlmodel.json

Type: object

Properties

Type definitions in this schema

featureType

  • This enum defines the type of data stored in a ML Feature.
  • Type: string
  • The value is restricted to the following:
    1. "numerical"
    2. "categorical"

featureSourceDataType

  • This enum defines the type of data of a ML Feature source.
  • Type: string
  • The value is restricted to the following:
    1. "integer"
    2. "number"
    3. "string"
    4. "array"
    5. "date"
    6. "timestamp"
    7. "object"
    8. "boolean"

featureName

  • Local name (not fully qualified name) of the ML Feature.
  • Type: string
  • The value must match this pattern: ^[^.]*$
  • Length: between 1 and 64

featureSourceName

  • Local name (not fully qualified name) of a ML Feature source.
  • Type: string
  • The value must match this pattern: ^[^.]*$
  • Length: between 1 and 64

fullyQualifiedFeatureSourceName

  • Fully qualified name of the ML Feature Source that includes serviceName.[databaseName].tableName/fileName/apiName.columnName[.nestedColumnName].
  • Type: string
  • Length: between 1 and 256

fullyQualifiedFeatureName

  • Fully qualified name of the ML Feature that includes modelName.featureName.
  • Type: string
  • Length: between 1 and 256

featureSource

mlFeature

mlHyperParameter

  • This schema defines the type for a ML HyperParameter used in a MLModel.
  • Type: object
  • This schema does not accept additional properties.
  • Properties
    • name
      • Hyper parameter name.
      • Type: string
    • value
      • Hyper parameter value.
      • Type: string
    • description
      • Description of the Hyper Parameter.
      • Type: string

This document was updated on: Monday, November 15, 2021