fiftyone.utils.eval.openimages#
Open Images-style detection evaluation.
Classes:
|
Open Images-style evaluation config. |
|
Open Images-style evaluation. |
|
Class that stores the results of an Open Images detection evaluation. |
- class fiftyone.utils.eval.openimages.OpenImagesEvaluationConfig(pred_field, gt_field, iou=None, classwise=None, iscrowd='IsGroupOf', use_masks=False, use_boxes=False, tolerance=None, max_preds=None, error_level=1, hierarchy=None, pos_label_field=None, neg_label_field=None, expand_gt_hierarchy=True, expand_pred_hierarchy=False, custom_metrics=None, **kwargs)#
Bases:
DetectionEvaluationConfig
Open Images-style evaluation config.
- Parameters:
pred_field β the name of the field containing the predicted
fiftyone.core.labels.Detections
,fiftyone.core.labels.Polylines
, orfiftyone.core.labels.Keypoints
gt_field β the name of the field containing the ground truth
fiftyone.core.labels.Detections
,fiftyone.core.labels.Polylines
, orfiftyone.core.labels.Keypoints
iou (None) β the IoU threshold to use to determine matches
classwise (None) β whether to only match objects with the same class label (True) or allow matches between classes (False)
iscrowd ("IsGroupOf") β the name of the crowd attribute
use_masks (False) β whether to compute IoUs using the instances masks in the
mask
attribute of the provided objects, which must befiftyone.core.labels.Detection
instancesuse_boxes (False) β whether to compute IoUs using the bounding boxes of the provided
fiftyone.core.labels.Polyline
instances rather than using their actual geometriestolerance (None) β a tolerance, in pixels, when generating approximate polylines for instance masks. Typical values are 1-3 pixels. By default, IoUs are computed directly on the dense pixel masks
max_preds (None) β the maximum number of predicted objects to evaluate when computing mAP and PR curves
error_level (1) β
the error level to use when manipulating instance masks or polylines. Valid values are:
0: raise geometric errors that are encountered
1: log warnings if geometric errors are encountered
2: ignore geometric errors
If
error_level > 0
, any calculation that raises a geometric error will default to an IoU of 0hierarchy (None) β an optional dict containing a hierarchy of classes for evaluation following the structure
{"LabelName": label, "Subcategory": [{...}, ...]}
pos_label_field (None) β the name of a field containing image-level
fiftyone.core.labels.Classifications
that specify which classes should be evaluated in the imageneg_label_field (None) β the name of a field containing image-level
fiftyone.core.labels.Classifications
that specify which classes should not be evaluated in the imageexpand_gt_hierarchy (True) β whether to expand ground truth objects and labels according to the provided
hierarchy
expand_pred_hierarchy (False) β whether to expand predicted objects and labels according to the provided
hierarchy
custom_metrics (None) β an optional list of custom metrics to compute or dict mapping metric names to kwargs dicts
Attributes:
The name of the method.
Whether fields besides
pred_field
andgt_field
are required in order to perform evaluation.The fully-qualified name of this
BaseRunConfig
class.The
BaseRun
class associated with this config.The type of run.
Methods:
Returns the list of class attributes that will be serialized by
serialize()
.base_config_cls
(type)Returns the config class for the given run type.
build
()Builds the
BaseRun
instance associated with this config.builder
()Returns a ConfigBuilder instance for this class.
copy
()Returns a deep copy of the object.
custom_attributes
([dynamic,Β private])Returns a customizable list of class attributes.
default
()Returns the default config instance.
from_dict
(d)Constructs a
BaseRunConfig
from a serialized JSON dict representation of it.from_json
(path,Β *args,Β **kwargs)Constructs a Serializable object from a JSON file.
from_kwargs
(**kwargs)Constructs a Config object from keyword arguments.
from_str
(s,Β *args,Β **kwargs)Constructs a Serializable object from a JSON string.
Returns the fully-qualified class name string of this object.
load_credentials
(**kwargs)Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.
Loads the default config instance from file.
parse_array
(d,Β key[,Β default])Parses a raw array attribute.
parse_bool
(d,Β key[,Β default])Parses a boolean value.
parse_categorical
(d,Β key,Β choices[,Β default])Parses a categorical JSON field, which must take a value from among the given choices.
parse_dict
(d,Β key[,Β default])Parses a dictionary attribute.
parse_int
(d,Β key[,Β default])Parses an integer attribute.
parse_mutually_exclusive_fields
(fields)Parses a mutually exclusive dictionary of pre-parsed fields, which must contain exactly one field with a truthy value.
parse_number
(d,Β key[,Β default])Parses a number attribute.
parse_object
(d,Β key,Β cls[,Β default])Parses an object attribute.
parse_object_array
(d,Β key,Β cls[,Β default])Parses an array of objects.
parse_object_dict
(d,Β key,Β cls[,Β default])Parses a dictionary whose values are objects.
parse_path
(d,Β key[,Β default])Parses a path attribute.
parse_raw
(d,Β key[,Β default])Parses a raw (arbitrary) JSON field.
parse_string
(d,Β key[,Β default])Parses a string attribute.
serialize
([reflective])Serializes the object into a dictionary.
to_str
([pretty_print])Returns a string representation of this object.
validate_all_or_nothing_fields
(fields)Validates a dictionary of pre-parsed fields checking that either all or none of the fields have a truthy value.
write_json
(path[,Β pretty_print])Serializes the object and writes it to disk.
- property method#
The name of the method.
- property requires_additional_fields#
Whether fields besides
pred_field
andgt_field
are required in order to perform evaluation.If True then the entire samples will be loaded rather than using
select_fields()
to optimize.
- attributes()#
Returns the list of class attributes that will be serialized by
serialize()
.- Returns:
a list of attributes
- static base_config_cls(type)#
Returns the config class for the given run type.
- Parameters:
type β a
BaseRunConfig.type
- Returns:
a
BaseRunConfig
subclass
- build()#
Builds the
BaseRun
instance associated with this config.- Returns:
a
BaseRun
instance
- classmethod builder()#
Returns a ConfigBuilder instance for this class.
- property cls#
The fully-qualified name of this
BaseRunConfig
class.
- copy()#
Returns a deep copy of the object.
- Returns:
a Serializable instance
- custom_attributes(dynamic=False, private=False)#
Returns a customizable list of class attributes.
By default, all attributes in vars(self) are returned, minus private attributes (those starting with β_β).
- Parameters:
dynamic β whether to include dynamic properties, e.g., those defined by getter/setter methods or the @property decorator. By default, this is False
private β whether to include private properties, i.e., those starting with β_β. By default, this is False
- Returns:
a list of class attributes
- classmethod default()#
Returns the default config instance.
By default, this method instantiates the class from an empty dictionary, which will only succeed if all attributes are optional. Otherwise, subclasses should override this method to provide the desired default configuration.
- classmethod from_dict(d)#
Constructs a
BaseRunConfig
from a serialized JSON dict representation of it.- Parameters:
d β a JSON dict
- Returns:
a
BaseRunConfig
- classmethod from_json(path, *args, **kwargs)#
Constructs a Serializable object from a JSON file.
Subclasses may override this method, but, by default, this method simply reads the JSON and calls from_dict(), which subclasses must implement.
- Parameters:
path β the path to the JSON file on disk
*args β optional positional arguments for self.from_dict()
**kwargs β optional keyword arguments for self.from_dict()
- Returns:
an instance of the Serializable class
- classmethod from_kwargs(**kwargs)#
Constructs a Config object from keyword arguments.
- Parameters:
**kwargs β keyword arguments that define the fields expected by cls
- Returns:
an instance of cls
- classmethod from_str(s, *args, **kwargs)#
Constructs a Serializable object from a JSON string.
Subclasses may override this method, but, by default, this method simply parses the string and calls from_dict(), which subclasses must implement.
- Parameters:
s β a JSON string representation of a Serializable object
*args β optional positional arguments for self.from_dict()
**kwargs β optional keyword arguments for self.from_dict()
- Returns:
an instance of the Serializable class
- classmethod get_class_name()#
Returns the fully-qualified class name string of this object.
- load_credentials(**kwargs)#
Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.
- Parameters:
**kwargs β subclass-specific credentials
- classmethod load_default()#
Loads the default config instance from file.
Subclasses must implement this method if they intend to support default instances.
- static parse_array(d, key, default=<eta.core.config.NoDefault object>)#
Parses a raw array attribute.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default list to return if key is not present
- Returns:
a list of raw (untouched) values
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_bool(d, key, default=<eta.core.config.NoDefault object>)#
Parses a boolean value.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default bool to return if key is not present
- Returns:
True/False
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_categorical(d, key, choices, default=<eta.core.config.NoDefault object>)#
Parses a categorical JSON field, which must take a value from among the given choices.
- Parameters:
d β a JSON dictionary
key β the key to parse
choices β either an iterable of possible values or an enum-like class whose attributes define the possible values
default β a default value to return if key is not present
- Returns:
the raw (untouched) value of the given field, which is equal to a value from choices
- Raises:
ConfigError β if the key was present in the dictionary but its value was not an allowed choice, or if no default value was provided and the key was not found in the dictionary
- static parse_dict(d, key, default=<eta.core.config.NoDefault object>)#
Parses a dictionary attribute.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default dict to return if key is not present
- Returns:
a dictionary
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_int(d, key, default=<eta.core.config.NoDefault object>)#
Parses an integer attribute.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default integer value to return if key is not present
- Returns:
an int
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_mutually_exclusive_fields(fields)#
Parses a mutually exclusive dictionary of pre-parsed fields, which must contain exactly one field with a truthy value.
- Parameters:
fields β a dictionary of pre-parsed fields
- Returns:
the (field, value) that was set
- Raises:
ConfigError β if zero or more than one truthy value was found
- static parse_number(d, key, default=<eta.core.config.NoDefault object>)#
Parses a number attribute.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default numeric value to return if key is not present
- Returns:
a number (e.g. int, float)
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_object(d, key, cls, default=<eta.core.config.NoDefault object>)#
Parses an object attribute.
The value of d[key] can be either an instance of cls or a serialized dict from an instance of cls.
- Parameters:
d β a JSON dictionary
key β the key to parse
cls β the class of d[key]
default β a default cls instance to return if key is not present
- Returns:
an instance of cls
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_object_array(d, key, cls, default=<eta.core.config.NoDefault object>)#
Parses an array of objects.
The values in d[key] can be either instances of cls or serialized dicts from instances of cls.
- Parameters:
d β a JSON dictionary
key β the key to parse
cls β the class of the elements of list d[key]
default β the default list to return if key is not present
- Returns:
a list of cls instances
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_object_dict(d, key, cls, default=<eta.core.config.NoDefault object>)#
Parses a dictionary whose values are objects.
The values in d[key] can be either instances of cls or serialized dicts from instances of cls.
- Parameters:
d β a JSON dictionary
key β the key to parse
cls β the class of the values of dictionary d[key]
default β the default dict of cls instances to return if key is not present
- Returns:
a dictionary whose values are cls instances
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_path(d, key, default=<eta.core.config.NoDefault object>)#
Parses a path attribute.
The path is converted to an absolute path if necessary via
os.path.abspath(os.path.expanduser(value))
.- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default string to return if key is not present
- Returns:
a path string
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- static parse_raw(d, key, default=<eta.core.config.NoDefault object>)#
Parses a raw (arbitrary) JSON field.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default value to return if key is not present
- Returns:
the raw (untouched) value of the given field
- Raises:
ConfigError β if no default value was provided and the key was not found in the dictionary
- static parse_string(d, key, default=<eta.core.config.NoDefault object>)#
Parses a string attribute.
- Parameters:
d β a JSON dictionary
key β the key to parse
default β a default string to return if key is not present
- Returns:
a string
- Raises:
ConfigError β if the field value was the wrong type or no default value was provided and the key was not found in the dictionary
- property run_cls#
The
BaseRun
class associated with this config.
- serialize(reflective=False)#
Serializes the object into a dictionary.
Serialization is applied recursively to all attributes in the object, including element-wise serialization of lists and dictionary values.
- Parameters:
reflective β whether to include reflective attributes when serializing the object. By default, this is False
- Returns:
a JSON dictionary representation of the object
- to_str(pretty_print=True, **kwargs)#
Returns a string representation of this object.
- Parameters:
pretty_print β whether to render the JSON in human readable format with newlines and indentations. By default, this is True
**kwargs β optional keyword arguments for self.serialize()
- Returns:
a string representation of the object
- property type#
The type of run.
- static validate_all_or_nothing_fields(fields)#
Validates a dictionary of pre-parsed fields checking that either all or none of the fields have a truthy value.
- Parameters:
fields β a dictionary of pre-parsed fields
- Raises:
ConfigError β if some values are truth and some are not
- write_json(path, pretty_print=False, **kwargs)#
Serializes the object and writes it to disk.
- Parameters:
path β the output path
pretty_print β whether to render the JSON in human readable format with newlines and indentations. By default, this is False
**kwargs β optional keyword arguments for self.serialize()
- class fiftyone.utils.eval.openimages.OpenImagesEvaluation(config)#
Bases:
DetectionEvaluation
Open Images-style evaluation.
- Parameters:
config β a
OpenImagesEvaluationConfig
Methods:
evaluate
(sample_or_frame[,Β eval_key])Performs Open Images-style evaluation on the given image.
generate_results
(samples,Β matches[,Β ...])Generates aggregate evaluation results for the samples.
add_fields_to_sidebar_group
(samples,Β eval_key)cleanup
(samples,Β eval_key)Cleans up the results of the run with the given key from the collection.
cleanup_custom_metrics
(samples,Β eval_key[,Β ...])compute_custom_metrics
(samples,Β eval_key,Β ...)delete_run
(samples,Β key[,Β cleanup])Deletes the results associated with the given run key from the collection.
delete_runs
(samples[,Β cleanup])Deletes all runs from the collection.
Ensures that any necessary packages to execute this run are installed.
Ensures that any necessary packages to use existing results for this run are installed.
from_config
(config)Instantiates a Configurable class from a <cls>Config instance.
from_dict
(d)Instantiates a Configurable class from a <cls>Config dict.
from_json
(json_path)Instantiates a Configurable class from a <cls>Config JSON file.
from_kwargs
(**kwargs)Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config.
get_custom_metric_fields
(samples,Β eval_key)get_fields
(samples,Β eval_key[,Β ...])Gets the fields that were involved in the given run.
get_run_info
(samples,Β key)Gets the
BaseRunInfo
for the given key on the collection.has_cached_run_results
(samples,Β key)Determines whether
BaseRunResults
for the given key are cached on the collection.list_runs
(samples[,Β type,Β method])Returns the list of run keys on the given collection.
load_run_results
(samples,Β key[,Β cache,Β ...])Loads the
BaseRunResults
for the given key on the collection.load_run_view
(samples,Β key[,Β select_fields])Loads the view on which the specified run was performed.
parse
(class_name[,Β module_name])Parses a Configurable subclass name string.
register_run
(samples,Β key[,Β overwrite,Β cleanup])Registers a run of this method under the given key on the given collection.
register_samples
(samples,Β eval_key[,Β dynamic])Registers the collection on which evaluation will be performed.
rename
(samples,Β eval_key,Β new_eval_key)Performs any necessary operations required to rename this run's key.
rename_custom_metrics
(samples,Β eval_key,Β ...)The
BaseRunInfo
class associated with this class.save_run_info
(samples,Β run_info[,Β ...])Saves the run information on the collection.
save_run_results
(samples,Β key,Β run_results)Saves the run results on the collection.
update_run_config
(samples,Β key,Β config)Updates the
BaseRunConfig
for the given run on the collection.update_run_key
(samples,Β key,Β new_key)Replaces the key for the given run with a new key.
validate
(config)Validates that the given config is an instance of <cls>Config.
validate_run
(samples,Β key[,Β overwrite])Validates that the collection can accept this run.
- evaluate(sample_or_frame, eval_key=None)#
Performs Open Images-style evaluation on the given image.
Predicted objects are matched to ground truth objects in descending order of confidence, with matches requiring a minimum IoU of
self.config.iou
.The
self.config.classwise
parameter controls whether to only match objects with the same class label (True) or allow matches between classes (False).If a ground truth object has its
self.config.iscrowd
attribute set, then the object can have multiple true positive predictions matched to it.- Parameters:
sample_or_frame β a
fiftyone.core.sample.Sample
orfiftyone.core.frame.Frame
eval_key (None) β the evaluation key for this evaluation
- Returns:
a list of matched
(gt_label, pred_label, iou, pred_confidence, gt_id, pred_id)
tuples
- generate_results(samples, matches, eval_key=None, classes=None, missing=None, progress=None)#
Generates aggregate evaluation results for the samples.
This method generates precision and recall curves for the configured IoU at
self.config.iou
.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
matches β a list of
(gt_label, pred_label, iou, pred_confidence, gt_id, pred_id)
matches. Either label can beNone
to indicate an unmatched objecteval_key (None) β the evaluation key for this evaluation
classes (None) β the list of possible classes. If not provided, the observed ground truth/predicted labels are used for results purposes
missing (None) β a missing label string. Any unmatched objects are given this label for results purposes
progress (None) β whether to render a progress bar (True/False), use the default value
fiftyone.config.show_progress_bars
(None), or a progress callback function to invoke instead
- Returns:
- add_fields_to_sidebar_group(samples, eval_key, omit_fields=None)#
- cleanup(samples, eval_key)#
Cleans up the results of the run with the given key from the collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
- cleanup_custom_metrics(samples, eval_key, metric_uris=None)#
- compute_custom_metrics(samples, eval_key, results, metric_uris=None)#
- classmethod delete_run(samples, key, cleanup=True)#
Deletes the results associated with the given run key from the collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
cleanup (True) β whether to execute the runβs
BaseRun.cleanup()
method
- classmethod delete_runs(samples, cleanup=True)#
Deletes all runs from the collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
cleanup (True) β whether to execute the runβs
BaseRun.cleanup()
methods
- ensure_requirements()#
Ensures that any necessary packages to execute this run are installed.
Runs should respect
fiftyone.config.requirement_error_level
when handling errors.
- ensure_usage_requirements()#
Ensures that any necessary packages to use existing results for this run are installed.
Runs should respect
fiftyone.config.requirement_error_level
when handling errors.
- classmethod from_config(config)#
Instantiates a Configurable class from a <cls>Config instance.
- classmethod from_dict(d)#
Instantiates a Configurable class from a <cls>Config dict.
- Parameters:
d β a dict to construct a <cls>Config
- Returns:
an instance of cls
- classmethod from_json(json_path)#
Instantiates a Configurable class from a <cls>Config JSON file.
- Parameters:
json_path β path to a JSON file for type <cls>Config
- Returns:
an instance of cls
- classmethod from_kwargs(**kwargs)#
Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config.
- Parameters:
**kwargs β keyword arguments that define the fields of a <cls>Config dict
- Returns:
an instance of cls
- get_custom_metric_fields(samples, eval_key, metric_uris=None)#
- get_fields(samples, eval_key, include_custom_metrics=True)#
Gets the fields that were involved in the given run.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
- Returns:
a list of fields
- classmethod get_run_info(samples, key)#
Gets the
BaseRunInfo
for the given key on the collection.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
- Returns:
a
BaseRunInfo
- classmethod has_cached_run_results(samples, key)#
Determines whether
BaseRunResults
for the given key are cached on the collection.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
- Returns:
True/False
- classmethod list_runs(samples, type=None, method=None, **kwargs)#
Returns the list of run keys on the given collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
type (None) β
a specific run type to match, which can be:
a
fiftyone.core.runs.BaseRun
class or its fully-qualified class name string
method (None) β a specific
fiftyone.core.runs.BaseRunConfig.method
string to match**kwargs β optional config parameters to match
- Returns:
a list of run keys
- classmethod load_run_results(samples, key, cache=True, load_view=True, **kwargs)#
Loads the
BaseRunResults
for the given key on the collection.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
cache (True) β whether to cache the results on the collection
load_view (True) β whether to load the run view in the results (True) or the full dataset (False)
**kwargs β keyword arguments for the runβs
BaseRunConfig.load_credentials()
method
- Returns:
a
BaseRunResults
, or None if the run did not save results
- classmethod load_run_view(samples, key, select_fields=False)#
Loads the view on which the specified run was performed.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
select_fields (False) β whether to exclude fields involved in other runs of the same type
- Returns:
- static parse(class_name, module_name=None)#
Parses a Configurable subclass name string.
Assumes both the Configurable class and the Config class are defined in the same module. The module containing the classes will be loaded if necessary.
- Parameters:
class_name β a string containing the name of the Configurable class, e.g. βClassNameβ, or a fully-qualified class name, e.g. βeta.core.config.ClassNameβ
module_name β a string containing the fully-qualified module name, e.g. βeta.core.configβ, or None if class_name includes the module name. Set module_name = __name__ to load a class from the calling module
- Returns:
the Configurable class config_cls: the Config class associated with cls
- Return type:
cls
- register_run(samples, key, overwrite=True, cleanup=True)#
Registers a run of this method under the given key on the given collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
overwrite (True) β whether to allow overwriting an existing run of the same type
cleanup (True) β whether to execute an existing runβs
BaseRun.cleanup()
method when overwriting it
- register_samples(samples, eval_key, dynamic=True)#
Registers the collection on which evaluation will be performed.
This method will be called before the first call to
evaluate()
. Subclasses can extend this method to perform any setup required for an evaluation run.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
eval_key β the evaluation key for this evaluation
dynamic (True) β whether to declare the dynamic object-level attributes that are populated on the datasetβs schema
- rename(samples, eval_key, new_eval_key)#
Performs any necessary operations required to rename this runβs key.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
new_key β a new run key
- rename_custom_metrics(samples, eval_key, new_eval_key, metric_uris=None)#
- classmethod run_info_cls()#
The
BaseRunInfo
class associated with this class.
- classmethod save_run_info(samples, run_info, overwrite=True, cleanup=True)#
Saves the run information on the collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
run_info β a
BaseRunInfo
overwrite (True) β whether to overwrite an existing run with the same key
cleanup (True) β whether to execute an existing runβs
BaseRun.cleanup()
method when overwriting it
- classmethod save_run_results(samples, key, run_results, overwrite=True, cache=True)#
Saves the run results on the collection.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
run_results β a
BaseRunResults
, or Noneoverwrite (True) β whether to overwrite an existing result with the same key
cache (True) β whether to cache the results on the collection
- classmethod update_run_config(samples, key, config)#
Updates the
BaseRunConfig
for the given run on the collection.- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
config β a
BaseRunConfig
- classmethod update_run_key(samples, key, new_key)#
Replaces the key for the given run with a new key.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
new_key β a new run key
- classmethod validate(config)#
Validates that the given config is an instance of <cls>Config.
- Raises:
ConfigurableError β if config is not an instance of <cls>Config
- validate_run(samples, key, overwrite=True)#
Validates that the collection can accept this run.
The run may be invalid if, for example, a run of a different type has already been run under the same key and thus overwriting it would cause ambiguity on how to cleanup the results.
- Parameters:
samples β a
fiftyone.core.collections.SampleCollection
key β a run key
overwrite (True) β whether to allow overwriting an existing run of the same type
- Raises:
ValueError β if the run is invalid
- class fiftyone.utils.eval.openimages.OpenImagesDetectionResults(samples, config, eval_key, matches, precision, recall, classes, thresholds=None, missing=None, custom_metrics=None, backend=None)#
Bases:
DetectionResults
Class that stores the results of an Open Images detection evaluation.
- Parameters:
samples β the
fiftyone.core.collections.SampleCollection
usedconfig β the
OpenImagesEvaluationConfig
usedeval_key β the evaluation key
matches β a list of
(gt_label, pred_label, iou, pred_confidence, gt_id, pred_id)
matches. Either label can beNone
to indicate an unmatched objectprecision β a dict of per-class precision values
recall β a dict of per-class recall values
classes β the list of possible classes
thresholds (None) β an optional dict of per-class decision thresholds
missing (None) β a missing label string. Any unmatched objects are given this label for evaluation purposes
custom_metrics (None) β an optional dict of custom metrics
backend (None) β a
OpenImagesEvaluation
backend
Methods:
plot_pr_curves
([classes,Β num_points,Β backend])Plots precision-recall (PR) curves for the detection results.
mAP
([classes])Computes Open Images-style mean average precision (mAP) for the specified classes.
add_custom_metrics
(custom_metrics[,Β overwrite])Computes the given custom metrics and adds them to these results.
Returns the list of class attributes that will be serialized by
serialize()
.base_results_cls
(type)Returns the results class for the given run type.
Clears the subset set by
use_subset()
, if any.confusion_matrix
([classes,Β include_other,Β ...])Generates a confusion matrix for the results via
sklearn.metrics.confusion_matrix()
.copy
()Returns a deep copy of the object.
custom_attributes
([dynamic,Β private])Returns a customizable list of class attributes.
from_dict
(d,Β samples,Β config,Β key)Builds a
BaseRunResults
from a JSON dict representation of it.from_json
(path,Β *args,Β **kwargs)Constructs a Serializable object from a JSON file.
from_str
(s,Β *args,Β **kwargs)Constructs a Serializable object from a JSON string.
Returns the fully-qualified class name string of this object.
metrics
([classes,Β average,Β beta])Computes classification metrics for the results, including accuracy, precision, recall, and F-beta score.
plot_confusion_matrix
([classes,Β ...])Plots a confusion matrix for the evaluation results.
print_metrics
([classes,Β average,Β beta,Β digits])Prints the metrics computed via
metrics()
.print_report
([classes,Β digits])Prints a classification report for the results via
sklearn.metrics.classification_report()
.report
([classes])Generates a classification report for the results via
sklearn.metrics.classification_report()
.save
()Saves the results to the database.
Saves these results config to the database.
serialize
([reflective])Serializes the object into a dictionary.
to_str
([pretty_print])Returns a string representation of this object.
use_subset
(subset_def)Restricts the evaluation results to the specified subset.
write_json
(path[,Β pretty_print])Serializes the object and writes it to disk.
Attributes:
The
BaseRun
for these results.The fully-qualified name of this
BaseRunResults
class.The
BaseRunConfig
for these results.Whether these results are currently restricted to a subset via
use_subset()
.The run key for these results.
The
fiftyone.core.collections.SampleCollection
associated with these results.- plot_pr_curves(classes=None, num_points=101, backend='plotly', **kwargs)#
Plots precision-recall (PR) curves for the detection results.
- Parameters:
classes (None) β a list of classes to generate curves for. By default, the top 3 AP classes will be plotted
num_points (101) β the number of linearly spaced recall values to plot
backend ("plotly") β the plotting backend to use. Supported values are
("plotly", "matplotlib")
**kwargs β
keyword arguments for the backend plotting method:
βplotlyβ backend:
fiftyone.core.plots.plotly.plot_pr_curves()
βmatplotlibβ backend:
fiftyone.core.plots.matplotlib.plot_pr_curves()
- Returns:
a
fiftyone.core.plots.plotly.PlotlyNotebookPlot
, if you are working in a notebook context and the plotly backend is useda plotly or matplotlib figure, otherwise
- Return type:
one of the following
- mAP(classes=None)#
Computes Open Images-style mean average precision (mAP) for the specified classes.
See this page for more details about Open Images-style mAP.
- Parameters:
classes (None) β a list of classes for which to compute mAP
- Returns:
the mAP in
[0, 1]
- add_custom_metrics(custom_metrics, overwrite=True)#
Computes the given custom metrics and adds them to these results.
- Parameters:
custom_metrics β a list of custom metrics to compute or a dict mapping metric names to kwargs dicts
overwrite (True) β whether to recompute any custom metrics that have already been applied
- attributes()#
Returns the list of class attributes that will be serialized by
serialize()
.- Returns:
a list of attributes
- property backend#
The
BaseRun
for these results.
- static base_results_cls(type)#
Returns the results class for the given run type.
- Parameters:
type β a
BaseRunConfig.type
- Returns:
a
BaseRunResults
subclass
- clear_subset()#
Clears the subset set by
use_subset()
, if any.Subsequent operations will be performed on the full results.
- property cls#
The fully-qualified name of this
BaseRunResults
class.
- property config#
The
BaseRunConfig
for these results.
- confusion_matrix(classes=None, include_other=False, include_missing=False)#
Generates a confusion matrix for the results via
sklearn.metrics.confusion_matrix()
.The rows of the confusion matrix represent ground truth and the columns represent predictions.
- Parameters:
classes (None) β an optional list of classes to include in the confusion matrix
include_other (False) β whether to include an extra row/column at the end of the matrix for labels that do not appear in
classes
. Only applicable ifclasses
are providedinclude_missing (False) β whether to include a row/column at the end of the matrix for unmatched labels. Only applicable if
self.missing
does not already appear inclasses
. If both βotherβ and βmissingβ rows/columns are requested, this one is last
- Returns:
a
num_classes x num_classes
confusion matrix
- copy()#
Returns a deep copy of the object.
- Returns:
a Serializable instance
- custom_attributes(dynamic=False, private=False)#
Returns a customizable list of class attributes.
By default, all attributes in vars(self) are returned, minus private attributes (those starting with β_β).
- Parameters:
dynamic β whether to include dynamic properties, e.g., those defined by getter/setter methods or the @property decorator. By default, this is False
private β whether to include private properties, i.e., those starting with β_β. By default, this is False
- Returns:
a list of class attributes
- classmethod from_dict(d, samples, config, key)#
Builds a
BaseRunResults
from a JSON dict representation of it.- Parameters:
d β a JSON dict
samples β the
fiftyone.core.collections.SampleCollection
for the runconfig β the
BaseRunConfig
for the runkey β the run key
- Returns:
a
BaseRunResults
- classmethod from_json(path, *args, **kwargs)#
Constructs a Serializable object from a JSON file.
Subclasses may override this method, but, by default, this method simply reads the JSON and calls from_dict(), which subclasses must implement.
- Parameters:
path β the path to the JSON file on disk
*args β optional positional arguments for self.from_dict()
**kwargs β optional keyword arguments for self.from_dict()
- Returns:
an instance of the Serializable class
- classmethod from_str(s, *args, **kwargs)#
Constructs a Serializable object from a JSON string.
Subclasses may override this method, but, by default, this method simply parses the string and calls from_dict(), which subclasses must implement.
- Parameters:
s β a JSON string representation of a Serializable object
*args β optional positional arguments for self.from_dict()
**kwargs β optional keyword arguments for self.from_dict()
- Returns:
an instance of the Serializable class
- classmethod get_class_name()#
Returns the fully-qualified class name string of this object.
- property has_subset#
Whether these results are currently restricted to a subset via
use_subset()
.
- property key#
The run key for these results.
- metrics(classes=None, average='micro', beta=1.0)#
Computes classification metrics for the results, including accuracy, precision, recall, and F-beta score.
See
sklearn.metrics.precision_recall_fscore_support()
for details.Also includes any custom metrics from
custom_metrics
.- Parameters:
classes (None) β an optional list of classes to include in the calculations
average ("micro") β the averaging strategy to use
beta (1.0) β the F-beta value to use
- Returns:
a dict
- plot_confusion_matrix(classes=None, include_other=None, include_missing=None, other_label='(other)', backend='plotly', **kwargs)#
Plots a confusion matrix for the evaluation results.
If you are working in a notebook environment with the default plotly backend, this method returns an interactive
fiftyone.core.plots.plotly.InteractiveHeatmap
that you can attach to an App session via itsfiftyone.core.session.Session.plots
attribute, which will automatically sync the sessionβs view with the currently selected cells in the confusion matrix.- Parameters:
classes (None) β an optional list of classes to include in the confusion matrix
include_other (None) β
whether to include a row/column for examples whose label is in
classes
but are matched to labels that do not appear inclasses
. Only applicable ifclasses
are provided. The supported values are:None (default): only include a row/column for other labels if there are any
True: do include a row/column for other labels
False: do not include a row/column for other labels
include_missing (None) β
whether to include a row/column for missing ground truth/predictions in the confusion matrix. The supported values are:
None (default): only include a row/column for missing labels if there are any
True: do include a row/column for missing labels
False: do not include a row/column for missing labels
other_label ("(other)") β the label to use for βotherβ predictions
backend ("plotly") β the plotting backend to use. Supported values are
("plotly", "matplotlib")
**kwargs β
keyword arguments for the backend plotting method:
βplotlyβ backend:
fiftyone.core.plots.plotly.plot_confusion_matrix()
βmatplotlibβ backend:
fiftyone.core.plots.matplotlib.plot_confusion_matrix()
- Returns:
a
fiftyone.core.plots.plotly.InteractiveHeatmap
, if the plotly backend is useda matplotlib figure, otherwise
- Return type:
one of the following
- print_metrics(classes=None, average='micro', beta=1.0, digits=2)#
Prints the metrics computed via
metrics()
.- Parameters:
classes (None) β an optional list of classes to include in the calculations
average ("micro") β the averaging strategy to use
beta (1.0) β the F-beta value to use
digits (2) β the number of digits of precision to print
- print_report(classes=None, digits=2)#
Prints a classification report for the results via
sklearn.metrics.classification_report()
.- Parameters:
classes (None) β an optional list of classes to include in the report
digits (2) β the number of digits of precision to print
- report(classes=None)#
Generates a classification report for the results via
sklearn.metrics.classification_report()
.- Parameters:
classes (None) β an optional list of classes to include in the report
- Returns:
a dict
- property samples#
The
fiftyone.core.collections.SampleCollection
associated with these results.
- save()#
Saves the results to the database.
- save_config()#
Saves these results config to the database.
- serialize(reflective=False)#
Serializes the object into a dictionary.
Serialization is applied recursively to all attributes in the object, including element-wise serialization of lists and dictionary values.
- Parameters:
reflective β whether to include reflective attributes when serializing the object. By default, this is False
- Returns:
a JSON dictionary representation of the object
- to_str(pretty_print=True, **kwargs)#
Returns a string representation of this object.
- Parameters:
pretty_print β whether to render the JSON in human readable format with newlines and indentations. By default, this is True
**kwargs β optional keyword arguments for self.serialize()
- Returns:
a string representation of the object
- use_subset(subset_def)#
Restricts the evaluation results to the specified subset.
Subsequent calls to supported methods on this instance will only contain results from the specified subset rather than the full results.
Use
clear_subset()
to reset to the full results. Or, equivalently, use the context manager interface as demonstrated below to automatically reset the results when the context exits.Example usage:
import fiftyone as fo import fiftyone.zoo as foz import fiftyone.utils.random as four from fiftyone import ViewField as F dataset = foz.load_zoo_dataset("quickstart") four.random_split(dataset, {"sunny": 0.7, "cloudy": 0.2, "rainy": 0.1}) results = dataset.evaluate_detections( "predictions", gt_field="ground_truth", eval_key="eval", ) counts = dataset.count_values("ground_truth.detections.label") classes = sorted(counts, key=counts.get, reverse=True)[:5] # Full results results.print_report(classes=classes) # Sunny samples subset_def = dict(type="field", field="tags", value="sunny") with results.use_subset(subset_def): results.print_report(classes=classes) # Small objects bbox_area = F("bounding_box")[2] * F("bounding_box")[3] small_objects = bbox_area <= 0.05 subset_def = dict(type="attribute", expr=small_objects) with results.use_subset(subset_def): results.print_report(classes=classes)
- Parameters:
subset_def β
the subset definition, which can be:
a dict or list of dicts defining the subset. See above for examples and see
get_subset_view()
for full syntaxa
fiftyone.core.view.DatasetView
defining the subset
- Returns:
self
- write_json(path, pretty_print=False, **kwargs)#
Serializes the object and writes it to disk.
- Parameters:
path β the output path
pretty_print β whether to render the JSON in human readable format with newlines and indentations. By default, this is False
**kwargs β optional keyword arguments for self.serialize()