mistk.model.server.models.mistk_data_record module¶
-
class
mistk.model.server.models.mistk_data_record.
MistkDataRecord
(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.mistk_data_record.MistkDataRecord¶ Returns the dict as a model
- Parameters
dikt – A dict.
- Type
dict
- Returns
The MistkDataRecord of this MistkDataRecord. # noqa: E501
- Return type
-
property
record_id
¶ Gets the record_id of this MistkDataRecord.
The id of this record # noqa: E501
- Returns
The record_id of this MistkDataRecord.
- Return type
str
-
property
reference_set_project
¶ Gets the reference_set_project of this MistkDataRecord.
the project associated with the data record set # noqa: E501
- Returns
The reference_set_project of this MistkDataRecord.
- Return type
str
-
property
referenced_set_id
¶ Gets the referenced_set_id of this MistkDataRecord.
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 MistkDataRecord.
- Return type
str
-
property
values
¶ Gets the values of this MistkDataRecord.
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 MistkDataRecord.
- Return type
List[object]
-
classmethod