MLCloudModel
class NatML.MLCloudModel : MLModel
Last updated
class NatML.MLCloudModel : MLModel
Last updated
The MLCloudModel
represents an ML model that makes predictions on NatML's cloud infrastructure. As such, it forms the basis for implementing cloud predictors in code.
The model can be created from a predictor on NatML Hub:
The predictor MUST have an active prediction endpoint.
The MLCloudModel
model defines a Predict
method which makes predictions on one or more MLCloudFeature
instances.
The input and output features MUST be disposed when they are no longer needed. Call Dispose
on the individual features, or on the returned feature collection to do so.
Refer to the Disposing the Model section of the MLModel
class for more information.