Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.32 KB

File metadata and controls

33 lines (25 loc) · 1.32 KB

DatacollectorPrediction

Prediction contains the prediction of a model for a datapoint.

Properties

Name Type Description Notes
datapoint_id ID [optional]
model_id ID [optional]
data_stream_id ID [optional]
prediction bytearray [optional]
timestamp datetime The timestamp of the datapoint is stored in the prediction for fast querying. [optional]

Example

from ri.apiclient.models.datacollector_prediction import DatacollectorPrediction

# TODO update the JSON string below
json = "{}"
# create an instance of DatacollectorPrediction from a JSON string
datacollector_prediction_instance = DatacollectorPrediction.from_json(json)
# print the JSON string representation of the object
print(DatacollectorPrediction.to_json())

# convert the object into a dict
datacollector_prediction_dict = datacollector_prediction_instance.to_dict()
# create an instance of DatacollectorPrediction from a dict
datacollector_prediction_from_dict = DatacollectorPrediction.from_dict(datacollector_prediction_dict)

[Back to Model list] [Back to API list] [Back to README]