class documentation
class RunResults(BaseRunResults): (source)
Constructor: RunResults(samples, config, key, backend, **kwargs)
Class for run results.
Parameters | |
samples | the fiftyone.core.collections.SampleCollection used |
config | the RunConfig used |
key | the key for the run |
backend | a Run instance. If not provided, one is
instantiated from config |
**kwargs | JSON serializable data to store on the results |
Method | __init__ |
Undocumented |
Class Method | _from |
Subclass implementation of from_dict . |
Inherited from BaseRunResults
:
Class Method | from |
Builds a BaseRunResults from a JSON dict representation of it. |
Static Method | base |
Returns the results class for the given run type. |
Method | attributes |
Returns the list of class attributes that will be serialized by serialize . |
Method | save |
Saves the results to the database. |
Method | save |
Saves these results config to the database. |
Property | cls |
The fully-qualified name of this BaseRunResults class. |
Property | config |
The BaseRunConfig for these results. |
Property | key |
The run key for these results. |
Property | samples |
The fiftyone.core.collections.SampleCollection associated with these results. |
Instance Variable | _backend |
Undocumented |
Instance Variable | _config |
Undocumented |
Instance Variable | _key |
Undocumented |
Instance Variable | _samples |
Undocumented |
Subclass implementation of from_dict
.
Parameters | |
d | a JSON dict |
samples | the fiftyone.core.collections.SampleCollection
for the run |
config | the BaseRunConfig for the run |
key | the run key |
Returns | |
a BaseRunResults |