mistk.model.server.models.data_record module

class mistk.model.server.models.data_record.DataRecord(record_id: str = None, reference_set_project: str = None, referenced_set_id: str = None, values: List[object] = None)

Bases: mistk.model.server.models.base_model_.Model

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

classmethod from_dict(dikt) → mistk.model.server.models.data_record.DataRecord

Returns the dict as a model

Parameters

dikt – A dict.

Type

dict

Returns

The DataRecord of this DataRecord. # noqa: E501

Return type

DataRecord

property record_id

Gets the record_id of this DataRecord.

The id of this record # noqa: E501

Returns

The record_id of this DataRecord.

Return type

str

property reference_set_project

Gets the reference_set_project of this DataRecord.

the project associated with the data record set # noqa: E501

Returns

The reference_set_project of this DataRecord.

Return type

str

property referenced_set_id

Gets the referenced_set_id of this DataRecord.

The UUID of the Data Record Set this record is associated with. This should be the ObjectId of a GroundTruthSet or PredictionSet # noqa: E501

Returns

The referenced_set_id of this DataRecord.

Return type

str

property values

Gets the values of this DataRecord.

A list of labels, optionally this could be a list of dictionaries instead where the dictionaries contain the ground truth label plus a bounding box, etc, this could also include certainty assessments. # noqa: E501

Returns

The values of this DataRecord.

Return type

List[object]