class documentation

Backing document for samples that have not been added to a dataset.

Method __init__ Undocumented
Class Variable default_fields_ordered Undocumented
Property media_type Undocumented
Method _get_repr_fields Returns an ordered tuple of field names that should be included in the repr of the document.
Class Variable _is_frames_doc Undocumented
Instance Variable _data Undocumented

Inherited from NoDatasetMixin:

Class Method from_dict Undocumented
Method __getattr__ Undocumented
Method __setattr__ Undocumented
Method clear_field Undocumented
Method delete Undocumented
Method get_field Undocumented
Method has_field Undocumented
Method reload Undocumented
Method save Undocumented
Method set_field Undocumented
Method to_dict Undocumented
Property field_names Undocumented
Property in_db Undocumented
Class Method _doc_name Undocumented
Static Method _get_default Undocumented
Method _get_field_names Undocumented
Method _save Undocumented
Method _to_db_fields Undocumented

Inherited from SerializableDocument (via NoDatasetMixin):

Class Method from_json Loads the document from a JSON string.
Method __eq__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
Method copy Returns a deep copy of the document.
Method fancy_repr Generates a customizable string representation of the document.
Method iter_fields Returns an iterator over the (name, value) pairs of the public fields of the document.
Method merge Merges the contents of the given document into this document.
Method to_json Serializes the document to a JSON string.
def __init__(self, **kwargs): (source)

Undocumented

default_fields_ordered = (source)

Undocumented

Undocumented

def _get_repr_fields(self): (source)

Returns an ordered tuple of field names that should be included in the repr of the document.

Returns
a tuple of field names

Undocumented