Administrator
- Administrator
- All Products
/frs/v1/Projects('<project ID>')/Documents
Field
| Type
| Description
|
---|---|---|
name
| String
| Machine learning model asset name.
|
description
| String
| Optional. Description of the machine learning model.
|
documentType
| String
| Use
MLOPS_MODEL .
|
nativeData
| Object
| Blob object that defines the machine learning model.
|
Field
| Type
| Description
|
---|---|---|
name
| String
| Machine learning model asset name.
|
framework
| String
| Framework used to create the machine learning model. Use one of the following values:
|
framework_type
| String
| Internal type of the framework.
For a Python model, use
Custom .
For a PyTorch or TensorFlow model, use
Standard .
|
file_id
| String
| Model file ID generated when you upload the model file.
|
file_name
| String
| Name of the model file. The name must match the file name you used to generate the model file ID.
|
size
| String
| Size of the model file in GB.
|
file_type
| String
| Use
zip .
|
inputField
| Input fields that the machine learning model expects. Include at least one input field.
| |
name
| String
| Name of the field.
|
dataType
| String
| Data type of the field.
|
shape
| String
| Required for array data types. Shape of the array. For example,
[2,3] .
|
outputField
| Output fields that the machine learning model returns. Include at least one output field.
| |
name
| String
| Name of the field.
|
dataType
| String
| Data type of the field.
|
shape
| String
| Required for array data types. Shape of the array. For example,
[2,3] .
|
Field
| Description
|
---|---|
id
| ID of the machine learning model.
|
name
| Machine learning model name.
|
description
| Description of the machine learning model.
|
owner
| ID of the user who owns the machine learning model.
|
createdBy
| ID of the user who created the machine learning model.
|
lastUpdatedBy
| ID of the user who last edited the machine learning model.
|
lastAccessedBy
| ID of the user who last viewed the machine learning model.
|
createdTime
| Date and time that the machine learning model was created.
|
lastUpdatedTime
| Date and time that the machine learning model was last edited.
|
lastAccessedTime
| Date and time that the machine learning model was last viewed.
|
expiresBy
| Date and time that the machine learning model will expire.
|
parentInfo
| |
parentID
| ID of the project or space that contains the machine learning model.
|
parentName
| Name of the project or space that contains the machine learning model.
|
parentType
| Type of object that contains the machine learning model.
|
documentType
| Type of asset. A machine learning model returns
MLOPS_MODEL .
|
contentType
| Returns
Binary .
|
documentState
| Returns
VALID if the model is valid or
INVALID if there are errors in the configuration.
|
aclRule
| |
subcontainerCount
| |
customAttributes
| |
repoInfo
| |
repoParams
| |
repoPath
| |
repoHandle
| |
frsPath
| |
isSourceControlled
| Returns
false .
|
checkOutById
| Returns
null .
|
{ "name": "model1", "description": "desc", "documentType": "MLOPS_MODEL", "nativeData": { "documentBlob": "{\"name\":\"model1\",\"framework\":\"Tensorflow\",\"framework_type\":\"Standard\",\"file_id\":\"012\",\"file_name\":\"model1\",\"size\":\"1048576\",\"file_type\":\"zip\",\"inputField\":[{\"name\":\"input1\",\"dataType\":\"Array of integers\",\"shape\":\"[2,3]\"},{\"name\":\"input2\",\"dataType\":\"Base64 String\"}],\"outputField\":[{\"name\":\"output1\",\"dataType\":\"Boolean\"}]}" } }