<!-- # hard line break macro for HTML -->

# fiftyone.brain.visualization

Visualization interface.

Copyright 2017-2026, Voxel51, Inc.
<br/>
[voxel51.com](https://voxel51.com/)
<br/>
<br/>

**Functions:**

| [`compute_visualization`](#fiftyone.brain.visualization.compute_visualization)(samples, ...)   | See `fiftyone/brain/__init__.py`.   |
|------------------------------------------------------------------------------------------------|-------------------------------------|
| [`values`](#fiftyone.brain.visualization.values)(results, path_or_expr)                        |                                     |
| [`visualize`](#fiftyone.brain.visualization.visualize)(results[, labels, sizes, classes, ...]) |                                     |

**Classes:**

| [`VisualizationResults`](#fiftyone.brain.visualization.VisualizationResults)(samples, config, ...[, ...])    | Class storing the results of [`fiftyone.brain.compute_visualization()`](fiftyone.brain.md#fiftyone.brain.compute_visualization).   |
|--------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
| [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig)([embeddings_field, ...])          | Base class for configuring visualization methods.                                                                                  |
| [`Visualization`](#fiftyone.brain.visualization.Visualization)(config)                                       |                                                                                                                                    |
| [`UMAPVisualizationConfig`](#fiftyone.brain.visualization.UMAPVisualizationConfig)([embeddings_field, ...])  | Configuration for Uniform Manifold Approximation and Projection (UMAP) embedding visualization.                                    |
| [`UMAPVisualization`](#fiftyone.brain.visualization.UMAPVisualization)(config)                               |                                                                                                                                    |
| [`TSNEVisualizationConfig`](#fiftyone.brain.visualization.TSNEVisualizationConfig)([embeddings_field, ...])  | Configuration for t-distributed Stochastic Neighbor Embedding (t-SNE) visualization.                                               |
| [`TSNEVisualization`](#fiftyone.brain.visualization.TSNEVisualization)(config)                               |                                                                                                                                    |
| [`PCAVisualizationConfig`](#fiftyone.brain.visualization.PCAVisualizationConfig)([embeddings_field, ...])    | Configuration for principal component analysis (PCA) embedding visualization.                                                      |
| [`PCAVisualization`](#fiftyone.brain.visualization.PCAVisualization)(config)                                 |                                                                                                                                    |
| [`ManualVisualizationConfig`](#fiftyone.brain.visualization.ManualVisualizationConfig)([patches_field, ...]) | Configuration for manually-provided low-dimensional visualizations.                                                                |
| [`ManualVisualization`](#fiftyone.brain.visualization.ManualVisualization)(config)                           |                                                                                                                                    |

### fiftyone.brain.visualization.compute_visualization(samples, patches_field, embeddings, points, create_index, points_field, brain_key, num_dims, method, similarity_index, model, model_kwargs, force_square, alpha, batch_size, num_workers, skip_failures, progress, \*\*kwargs)

See `fiftyone/brain/__init__.py`.

### fiftyone.brain.visualization.values(results, path_or_expr)

### fiftyone.brain.visualization.visualize(results, labels=None, sizes=None, classes=None, backend='plotly', \*\*kwargs)

### *class* fiftyone.brain.visualization.VisualizationResults(samples, config, brain_key, points, sample_ids=None, label_ids=None, reducer=None, reducer_blob=None, backend=None)

Bases: [`BrainResults`](fiftyone.core.brain.md#fiftyone.core.brain.BrainResults)

Class storing the results of
[`fiftyone.brain.compute_visualization()`](fiftyone.brain.md#fiftyone.brain.compute_visualization).

* **Parameters:**
  * **samples** – the [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) used
  * **config** – the [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig) used
  * **brain_key** – the brain key
  * **points** – a `num_points x num_dims` array of visualization points
  * **sample_ids** (*None*) – a `num_points` array of sample IDs
  * **label_ids** (*None*) – a `num_points` array of label IDs, if applicable
  * **reducer** (*None*) – the fitted dimensionality reduction model used to
    generate `points`, retained to support incremental updates via
    [`add_samples()`](#fiftyone.brain.visualization.VisualizationResults.add_samples). Not applicable to all methods
  * **reducer_blob** (*None*) – a base64-encoded pickled form of `reducer`,
    used when reconstructing the results from a persisted run
  * **backend** (*None*) – a [`Visualization`](#fiftyone.brain.visualization.Visualization) backend

**Attributes:**

| [`reducer_blob`](#fiftyone.brain.visualization.VisualizationResults.reducer_blob)                   |                                                                                                                                                                                                    |
|-----------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [`config`](#fiftyone.brain.visualization.VisualizationResults.config)                               | The [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig) for the results.                                                                                                    |
| [`index_size`](#fiftyone.brain.visualization.VisualizationResults.index_size)                       | The number of active points in the index.                                                                                                                                                          |
| [`total_index_size`](#fiftyone.brain.visualization.VisualizationResults.total_index_size)           | The total number of data points in the index.                                                                                                                                                      |
| [`missing_size`](#fiftyone.brain.visualization.VisualizationResults.missing_size)                   | The total number of data points in [`view()`](#fiftyone.brain.visualization.VisualizationResults.view) that are missing from this index.                                                           |
| [`current_points`](#fiftyone.brain.visualization.VisualizationResults.current_points)               | The currently active points in the index.                                                                                                                                                          |
| [`current_sample_ids`](#fiftyone.brain.visualization.VisualizationResults.current_sample_ids)       | The sample IDs of the currently active points in the index.                                                                                                                                        |
| [`current_label_ids`](#fiftyone.brain.visualization.VisualizationResults.current_label_ids)         | The label IDs of the currently active points in the index, or `None` if not applicable.                                                                                                            |
| [`view`](#fiftyone.brain.visualization.VisualizationResults.view)                                   | The [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) against which results are currently being generated.                   |
| [`has_spatial_index`](#fiftyone.brain.visualization.VisualizationResults.has_spatial_index)         | Whether these results have a spatial index.                                                                                                                                                        |
| [`supports_auto_updates`](#fiftyone.brain.visualization.VisualizationResults.supports_auto_updates) | Whether this index can be incrementally updated by calling [`add_samples()`](#fiftyone.brain.visualization.VisualizationResults.add_samples) without manually providing `embeddings` or a `model`. |
| [`backend`](#fiftyone.brain.visualization.VisualizationResults.backend)                             | The `BaseRun` for these results.                                                                                                                                                                   |
| [`cls`](#fiftyone.brain.visualization.VisualizationResults.cls)                                     | The fully-qualified name of this `BaseRunResults` class.                                                                                                                                           |
| [`key`](#fiftyone.brain.visualization.VisualizationResults.key)                                     | The run key for these results.                                                                                                                                                                     |
| [`samples`](#fiftyone.brain.visualization.VisualizationResults.samples)                             | The [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) associated with these results.                                         |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.VisualizationResults.attributes)()                                      | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.VisualizationResults.serialize).                                                     |
|----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [`serialize`](#fiftyone.brain.visualization.VisualizationResults.serialize)([reflective])                            | Serializes the results into a dictionary.                                                                                                                                                          |
| [`use_view`](#fiftyone.brain.visualization.VisualizationResults.use_view)(sample_collection[, allow_missing, ...])   | Restricts the index to the provided view.                                                                                                                                                          |
| [`clear_view`](#fiftyone.brain.visualization.VisualizationResults.clear_view)()                                      | Clears the view set by [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view), if any.                                                                                        |
| [`values`](#fiftyone.brain.visualization.VisualizationResults.values)(path_or_expr)                                  | Extracts a flat list of values from the given field or expression corresponding to the current [`view()`](#fiftyone.brain.visualization.VisualizationResults.view).                                |
| [`visualize`](#fiftyone.brain.visualization.VisualizationResults.visualize)([labels, sizes, classes, backend])       | Generates an interactive scatterplot of the visualization results for the current [`view()`](#fiftyone.brain.visualization.VisualizationResults.view).                                             |
| [`index_points`](#fiftyone.brain.visualization.VisualizationResults.index_points)([points_field, create_index, ...]) | Adds a spatial index for these visualization results to its dataset's samples.                                                                                                                     |
| [`remove_index`](#fiftyone.brain.visualization.VisualizationResults.remove_index)()                                  | Removes the spatial index from these visualization results, if one exists.                                                                                                                         |
| [`add_samples`](#fiftyone.brain.visualization.VisualizationResults.add_samples)(samples[, embeddings, model, ...])   | Incrementally extends this visualization with the new samples in `samples`.                                                                                                                        |
| [`get_new_ids`](#fiftyone.brain.visualization.VisualizationResults.get_new_ids)([samples, include_training_size])    | Returns the IDs of the samples/patches in the given collection that are not present in this visualization, along with the number of embeddings that were used to fit this visualization's reducer. |
| [`needs_update`](#fiftyone.brain.visualization.VisualizationResults.needs_update)([samples])                         | Determines whether the given collection contains samples/patches that are not present in this visualization.                                                                                       |
| [`base_results_cls`](#fiftyone.brain.visualization.VisualizationResults.base_results_cls)(type)                      | Returns the results class for the given run type.                                                                                                                                                  |
| [`copy`](#fiftyone.brain.visualization.VisualizationResults.copy)()                                                  | Returns a deep copy of the object.                                                                                                                                                                 |
| [`custom_attributes`](#fiftyone.brain.visualization.VisualizationResults.custom_attributes)([dynamic, private])      | Returns a customizable list of class attributes.                                                                                                                                                   |
| [`from_dict`](#fiftyone.brain.visualization.VisualizationResults.from_dict)(d, samples, config, key)                 | Builds a `BaseRunResults` from a JSON dict representation of it.                                                                                                                                   |
| [`from_json`](#fiftyone.brain.visualization.VisualizationResults.from_json)(path, \*args, \*\*kwargs)                | Constructs a Serializable object from a JSON file.                                                                                                                                                 |
| [`from_str`](#fiftyone.brain.visualization.VisualizationResults.from_str)(s, \*args, \*\*kwargs)                     | Constructs a Serializable object from a JSON string.                                                                                                                                               |
| [`get_class_name`](#fiftyone.brain.visualization.VisualizationResults.get_class_name)()                              | Returns the fully-qualified class name string of this object.                                                                                                                                      |
| [`get_meta`](#fiftyone.brain.visualization.VisualizationResults.get_meta)()                                          | Small facts that DESCRIBE these results, stored beside the run so callers can read them without loading the results.                                                                               |
| [`save`](#fiftyone.brain.visualization.VisualizationResults.save)()                                                  | Saves the results to the database.                                                                                                                                                                 |
| [`save_config`](#fiftyone.brain.visualization.VisualizationResults.save_config)()                                    | Saves these results config to the database.                                                                                                                                                        |
| [`to_str`](#fiftyone.brain.visualization.VisualizationResults.to_str)([pretty_print])                                | Returns a string representation of this object.                                                                                                                                                    |
| [`write_json`](#fiftyone.brain.visualization.VisualizationResults.write_json)(path[, pretty_print])                  | Serializes the object and writes it to disk.                                                                                                                                                       |

#### *property* reducer_blob

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.VisualizationResults.serialize).

* **Returns:**
  a list of attributes

#### serialize(reflective=False)

Serializes the results into a dictionary.

The array-valued fields (points and ids) are stored as
zlib-compressed, base64-encoded `.npy` bytes rather than JSON
lists: for large runs the list encoding inflates the stored blob
several-fold, and deserializing it materializes millions of
transient Python objects. `_from_dict()` accepts both
encodings, so results written by earlier versions load unchanged.

* **Parameters:**
  **reflective** – whether to include reflective attributes when
  serializing the object. By default, this is False
* **Returns:**
  a JSON dictionary representation of the object

#### *property* config

The [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig) for the results.

#### *property* index_size

The number of active points in the index.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called to restrict the index, this
property will reflect the size of the active index.

#### *property* total_index_size

The total number of data points in the index.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called to restrict the index, this value
may be larger than the current [`index_size()`](#fiftyone.brain.visualization.VisualizationResults.index_size).

#### *property* missing_size

The total number of data points in [`view()`](#fiftyone.brain.visualization.VisualizationResults.view) that are missing
from this index.

This property is only applicable when [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called,
and it will be `None` if no data points are missing.

#### *property* current_points

The currently active points in the index.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called, this may be a subset of the full
index.

#### *property* current_sample_ids

The sample IDs of the currently active points in the index.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called, this may be a subset of the full
index.

#### *property* current_label_ids

The label IDs of the currently active points in the index, or
`None` if not applicable.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called, this may be a subset of the full
index.

#### *property* view

The [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) against
which results are currently being generated.

If [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view) has been called, this view may be different than
the collection on which the full index was generated.

#### *property* has_spatial_index

Whether these results have a spatial index.

Use [`index_points()`](#fiftyone.brain.visualization.VisualizationResults.index_points) to add a spatial index to an existing set of
visualization results.

#### use_view(sample_collection, allow_missing=True, warn_missing=False)

Restricts the index to the provided view.

Subsequent calls to methods on this instance will only contain results
from the specified view rather than the full index.

Use [`clear_view()`](#fiftyone.brain.visualization.VisualizationResults.clear_view) to reset to the full index. Or, equivalently,
use the context manager interface as demonstrated below to
automatically reset the view when the context exits.

Example usage:

```default
import fiftyone as fo
import fiftyone.brain as fob
import fiftyone.zoo as foz

dataset = foz.load_zoo_dataset("quickstart")

results = fob.compute_visualization(dataset)
print(results.index_size)  # 200

view = dataset.take(50)

with results.use_view(view):
    print(results.index_size)  # 50

    plot = results.visualize()
    plot.show()
```

* **Parameters:**
  * **sample_collection** – a
    [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **allow_missing** (*True*) – whether to allow the provided collection to
    contain data points that this index does not contain (True) or
    whether to raise an error in this case (False)
  * **warn_missing** (*False*) – whether to log a warning if the provided
    collection contains data points that this index does not
    contain
* **Returns:**
  self

#### clear_view()

Clears the view set by [`use_view()`](#fiftyone.brain.visualization.VisualizationResults.use_view), if any.

Subsequent operations will be performed on the full index.

#### values(path_or_expr)

Extracts a flat list of values from the given field or expression
corresponding to the current [`view()`](#fiftyone.brain.visualization.VisualizationResults.view).

This method always returns values in the same order as
[`current_points()`](#fiftyone.brain.visualization.VisualizationResults.current_points), [`current_sample_ids()`](#fiftyone.brain.visualization.VisualizationResults.current_sample_ids), and
[`current_label_ids()`](#fiftyone.brain.visualization.VisualizationResults.current_label_ids).

* **Parameters:**
  **path_or_expr** – 

  the values to extract, which can be:
  - the name of a sample field or `embedded.field.name` from
    which to extract numeric or string values
  - a [`fiftyone.core.expressions.ViewExpression`](fiftyone.core.expressions.md#fiftyone.core.expressions.ViewExpression)
    defining numeric or string values to compute via
    [`fiftyone.core.collections.SampleCollection.values()`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection.values)
* **Returns:**
  a list of values

#### visualize(labels=None, sizes=None, classes=None, backend='plotly', \*\*kwargs)

Generates an interactive scatterplot of the visualization results
for the current [`view()`](#fiftyone.brain.visualization.VisualizationResults.view).

This method supports 2D or 3D visualizations, but interactive point
selection is only available in 2D.

You can use the `labels` parameters to define a coloring for the
points, and you can use the `sizes` parameter to scale the sizes of
the points.

You can attach plots generated by this method to an App session via its
[`fiftyone.core.session.Session.plots`](fiftyone.core.session.md#fiftyone.core.session.Session.plots) attribute, which will
automatically sync the session’s view with the currently selected
points in the plot.

* **Parameters:**
  * **labels** (*None*) – 

    data to use to color the points. Can be any of the
    following:
    - the name of a sample field or `embedded.field.name` from
      which to extract numeric or string values
    - a [`fiftyone.core.expressions.ViewExpression`](fiftyone.core.expressions.md#fiftyone.core.expressions.ViewExpression)
      defining numeric or string values to compute via
      [`fiftyone.core.collections.SampleCollection.values()`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection.values)
    - a list or array-like of numeric or string values
    - a list of lists of numeric or string values, if the data in
      this visualization corresponds to a label list field like
      [`fiftyone.core.labels.Detections`](fiftyone.core.labels.md#fiftyone.core.labels.Detections)
  * **sizes** (*None*) – 

    data to use to scale the sizes of the points. Can be
    any of the following:
    - the name of a sample field or `embedded.field.name` from
      which to extract numeric values
    - a [`fiftyone.core.expressions.ViewExpression`](fiftyone.core.expressions.md#fiftyone.core.expressions.ViewExpression)
      defining numeric values to compute via
      [`fiftyone.core.collections.SampleCollection.values()`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection.values)
    - a list or array-like of numeric values
    - a list of lists of numeric values, if the data in this
      visualization corresponds to a label list field like
      [`fiftyone.core.labels.Detections`](fiftyone.core.labels.md#fiftyone.core.labels.Detections)
  * **classes** (*None*) – an optional list of classes whose points to plot.
    Only applicable when `labels` contains strings
  * **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.scatterplot()`](fiftyone.core.plots.plotly.md#fiftyone.core.plots.plotly.scatterplot)
    - ”matplotlib” backend: [`fiftyone.core.plots.matplotlib.scatterplot()`](fiftyone.core.plots.matplotlib.md#fiftyone.core.plots.matplotlib.scatterplot)
* **Returns:**
  an [`fiftyone.core.plots.base.InteractivePlot`](fiftyone.core.plots.base.md#fiftyone.core.plots.base.InteractivePlot)

#### index_points(points_field=None, create_index=True, progress=None)

Adds a spatial index for these visualization results to its
dataset’s samples.

This method is useful if you want to add a spatial index to existing
visualization results that don’t yet have one.

Spatial indexes are highly recommended for large datasets as they
enable efficient querying when lassoing points in embeddings plots.

* **Parameters:**
  * **points_field** (*None*) – an optional field name in which to store the
    spatial index. The default is the result’s `brain_key`
  * **create_index** (*True*) – whether to create a database index for the
    points
  * **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

#### remove_index()

Removes the spatial index from these visualization results, if one
exists.

#### *property* supports_auto_updates

Whether this index can be incrementally updated by calling
[`add_samples()`](#fiftyone.brain.visualization.VisualizationResults.add_samples) without manually providing `embeddings` or a
`model`.

#### add_samples(samples, embeddings=None, model=None, model_kwargs=None, force_square=False, alpha=None, batch_size=None, num_workers=None, skip_failures=True, progress=None, skip_existing=True, allow_existing=True, warn_existing=False, reload=True)

Incrementally extends this visualization with the new samples in
`samples`.

Embeddings for the new samples are extracted (or accepted) and
transformed through the previously fitted reducer, then appended to
the index. This is significantly cheaper than recomputing the entire
visualization for datasets where only a few samples have been added.

By default, samples that are already in the visualization are skipped,
so it is safe to pass an entire dataset/view that contains both known
and new samples.

Only methods whose reducer supports `transform()` are supported
(currently UMAP and PCA). For UMAP, the original
`config.embeddings_field` must be set so that the kNN search
structure can be rebuilt on demand from the dataset.

The embedding source for the new samples is resolved in this order:

1. `embeddings` if provided (array, dict, or field name)
2. `model` if provided
3. `config.embeddings_field` if populated on the new samples
4. `config.model` if the zoo model name recorded on the original run
5. otherwise, an error is raised

Note that if the original [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization) call was made
with a [`fiftyone.core.models.Model`](fiftyone.core.models.md#fiftyone.core.models.Model) instance rather than the
string name of a zoo model, `config.model` is `None` and you must
pass `model` or `embeddings` explicitly here to extend the
visualization.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
    containing samples to add to the visualization
  * **embeddings** (*None*) – pre-computed embeddings for the new samples.
    Can be a `num_samples x num_dims` array, a dict mapping
    sample/label IDs to embeddings, or the name of a field from
    which to load them. If the resolved source differs from
    `config.embeddings_field`, the new embeddings are also
    written through to `config.embeddings_field` so that future
    UMAP reloads can rehydrate consistently
  * **model** (*None*) – a model to use to compute embeddings. If not
    provided, `config.model` is used if available
  * **model_kwargs** (*None*) – a dictionary of optional keyword arguments to
    pass to the model’s `Config` when a model name is provided
  * **force_square** (*False*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **alpha** (*None*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **batch_size** (*None*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **num_workers** (*None*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **skip_failures** (*True*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **progress** (*None*) – see [`compute_visualization()`](#fiftyone.brain.visualization.compute_visualization)
  * **skip_existing** (*True*) – if True, samples already in the
    visualization are silently dropped from `samples` before
    computing embeddings, so only new samples are projected
    through the reducer
  * **allow_existing** (*True*) – if False, raise an error when
    `skip_existing` is False and and a provided sample contains
    an ID that already exists in the index
  * **warn_existing** (*False*) – whether to log a warning if a point is not
    added because its ID already exists in the index
  * **reload** (*True*) – whether to refresh the current view after the
    update

#### get_new_ids(samples=None, include_training_size=True)

Returns the IDs of the samples/patches in the given collection
that are not present in this visualization, along with the number of
embeddings that were used to fit this visualization’s reducer.

For sample-level visualizations, sample IDs are returned; for
patch-level visualizations, label IDs are returned.

The training size can be used to decide whether an incremental
update via [`add_samples()`](#fiftyone.brain.visualization.VisualizationResults.add_samples) is appropriate; when the number of
new IDs is large relative to the training size (e.g. > 20%),
recomputing the visualization will produce a more faithful embedding.

Computing the training size requires unpickling the stored reducer,
which for UMAP imports the `umap` package and can take several
seconds on the first use in a process. Pass
`include_training_size=False` to skip that work when only the IDs
are needed (e.g. to render a count in an interactive context).

* **Parameters:**
  * **samples** (*None*) – a
    [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) to check.
    By default, the full collection on which this run was
    performed is used
  * **include_training_size** (*True*) – whether to compute the training
    size, which loads the stored reducer. When `False`, the
    training size is returned as `None`
* **Returns:**
  a tuple of
  - a list of new IDs
  - the number of embeddings used to fit the reducer, or `None`
    if it was not computed or no reducer is available for this
    run

#### needs_update(samples=None)

Determines whether the given collection contains samples/patches
that are not present in this visualization.

Use [`add_samples()`](#fiftyone.brain.visualization.VisualizationResults.add_samples) to add the new samples to the visualization.

* **Parameters:**
  **samples** (*None*) – a
  [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) to check.
  By default, the full collection on which this run was
  performed is used
* **Returns:**
  True/False

#### *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

#### *property* cls

The fully-qualified name of this `BaseRunResults` 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* 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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
    for the run
  * **config** – the `BaseRunConfig` for the run
  * **key** – 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.

#### get_meta()

Small facts that DESCRIBE these results, stored beside the run so
callers can read them without loading the results.

The results themselves are a blob in GridFS whose arrays can run to
hundreds of MB; a count or a path is a few bytes. Anything returned
here is written when the results are saved (see
`BaseRun.save_run_results()`), so no read path has to load — or
write — to answer for it.

* **Returns:**
  a JSON-serializable dict

#### *property* key

The run key for these results.

#### *property* samples

The [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection) associated
with these results.

#### save()

Saves the results to the database.

#### save_config()

Saves these results config to the database.

#### 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

#### 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.brain.visualization.VisualizationConfig(embeddings_field=None, points_field=None, similarity_index=None, model=None, model_kwargs=None, patches_field=None, num_dims=2, \*\*kwargs)

Bases: [`BrainMethodConfig`](fiftyone.core.brain.md#fiftyone.core.brain.BrainMethodConfig)

Base class for configuring visualization methods.

* **Parameters:**
  * **embeddings_field** (*None*) – the sample field containing the embeddings,
    if one was provided
  * **points_field** (*None*) – the name of a field in which to store the
    visualization points, if requested
  * **similarity_index** (*None*) – the similarity index containing the
    embeddings, if one was provided
  * **model** (*None*) – the [`fiftyone.core.models.Model`](fiftyone.core.models.md#fiftyone.core.models.Model) or name of the
    zoo model that was used to compute embeddings, if known
  * **model_kwargs** (*None*) – a dictionary of optional keyword arguments to pass
    to the model’s `Config` when a model name is provided
  * **patches_field** (*None*) – the sample field defining the patches being
    analyzed, if any
  * **num_dims** (*2*) – the dimension of the visualization space

**Attributes:**

| [`type`](#fiftyone.brain.visualization.VisualizationConfig.type)       | The type of run.                                        |
|------------------------------------------------------------------------|---------------------------------------------------------|
| [`cls`](#fiftyone.brain.visualization.VisualizationConfig.cls)         | The fully-qualified name of this `BaseRunConfig` class. |
| [`method`](#fiftyone.brain.visualization.VisualizationConfig.method)   | The name of the method.                                 |
| [`run_cls`](#fiftyone.brain.visualization.VisualizationConfig.run_cls) | The `BaseRun` class associated with this config.        |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.VisualizationConfig.attributes)()                                                 | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.VisualizationConfig.serialize).   |
|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
| [`base_config_cls`](#fiftyone.brain.visualization.VisualizationConfig.base_config_cls)(type)                                   | Returns the config class for the given run type.                                                                                                |
| [`build`](#fiftyone.brain.visualization.VisualizationConfig.build)()                                                           | Builds the `BaseRun` instance associated with this config.                                                                                      |
| [`builder`](#fiftyone.brain.visualization.VisualizationConfig.builder)()                                                       | Returns a ConfigBuilder instance for this class.                                                                                                |
| [`copy`](#fiftyone.brain.visualization.VisualizationConfig.copy)()                                                             | Returns a deep copy of the object.                                                                                                              |
| [`custom_attributes`](#fiftyone.brain.visualization.VisualizationConfig.custom_attributes)([dynamic, private])                 | Returns a customizable list of class attributes.                                                                                                |
| [`default`](#fiftyone.brain.visualization.VisualizationConfig.default)()                                                       | Returns the default config instance.                                                                                                            |
| [`from_dict`](#fiftyone.brain.visualization.VisualizationConfig.from_dict)(d)                                                  | Constructs a `BaseRunConfig` from a serialized JSON dict representation of it.                                                                  |
| [`from_json`](#fiftyone.brain.visualization.VisualizationConfig.from_json)(path, \*args, \*\*kwargs)                           | Constructs a Serializable object from a JSON file.                                                                                              |
| [`from_kwargs`](#fiftyone.brain.visualization.VisualizationConfig.from_kwargs)(\*\*kwargs)                                     | Constructs a Config object from keyword arguments.                                                                                              |
| [`from_str`](#fiftyone.brain.visualization.VisualizationConfig.from_str)(s, \*args, \*\*kwargs)                                | Constructs a Serializable object from a JSON string.                                                                                            |
| [`get_class_name`](#fiftyone.brain.visualization.VisualizationConfig.get_class_name)()                                         | Returns the fully-qualified class name string of this object.                                                                                   |
| [`load_credentials`](#fiftyone.brain.visualization.VisualizationConfig.load_credentials)(\*\*kwargs)                           | Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.                                               |
| [`load_default`](#fiftyone.brain.visualization.VisualizationConfig.load_default)()                                             | Loads the default config instance from file.                                                                                                    |
| [`parse_array`](#fiftyone.brain.visualization.VisualizationConfig.parse_array)(d, key[, default])                              | Parses a raw array attribute.                                                                                                                   |
| [`parse_bool`](#fiftyone.brain.visualization.VisualizationConfig.parse_bool)(d, key[, default])                                | Parses a boolean value.                                                                                                                         |
| [`parse_categorical`](#fiftyone.brain.visualization.VisualizationConfig.parse_categorical)(d, key, choices[, default])         | Parses a categorical JSON field, which must take a value from among the given choices.                                                          |
| [`parse_dict`](#fiftyone.brain.visualization.VisualizationConfig.parse_dict)(d, key[, default])                                | Parses a dictionary attribute.                                                                                                                  |
| [`parse_int`](#fiftyone.brain.visualization.VisualizationConfig.parse_int)(d, key[, default])                                  | Parses an integer attribute.                                                                                                                    |
| [`parse_mutually_exclusive_fields`](#fiftyone.brain.visualization.VisualizationConfig.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`](#fiftyone.brain.visualization.VisualizationConfig.parse_number)(d, key[, default])                            | Parses a number attribute.                                                                                                                      |
| [`parse_object`](#fiftyone.brain.visualization.VisualizationConfig.parse_object)(d, key, cls[, default])                       | Parses an object attribute.                                                                                                                     |
| [`parse_object_array`](#fiftyone.brain.visualization.VisualizationConfig.parse_object_array)(d, key, cls[, default])           | Parses an array of objects.                                                                                                                     |
| [`parse_object_dict`](#fiftyone.brain.visualization.VisualizationConfig.parse_object_dict)(d, key, cls[, default])             | Parses a dictionary whose values are objects.                                                                                                   |
| [`parse_path`](#fiftyone.brain.visualization.VisualizationConfig.parse_path)(d, key[, default])                                | Parses a path attribute.                                                                                                                        |
| [`parse_raw`](#fiftyone.brain.visualization.VisualizationConfig.parse_raw)(d, key[, default])                                  | Parses a raw (arbitrary) JSON field.                                                                                                            |
| [`parse_string`](#fiftyone.brain.visualization.VisualizationConfig.parse_string)(d, key[, default])                            | Parses a string attribute.                                                                                                                      |
| [`serialize`](#fiftyone.brain.visualization.VisualizationConfig.serialize)([reflective])                                       | Serializes the object into a dictionary.                                                                                                        |
| [`to_str`](#fiftyone.brain.visualization.VisualizationConfig.to_str)([pretty_print])                                           | Returns a string representation of this object.                                                                                                 |
| [`validate_all_or_nothing_fields`](#fiftyone.brain.visualization.VisualizationConfig.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`](#fiftyone.brain.visualization.VisualizationConfig.write_json)(path[, pretty_print])                             | Serializes the object and writes it to disk.                                                                                                    |

#### *property* type

The type of run.

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.VisualizationConfig.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.

#### *property* method

The name of the method.

#### *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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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

#### *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**](fiftyone.zoo.md#fiftyone.zoo.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.brain.visualization.Visualization(config)

Bases: [`BrainMethod`](fiftyone.core.brain.md#fiftyone.core.brain.BrainMethod)

**Attributes:**

| [`SUPPORTS_UPDATES`](#fiftyone.brain.visualization.Visualization.SUPPORTS_UPDATES)   |    |
|--------------------------------------------------------------------------------------|----|

**Methods:**

| [`fit_reducer`](#fiftyone.brain.visualization.Visualization.fit_reducer)(embeddings)                           |                                                                                                    |
|----------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| [`get_fields`](#fiftyone.brain.visualization.Visualization.get_fields)(samples, brain_key)                     | Gets the fields that were involved in the given run.                                               |
| [`rename`](#fiftyone.brain.visualization.Visualization.rename)(samples, key, new_key)                          | Performs any necessary operations required to rename this run's key.                               |
| [`cleanup`](#fiftyone.brain.visualization.Visualization.cleanup)(samples, key)                                 | Cleans up the results of the run with the given key from the collection.                           |
| [`delete_run`](#fiftyone.brain.visualization.Visualization.delete_run)(samples, key[, cleanup])                | Deletes the results associated with the given run key from the collection.                         |
| [`delete_runs`](#fiftyone.brain.visualization.Visualization.delete_runs)(samples[, cleanup])                   | Deletes all runs from the collection.                                                              |
| [`ensure_requirements`](#fiftyone.brain.visualization.Visualization.ensure_requirements)()                     | Ensures that any necessary packages to execute this run are installed.                             |
| [`ensure_usage_requirements`](#fiftyone.brain.visualization.Visualization.ensure_usage_requirements)()         | Ensures that any necessary packages to use existing results for this run are installed.            |
| [`from_config`](#fiftyone.brain.visualization.Visualization.from_config)(config)                               | Instantiates a Configurable class from a <cls>Config instance.                                     |
| [`from_dict`](#fiftyone.brain.visualization.Visualization.from_dict)(d)                                        | Instantiates a Configurable class from a <cls>Config dict.                                         |
| [`from_json`](#fiftyone.brain.visualization.Visualization.from_json)(json_path)                                | Instantiates a Configurable class from a <cls>Config JSON file.                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.Visualization.from_kwargs)(\*\*kwargs)                           | Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config. |
| [`get_run_info`](#fiftyone.brain.visualization.Visualization.get_run_info)(samples, key)                       | Gets the `BaseRunInfo` for the given key on the collection.                                        |
| [`has_cached_run_results`](#fiftyone.brain.visualization.Visualization.has_cached_run_results)(samples, key)   | Determines whether `BaseRunResults` for the given key are cached on the collection.                |
| [`list_runs`](#fiftyone.brain.visualization.Visualization.list_runs)(samples[, type, method])                  | Returns the list of run keys on the given collection.                                              |
| [`load_run_results`](#fiftyone.brain.visualization.Visualization.load_run_results)(samples, key[, cache, ...]) | Loads the `BaseRunResults` for the given key on the collection.                                    |
| [`load_run_view`](#fiftyone.brain.visualization.Visualization.load_run_view)(samples, key[, select_fields])    | Loads the view on which the specified run was performed.                                           |
| [`parse`](#fiftyone.brain.visualization.Visualization.parse)(class_name[, module_name])                        | Parses a Configurable subclass name string.                                                        |
| [`register_run`](#fiftyone.brain.visualization.Visualization.register_run)(samples, key[, overwrite, cleanup]) | Registers a run of this method under the given key on the given collection.                        |
| [`run_info_cls`](#fiftyone.brain.visualization.Visualization.run_info_cls)()                                   | The `BaseRunInfo` class associated with this class.                                                |
| [`save_run_info`](#fiftyone.brain.visualization.Visualization.save_run_info)(samples, run_info[, ...])         | Saves the run information on the collection.                                                       |
| [`save_run_results`](#fiftyone.brain.visualization.Visualization.save_run_results)(samples, key, run_results)  | Saves the run results on the collection.                                                           |
| [`update_run_config`](#fiftyone.brain.visualization.Visualization.update_run_config)(samples, key, config)     | Updates the `BaseRunConfig` for the given run on the collection.                                   |
| [`update_run_key`](#fiftyone.brain.visualization.Visualization.update_run_key)(samples, key, new_key)          | Replaces the key for the given run with a new key.                                                 |
| [`validate`](#fiftyone.brain.visualization.Visualization.validate)(config)                                     | Validates that the given config is an instance of <cls>Config.                                     |
| [`validate_run`](#fiftyone.brain.visualization.Visualization.validate_run)(samples, key[, overwrite])          | Validates that the collection can accept this run.                                                 |

#### SUPPORTS_UPDATES *= False*

#### fit_reducer(embeddings)

#### get_fields(samples, brain_key)

Gets the fields that were involved in the given run.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
* **Returns:**
  a list of fields

#### rename(samples, key, new_key)

Performs any necessary operations required to rename this run’s key.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **new_key** – a new run key

#### cleanup(samples, key)

Cleans up the results of the run with the given key from the
collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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

#### *classmethod* get_run_info(samples, key)

Gets the `BaseRunInfo` for the given key on the collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **type** (*None*) – 

    a specific run type to match, which can be:
    - a string [`fiftyone.core.runs.BaseRunConfig.type`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRunConfig.type)
    - a [`fiftyone.core.runs.BaseRun`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRun) class or its
      fully-qualified class name string
  * **method** (*None*) – a specific
    [`fiftyone.core.runs.BaseRunConfig.method`](fiftyone.core.runs.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **select_fields** (*False*) – whether to exclude fields involved in other
    runs of the same type
* **Returns:**
  a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)

#### *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](fiftyone.brain.internal.core.elasticsearch.md#fiftyone.brain.internal.core.elasticsearch.ElasticsearchSimilarityConfig.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`](fiftyone.core.collections.md#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

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **run_results** – a `BaseRunResults`, or None
  * **overwrite** (*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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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.brain.visualization.UMAPVisualizationConfig(embeddings_field=None, points_field=None, similarity_index=None, model=None, model_kwargs=None, patches_field=None, num_dims=2, num_neighbors=15, metric='euclidean', min_dist=0.1, seed=None, verbose=True, \*\*kwargs)

Bases: [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig)

Configuration for Uniform Manifold Approximation and Projection (UMAP)
embedding visualization.

See [https://github.com/lmcinnes/umap](https://github.com/lmcinnes/umap) for more information about the
supported parameters.

* **Parameters:**
  * **embeddings_field** (*None*) – the sample field containing the embeddings,
    if one was provided
  * **points_field** (*None*) – the name of a field in which to store the
    visualization points, if requested
  * **similarity_index** (*None*) – the similarity index containing the
    embeddings, if one was provided
  * **model** (*None*) – the [`fiftyone.core.models.Model`](fiftyone.core.models.md#fiftyone.core.models.Model) or name of the
    zoo model that was used to compute embeddings, if known
  * **model_kwargs** (*None*) – a dictionary of optional keyword arguments to pass
    to the model’s `Config` when a model name is provided
  * **patches_field** (*None*) – the sample field defining the patches being
    analyzed, if any
  * **num_dims** (*2*) – the dimension of the visualization space
  * **num_neighbors** (*15*) – the number of neighboring points used in local
    approximations of manifold structure. Larger values will result in
    more global structure being preserved at the loss of detailed local
    structure. Typical values are in `[5, 50]`
  * **metric** ( *"euclidean"*) – the metric to use when calculating distance
    between embeddings. See the UMAP documentation for supported values
  * **min_dist** (*0.1*) – the effective minimum distance between embedded
    points. This controls how tightly the embedding is allowed compress
    points together. Larger values ensure embedded points are more
    evenly distributed, while smaller values allow the algorithm to
    optimise more accurately with regard to local structure. Typical
    values are in `[0.001, 0.5]`
  * **seed** (*None*) – a random seed
  * **verbose** (*True*) – whether to log progress

**Attributes:**

| [`method`](#fiftyone.brain.visualization.UMAPVisualizationConfig.method)   | The name of the method.                                 |
|----------------------------------------------------------------------------|---------------------------------------------------------|
| [`cls`](#fiftyone.brain.visualization.UMAPVisualizationConfig.cls)         | The fully-qualified name of this `BaseRunConfig` class. |
| [`run_cls`](#fiftyone.brain.visualization.UMAPVisualizationConfig.run_cls) | The `BaseRun` class associated with this config.        |
| [`type`](#fiftyone.brain.visualization.UMAPVisualizationConfig.type)       | The type of run.                                        |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.UMAPVisualizationConfig.attributes)()                                                 | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.UMAPVisualizationConfig.serialize).   |
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
| [`base_config_cls`](#fiftyone.brain.visualization.UMAPVisualizationConfig.base_config_cls)(type)                                   | Returns the config class for the given run type.                                                                                                    |
| [`build`](#fiftyone.brain.visualization.UMAPVisualizationConfig.build)()                                                           | Builds the `BaseRun` instance associated with this config.                                                                                          |
| [`builder`](#fiftyone.brain.visualization.UMAPVisualizationConfig.builder)()                                                       | Returns a ConfigBuilder instance for this class.                                                                                                    |
| [`copy`](#fiftyone.brain.visualization.UMAPVisualizationConfig.copy)()                                                             | Returns a deep copy of the object.                                                                                                                  |
| [`custom_attributes`](#fiftyone.brain.visualization.UMAPVisualizationConfig.custom_attributes)([dynamic, private])                 | Returns a customizable list of class attributes.                                                                                                    |
| [`default`](#fiftyone.brain.visualization.UMAPVisualizationConfig.default)()                                                       | Returns the default config instance.                                                                                                                |
| [`from_dict`](#fiftyone.brain.visualization.UMAPVisualizationConfig.from_dict)(d)                                                  | Constructs a `BaseRunConfig` from a serialized JSON dict representation of it.                                                                      |
| [`from_json`](#fiftyone.brain.visualization.UMAPVisualizationConfig.from_json)(path, \*args, \*\*kwargs)                           | Constructs a Serializable object from a JSON file.                                                                                                  |
| [`from_kwargs`](#fiftyone.brain.visualization.UMAPVisualizationConfig.from_kwargs)(\*\*kwargs)                                     | Constructs a Config object from keyword arguments.                                                                                                  |
| [`from_str`](#fiftyone.brain.visualization.UMAPVisualizationConfig.from_str)(s, \*args, \*\*kwargs)                                | Constructs a Serializable object from a JSON string.                                                                                                |
| [`get_class_name`](#fiftyone.brain.visualization.UMAPVisualizationConfig.get_class_name)()                                         | Returns the fully-qualified class name string of this object.                                                                                       |
| [`load_credentials`](#fiftyone.brain.visualization.UMAPVisualizationConfig.load_credentials)(\*\*kwargs)                           | Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.                                                   |
| [`load_default`](#fiftyone.brain.visualization.UMAPVisualizationConfig.load_default)()                                             | Loads the default config instance from file.                                                                                                        |
| [`parse_array`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_array)(d, key[, default])                              | Parses a raw array attribute.                                                                                                                       |
| [`parse_bool`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_bool)(d, key[, default])                                | Parses a boolean value.                                                                                                                             |
| [`parse_categorical`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_categorical)(d, key, choices[, default])         | Parses a categorical JSON field, which must take a value from among the given choices.                                                              |
| [`parse_dict`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_dict)(d, key[, default])                                | Parses a dictionary attribute.                                                                                                                      |
| [`parse_int`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_int)(d, key[, default])                                  | Parses an integer attribute.                                                                                                                        |
| [`parse_mutually_exclusive_fields`](#fiftyone.brain.visualization.UMAPVisualizationConfig.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`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_number)(d, key[, default])                            | Parses a number attribute.                                                                                                                          |
| [`parse_object`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_object)(d, key, cls[, default])                       | Parses an object attribute.                                                                                                                         |
| [`parse_object_array`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_object_array)(d, key, cls[, default])           | Parses an array of objects.                                                                                                                         |
| [`parse_object_dict`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_object_dict)(d, key, cls[, default])             | Parses a dictionary whose values are objects.                                                                                                       |
| [`parse_path`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_path)(d, key[, default])                                | Parses a path attribute.                                                                                                                            |
| [`parse_raw`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_raw)(d, key[, default])                                  | Parses a raw (arbitrary) JSON field.                                                                                                                |
| [`parse_string`](#fiftyone.brain.visualization.UMAPVisualizationConfig.parse_string)(d, key[, default])                            | Parses a string attribute.                                                                                                                          |
| [`serialize`](#fiftyone.brain.visualization.UMAPVisualizationConfig.serialize)([reflective])                                       | Serializes the object into a dictionary.                                                                                                            |
| [`to_str`](#fiftyone.brain.visualization.UMAPVisualizationConfig.to_str)([pretty_print])                                           | Returns a string representation of this object.                                                                                                     |
| [`validate_all_or_nothing_fields`](#fiftyone.brain.visualization.UMAPVisualizationConfig.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`](#fiftyone.brain.visualization.UMAPVisualizationConfig.write_json)(path[, pretty_print])                             | Serializes the object and writes it to disk.                                                                                                        |

#### *property* method

The name of the method.

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.UMAPVisualizationConfig.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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.brain.visualization.UMAPVisualization(config)

Bases: [`Visualization`](#fiftyone.brain.visualization.Visualization)

**Attributes:**

| [`SUPPORTS_UPDATES`](#fiftyone.brain.visualization.UMAPVisualization.SUPPORTS_UPDATES)   |    |
|------------------------------------------------------------------------------------------|----|

**Methods:**

| [`ensure_requirements`](#fiftyone.brain.visualization.UMAPVisualization.ensure_requirements)()                     | Ensures that any necessary packages to execute this run are installed.                             |
|--------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| [`fit_reducer`](#fiftyone.brain.visualization.UMAPVisualization.fit_reducer)(embeddings)                           |                                                                                                    |
| [`cleanup`](#fiftyone.brain.visualization.UMAPVisualization.cleanup)(samples, key)                                 | Cleans up the results of the run with the given key from the collection.                           |
| [`delete_run`](#fiftyone.brain.visualization.UMAPVisualization.delete_run)(samples, key[, cleanup])                | Deletes the results associated with the given run key from the collection.                         |
| [`delete_runs`](#fiftyone.brain.visualization.UMAPVisualization.delete_runs)(samples[, cleanup])                   | Deletes all runs from the collection.                                                              |
| [`ensure_usage_requirements`](#fiftyone.brain.visualization.UMAPVisualization.ensure_usage_requirements)()         | Ensures that any necessary packages to use existing results for this run are installed.            |
| [`from_config`](#fiftyone.brain.visualization.UMAPVisualization.from_config)(config)                               | Instantiates a Configurable class from a <cls>Config instance.                                     |
| [`from_dict`](#fiftyone.brain.visualization.UMAPVisualization.from_dict)(d)                                        | Instantiates a Configurable class from a <cls>Config dict.                                         |
| [`from_json`](#fiftyone.brain.visualization.UMAPVisualization.from_json)(json_path)                                | Instantiates a Configurable class from a <cls>Config JSON file.                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.UMAPVisualization.from_kwargs)(\*\*kwargs)                           | Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config. |
| [`get_fields`](#fiftyone.brain.visualization.UMAPVisualization.get_fields)(samples, brain_key)                     | Gets the fields that were involved in the given run.                                               |
| [`get_run_info`](#fiftyone.brain.visualization.UMAPVisualization.get_run_info)(samples, key)                       | Gets the `BaseRunInfo` for the given key on the collection.                                        |
| [`has_cached_run_results`](#fiftyone.brain.visualization.UMAPVisualization.has_cached_run_results)(samples, key)   | Determines whether `BaseRunResults` for the given key are cached on the collection.                |
| [`list_runs`](#fiftyone.brain.visualization.UMAPVisualization.list_runs)(samples[, type, method])                  | Returns the list of run keys on the given collection.                                              |
| [`load_run_results`](#fiftyone.brain.visualization.UMAPVisualization.load_run_results)(samples, key[, cache, ...]) | Loads the `BaseRunResults` for the given key on the collection.                                    |
| [`load_run_view`](#fiftyone.brain.visualization.UMAPVisualization.load_run_view)(samples, key[, select_fields])    | Loads the view on which the specified run was performed.                                           |
| [`parse`](#fiftyone.brain.visualization.UMAPVisualization.parse)(class_name[, module_name])                        | Parses a Configurable subclass name string.                                                        |
| [`register_run`](#fiftyone.brain.visualization.UMAPVisualization.register_run)(samples, key[, overwrite, cleanup]) | Registers a run of this method under the given key on the given collection.                        |
| [`rename`](#fiftyone.brain.visualization.UMAPVisualization.rename)(samples, key, new_key)                          | Performs any necessary operations required to rename this run's key.                               |
| [`run_info_cls`](#fiftyone.brain.visualization.UMAPVisualization.run_info_cls)()                                   | The `BaseRunInfo` class associated with this class.                                                |
| [`save_run_info`](#fiftyone.brain.visualization.UMAPVisualization.save_run_info)(samples, run_info[, ...])         | Saves the run information on the collection.                                                       |
| [`save_run_results`](#fiftyone.brain.visualization.UMAPVisualization.save_run_results)(samples, key, run_results)  | Saves the run results on the collection.                                                           |
| [`update_run_config`](#fiftyone.brain.visualization.UMAPVisualization.update_run_config)(samples, key, config)     | Updates the `BaseRunConfig` for the given run on the collection.                                   |
| [`update_run_key`](#fiftyone.brain.visualization.UMAPVisualization.update_run_key)(samples, key, new_key)          | Replaces the key for the given run with a new key.                                                 |
| [`validate`](#fiftyone.brain.visualization.UMAPVisualization.validate)(config)                                     | Validates that the given config is an instance of <cls>Config.                                     |
| [`validate_run`](#fiftyone.brain.visualization.UMAPVisualization.validate_run)(samples, key[, overwrite])          | Validates that the collection can accept this run.                                                 |

#### SUPPORTS_UPDATES *= True*

#### ensure_requirements()

Ensures that any necessary packages to execute this run are
installed.

Runs should respect `fiftyone.config.requirement_error_level` when
handling errors.

#### fit_reducer(embeddings)

#### cleanup(samples, key)

Cleans up the results of the run with the given key from the
collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **cleanup** (*True*) – whether to execute the run’s
    `BaseRun.cleanup()` methods

#### 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_fields(samples, brain_key)

Gets the fields that were involved in the given run.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **type** (*None*) – 

    a specific run type to match, which can be:
    - a string [`fiftyone.core.runs.BaseRunConfig.type`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRunConfig.type)
    - a [`fiftyone.core.runs.BaseRun`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRun) class or its
      fully-qualified class name string
  * **method** (*None*) – a specific
    [`fiftyone.core.runs.BaseRunConfig.method`](fiftyone.core.runs.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **select_fields** (*False*) – whether to exclude fields involved in other
    runs of the same type
* **Returns:**
  a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)

#### *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](fiftyone.brain.internal.core.elasticsearch.md#fiftyone.brain.internal.core.elasticsearch.ElasticsearchSimilarityConfig.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`](fiftyone.core.collections.md#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

#### rename(samples, key, new_key)

Performs any necessary operations required to rename this run’s key.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **new_key** – a new run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **run_results** – a `BaseRunResults`, or None
  * **overwrite** (*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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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.brain.visualization.TSNEVisualizationConfig(embeddings_field=None, points_field=None, similarity_index=None, model=None, model_kwargs=None, patches_field=None, num_dims=2, pca_dims=50, svd_solver='randomized', metric='euclidean', perplexity=30.0, learning_rate=200.0, max_iters=1000, seed=None, verbose=True, \*\*kwargs)

Bases: [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig)

Configuration for t-distributed Stochastic Neighbor Embedding (t-SNE)
visualization.

See [https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html](https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html)
for more information about the supported parameters.

* **Parameters:**
  * **embeddings_field** (*None*) – the sample field containing the embeddings,
    if one was provided
  * **points_field** (*None*) – the name of a field in which to store the
    visualization points, if requested
  * **similarity_index** (*None*) – the similarity index containing the
    embeddings, if one was provided
  * **model** (*None*) – the [`fiftyone.core.models.Model`](fiftyone.core.models.md#fiftyone.core.models.Model) or name of the
    zoo model that was used to compute embeddings, if known
  * **model_kwargs** (*None*) – a dictionary of optional keyword arguments to pass
    to the model’s `Config` when a model name is provided
  * **patches_field** (*None*) – the sample field defining the patches being
    analyzed, if any
  * **num_dims** (*2*) – the dimension of the visualization space
  * **pca_dims** (*50*) – the number of PCA dimensions to compute prior to running
    t-SNE. It is highly recommended to reduce the number of dimensions
    to a reasonable number (e.g. 50) before running t-SNE, as this will
    suppress some noise and speed up the computation of pairwise
    distances between samples
  * **svd_solver** ( *"randomized"*) – the SVD solver to use when performing PCA.
    Consult the sklearn docmentation for details
  * **metric** ( *"euclidean"*) – the metric to use when calculating distance
    between embeddings. Must be a supported value for the `metric`
    argument of `scipy.spatial.distance.pdist`
  * **perplexity** (*30.0*) – the perplexity to use. Perplexity is related to the
    number of nearest neighbors that is used in other manifold learning
    algorithms. Larger datasets usually require a larger perplexity.
    Typical values are in `[5, 50]`
  * **learning_rate** (*200.0*) – the learning rate to use. Typical values are
    in `[10, 1000]`. If the learning rate is too high, the data may
    look like a ball with any point approximately equidistant from its
    nearest neighbours. If the learning rate is too low, most points
    may look compressed in a dense cloud with few outliers. If the cost
    function gets stuck in a bad local minimum increasing the learning
    rate may help
  * **max_iters** (*1000*) – the maximum number of iterations to run. Should be at
    least 250
  * **seed** (*None*) – a random seed
  * **verbose** (*True*) – whether to log progress

**Attributes:**

| [`method`](#fiftyone.brain.visualization.TSNEVisualizationConfig.method)   | The name of the method.                                 |
|----------------------------------------------------------------------------|---------------------------------------------------------|
| [`cls`](#fiftyone.brain.visualization.TSNEVisualizationConfig.cls)         | The fully-qualified name of this `BaseRunConfig` class. |
| [`run_cls`](#fiftyone.brain.visualization.TSNEVisualizationConfig.run_cls) | The `BaseRun` class associated with this config.        |
| [`type`](#fiftyone.brain.visualization.TSNEVisualizationConfig.type)       | The type of run.                                        |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.TSNEVisualizationConfig.attributes)()                                                 | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.TSNEVisualizationConfig.serialize).   |
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
| [`base_config_cls`](#fiftyone.brain.visualization.TSNEVisualizationConfig.base_config_cls)(type)                                   | Returns the config class for the given run type.                                                                                                    |
| [`build`](#fiftyone.brain.visualization.TSNEVisualizationConfig.build)()                                                           | Builds the `BaseRun` instance associated with this config.                                                                                          |
| [`builder`](#fiftyone.brain.visualization.TSNEVisualizationConfig.builder)()                                                       | Returns a ConfigBuilder instance for this class.                                                                                                    |
| [`copy`](#fiftyone.brain.visualization.TSNEVisualizationConfig.copy)()                                                             | Returns a deep copy of the object.                                                                                                                  |
| [`custom_attributes`](#fiftyone.brain.visualization.TSNEVisualizationConfig.custom_attributes)([dynamic, private])                 | Returns a customizable list of class attributes.                                                                                                    |
| [`default`](#fiftyone.brain.visualization.TSNEVisualizationConfig.default)()                                                       | Returns the default config instance.                                                                                                                |
| [`from_dict`](#fiftyone.brain.visualization.TSNEVisualizationConfig.from_dict)(d)                                                  | Constructs a `BaseRunConfig` from a serialized JSON dict representation of it.                                                                      |
| [`from_json`](#fiftyone.brain.visualization.TSNEVisualizationConfig.from_json)(path, \*args, \*\*kwargs)                           | Constructs a Serializable object from a JSON file.                                                                                                  |
| [`from_kwargs`](#fiftyone.brain.visualization.TSNEVisualizationConfig.from_kwargs)(\*\*kwargs)                                     | Constructs a Config object from keyword arguments.                                                                                                  |
| [`from_str`](#fiftyone.brain.visualization.TSNEVisualizationConfig.from_str)(s, \*args, \*\*kwargs)                                | Constructs a Serializable object from a JSON string.                                                                                                |
| [`get_class_name`](#fiftyone.brain.visualization.TSNEVisualizationConfig.get_class_name)()                                         | Returns the fully-qualified class name string of this object.                                                                                       |
| [`load_credentials`](#fiftyone.brain.visualization.TSNEVisualizationConfig.load_credentials)(\*\*kwargs)                           | Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.                                                   |
| [`load_default`](#fiftyone.brain.visualization.TSNEVisualizationConfig.load_default)()                                             | Loads the default config instance from file.                                                                                                        |
| [`parse_array`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_array)(d, key[, default])                              | Parses a raw array attribute.                                                                                                                       |
| [`parse_bool`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_bool)(d, key[, default])                                | Parses a boolean value.                                                                                                                             |
| [`parse_categorical`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_categorical)(d, key, choices[, default])         | Parses a categorical JSON field, which must take a value from among the given choices.                                                              |
| [`parse_dict`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_dict)(d, key[, default])                                | Parses a dictionary attribute.                                                                                                                      |
| [`parse_int`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_int)(d, key[, default])                                  | Parses an integer attribute.                                                                                                                        |
| [`parse_mutually_exclusive_fields`](#fiftyone.brain.visualization.TSNEVisualizationConfig.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`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_number)(d, key[, default])                            | Parses a number attribute.                                                                                                                          |
| [`parse_object`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_object)(d, key, cls[, default])                       | Parses an object attribute.                                                                                                                         |
| [`parse_object_array`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_object_array)(d, key, cls[, default])           | Parses an array of objects.                                                                                                                         |
| [`parse_object_dict`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_object_dict)(d, key, cls[, default])             | Parses a dictionary whose values are objects.                                                                                                       |
| [`parse_path`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_path)(d, key[, default])                                | Parses a path attribute.                                                                                                                            |
| [`parse_raw`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_raw)(d, key[, default])                                  | Parses a raw (arbitrary) JSON field.                                                                                                                |
| [`parse_string`](#fiftyone.brain.visualization.TSNEVisualizationConfig.parse_string)(d, key[, default])                            | Parses a string attribute.                                                                                                                          |
| [`serialize`](#fiftyone.brain.visualization.TSNEVisualizationConfig.serialize)([reflective])                                       | Serializes the object into a dictionary.                                                                                                            |
| [`to_str`](#fiftyone.brain.visualization.TSNEVisualizationConfig.to_str)([pretty_print])                                           | Returns a string representation of this object.                                                                                                     |
| [`validate_all_or_nothing_fields`](#fiftyone.brain.visualization.TSNEVisualizationConfig.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`](#fiftyone.brain.visualization.TSNEVisualizationConfig.write_json)(path[, pretty_print])                             | Serializes the object and writes it to disk.                                                                                                        |

#### *property* method

The name of the method.

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.TSNEVisualizationConfig.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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.brain.visualization.TSNEVisualization(config)

Bases: [`Visualization`](#fiftyone.brain.visualization.Visualization)

**Methods:**

| [`fit_reducer`](#fiftyone.brain.visualization.TSNEVisualization.fit_reducer)(embeddings)                           |                                                                                                    |
|--------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| [`cleanup`](#fiftyone.brain.visualization.TSNEVisualization.cleanup)(samples, key)                                 | Cleans up the results of the run with the given key from the collection.                           |
| [`delete_run`](#fiftyone.brain.visualization.TSNEVisualization.delete_run)(samples, key[, cleanup])                | Deletes the results associated with the given run key from the collection.                         |
| [`delete_runs`](#fiftyone.brain.visualization.TSNEVisualization.delete_runs)(samples[, cleanup])                   | Deletes all runs from the collection.                                                              |
| [`ensure_requirements`](#fiftyone.brain.visualization.TSNEVisualization.ensure_requirements)()                     | Ensures that any necessary packages to execute this run are installed.                             |
| [`ensure_usage_requirements`](#fiftyone.brain.visualization.TSNEVisualization.ensure_usage_requirements)()         | Ensures that any necessary packages to use existing results for this run are installed.            |
| [`from_config`](#fiftyone.brain.visualization.TSNEVisualization.from_config)(config)                               | Instantiates a Configurable class from a <cls>Config instance.                                     |
| [`from_dict`](#fiftyone.brain.visualization.TSNEVisualization.from_dict)(d)                                        | Instantiates a Configurable class from a <cls>Config dict.                                         |
| [`from_json`](#fiftyone.brain.visualization.TSNEVisualization.from_json)(json_path)                                | Instantiates a Configurable class from a <cls>Config JSON file.                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.TSNEVisualization.from_kwargs)(\*\*kwargs)                           | Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config. |
| [`get_fields`](#fiftyone.brain.visualization.TSNEVisualization.get_fields)(samples, brain_key)                     | Gets the fields that were involved in the given run.                                               |
| [`get_run_info`](#fiftyone.brain.visualization.TSNEVisualization.get_run_info)(samples, key)                       | Gets the `BaseRunInfo` for the given key on the collection.                                        |
| [`has_cached_run_results`](#fiftyone.brain.visualization.TSNEVisualization.has_cached_run_results)(samples, key)   | Determines whether `BaseRunResults` for the given key are cached on the collection.                |
| [`list_runs`](#fiftyone.brain.visualization.TSNEVisualization.list_runs)(samples[, type, method])                  | Returns the list of run keys on the given collection.                                              |
| [`load_run_results`](#fiftyone.brain.visualization.TSNEVisualization.load_run_results)(samples, key[, cache, ...]) | Loads the `BaseRunResults` for the given key on the collection.                                    |
| [`load_run_view`](#fiftyone.brain.visualization.TSNEVisualization.load_run_view)(samples, key[, select_fields])    | Loads the view on which the specified run was performed.                                           |
| [`parse`](#fiftyone.brain.visualization.TSNEVisualization.parse)(class_name[, module_name])                        | Parses a Configurable subclass name string.                                                        |
| [`register_run`](#fiftyone.brain.visualization.TSNEVisualization.register_run)(samples, key[, overwrite, cleanup]) | Registers a run of this method under the given key on the given collection.                        |
| [`rename`](#fiftyone.brain.visualization.TSNEVisualization.rename)(samples, key, new_key)                          | Performs any necessary operations required to rename this run's key.                               |
| [`run_info_cls`](#fiftyone.brain.visualization.TSNEVisualization.run_info_cls)()                                   | The `BaseRunInfo` class associated with this class.                                                |
| [`save_run_info`](#fiftyone.brain.visualization.TSNEVisualization.save_run_info)(samples, run_info[, ...])         | Saves the run information on the collection.                                                       |
| [`save_run_results`](#fiftyone.brain.visualization.TSNEVisualization.save_run_results)(samples, key, run_results)  | Saves the run results on the collection.                                                           |
| [`update_run_config`](#fiftyone.brain.visualization.TSNEVisualization.update_run_config)(samples, key, config)     | Updates the `BaseRunConfig` for the given run on the collection.                                   |
| [`update_run_key`](#fiftyone.brain.visualization.TSNEVisualization.update_run_key)(samples, key, new_key)          | Replaces the key for the given run with a new key.                                                 |
| [`validate`](#fiftyone.brain.visualization.TSNEVisualization.validate)(config)                                     | Validates that the given config is an instance of <cls>Config.                                     |
| [`validate_run`](#fiftyone.brain.visualization.TSNEVisualization.validate_run)(samples, key[, overwrite])          | Validates that the collection can accept this run.                                                 |

**Attributes:**

| [`SUPPORTS_UPDATES`](#fiftyone.brain.visualization.TSNEVisualization.SUPPORTS_UPDATES)   |    |
|------------------------------------------------------------------------------------------|----|

#### fit_reducer(embeddings)

#### SUPPORTS_UPDATES *= False*

#### cleanup(samples, key)

Cleans up the results of the run with the given key from the
collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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_fields(samples, brain_key)

Gets the fields that were involved in the given run.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **type** (*None*) – 

    a specific run type to match, which can be:
    - a string [`fiftyone.core.runs.BaseRunConfig.type`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRunConfig.type)
    - a [`fiftyone.core.runs.BaseRun`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRun) class or its
      fully-qualified class name string
  * **method** (*None*) – a specific
    [`fiftyone.core.runs.BaseRunConfig.method`](fiftyone.core.runs.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **select_fields** (*False*) – whether to exclude fields involved in other
    runs of the same type
* **Returns:**
  a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)

#### *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](fiftyone.brain.internal.core.elasticsearch.md#fiftyone.brain.internal.core.elasticsearch.ElasticsearchSimilarityConfig.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`](fiftyone.core.collections.md#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

#### rename(samples, key, new_key)

Performs any necessary operations required to rename this run’s key.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **new_key** – a new run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **run_results** – a `BaseRunResults`, or None
  * **overwrite** (*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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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.brain.visualization.PCAVisualizationConfig(embeddings_field=None, points_field=None, similarity_index=None, model=None, model_kwargs=None, patches_field=None, num_dims=2, svd_solver='randomized', seed=None, \*\*kwargs)

Bases: [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig)

Configuration for principal component analysis (PCA) embedding
visualization.

See [https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.PCA.html](https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.PCA.html)
for more information about the supported parameters.

* **Parameters:**
  * **embeddings_field** (*None*) – the sample field containing the embeddings,
    if one was provided
  * **points_field** (*None*) – the name of a field in which to store the
    visualization points, if requested
  * **similarity_index** (*None*) – the similarity index containing the
    embeddings, if one was provided
  * **model** (*None*) – the [`fiftyone.core.models.Model`](fiftyone.core.models.md#fiftyone.core.models.Model) or name of the
    zoo model that was used to compute embeddings, if known
  * **model_kwargs** (*None*) – a dictionary of optional keyword arguments to pass
    to the model’s `Config` when a model name is provided
  * **patches_field** (*None*) – the sample field defining the patches being
    analyzed, if any
  * **num_dims** (*2*) – the dimension of the visualization space
  * **svd_solver** ( *"randomized"*) – the SVD solver to use. Consult the sklearn
    docmentation for details
  * **seed** (*None*) – a random seed

**Attributes:**

| [`method`](#fiftyone.brain.visualization.PCAVisualizationConfig.method)   | The name of the method.                                 |
|---------------------------------------------------------------------------|---------------------------------------------------------|
| [`cls`](#fiftyone.brain.visualization.PCAVisualizationConfig.cls)         | The fully-qualified name of this `BaseRunConfig` class. |
| [`run_cls`](#fiftyone.brain.visualization.PCAVisualizationConfig.run_cls) | The `BaseRun` class associated with this config.        |
| [`type`](#fiftyone.brain.visualization.PCAVisualizationConfig.type)       | The type of run.                                        |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.PCAVisualizationConfig.attributes)()                                                 | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.PCAVisualizationConfig.serialize).   |
|-----------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
| [`base_config_cls`](#fiftyone.brain.visualization.PCAVisualizationConfig.base_config_cls)(type)                                   | Returns the config class for the given run type.                                                                                                   |
| [`build`](#fiftyone.brain.visualization.PCAVisualizationConfig.build)()                                                           | Builds the `BaseRun` instance associated with this config.                                                                                         |
| [`builder`](#fiftyone.brain.visualization.PCAVisualizationConfig.builder)()                                                       | Returns a ConfigBuilder instance for this class.                                                                                                   |
| [`copy`](#fiftyone.brain.visualization.PCAVisualizationConfig.copy)()                                                             | Returns a deep copy of the object.                                                                                                                 |
| [`custom_attributes`](#fiftyone.brain.visualization.PCAVisualizationConfig.custom_attributes)([dynamic, private])                 | Returns a customizable list of class attributes.                                                                                                   |
| [`default`](#fiftyone.brain.visualization.PCAVisualizationConfig.default)()                                                       | Returns the default config instance.                                                                                                               |
| [`from_dict`](#fiftyone.brain.visualization.PCAVisualizationConfig.from_dict)(d)                                                  | Constructs a `BaseRunConfig` from a serialized JSON dict representation of it.                                                                     |
| [`from_json`](#fiftyone.brain.visualization.PCAVisualizationConfig.from_json)(path, \*args, \*\*kwargs)                           | Constructs a Serializable object from a JSON file.                                                                                                 |
| [`from_kwargs`](#fiftyone.brain.visualization.PCAVisualizationConfig.from_kwargs)(\*\*kwargs)                                     | Constructs a Config object from keyword arguments.                                                                                                 |
| [`from_str`](#fiftyone.brain.visualization.PCAVisualizationConfig.from_str)(s, \*args, \*\*kwargs)                                | Constructs a Serializable object from a JSON string.                                                                                               |
| [`get_class_name`](#fiftyone.brain.visualization.PCAVisualizationConfig.get_class_name)()                                         | Returns the fully-qualified class name string of this object.                                                                                      |
| [`load_credentials`](#fiftyone.brain.visualization.PCAVisualizationConfig.load_credentials)(\*\*kwargs)                           | Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.                                                  |
| [`load_default`](#fiftyone.brain.visualization.PCAVisualizationConfig.load_default)()                                             | Loads the default config instance from file.                                                                                                       |
| [`parse_array`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_array)(d, key[, default])                              | Parses a raw array attribute.                                                                                                                      |
| [`parse_bool`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_bool)(d, key[, default])                                | Parses a boolean value.                                                                                                                            |
| [`parse_categorical`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_categorical)(d, key, choices[, default])         | Parses a categorical JSON field, which must take a value from among the given choices.                                                             |
| [`parse_dict`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_dict)(d, key[, default])                                | Parses a dictionary attribute.                                                                                                                     |
| [`parse_int`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_int)(d, key[, default])                                  | Parses an integer attribute.                                                                                                                       |
| [`parse_mutually_exclusive_fields`](#fiftyone.brain.visualization.PCAVisualizationConfig.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`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_number)(d, key[, default])                            | Parses a number attribute.                                                                                                                         |
| [`parse_object`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_object)(d, key, cls[, default])                       | Parses an object attribute.                                                                                                                        |
| [`parse_object_array`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_object_array)(d, key, cls[, default])           | Parses an array of objects.                                                                                                                        |
| [`parse_object_dict`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_object_dict)(d, key, cls[, default])             | Parses a dictionary whose values are objects.                                                                                                      |
| [`parse_path`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_path)(d, key[, default])                                | Parses a path attribute.                                                                                                                           |
| [`parse_raw`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_raw)(d, key[, default])                                  | Parses a raw (arbitrary) JSON field.                                                                                                               |
| [`parse_string`](#fiftyone.brain.visualization.PCAVisualizationConfig.parse_string)(d, key[, default])                            | Parses a string attribute.                                                                                                                         |
| [`serialize`](#fiftyone.brain.visualization.PCAVisualizationConfig.serialize)([reflective])                                       | Serializes the object into a dictionary.                                                                                                           |
| [`to_str`](#fiftyone.brain.visualization.PCAVisualizationConfig.to_str)([pretty_print])                                           | Returns a string representation of this object.                                                                                                    |
| [`validate_all_or_nothing_fields`](#fiftyone.brain.visualization.PCAVisualizationConfig.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`](#fiftyone.brain.visualization.PCAVisualizationConfig.write_json)(path[, pretty_print])                             | Serializes the object and writes it to disk.                                                                                                       |

#### *property* method

The name of the method.

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.PCAVisualizationConfig.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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.brain.visualization.PCAVisualization(config)

Bases: [`Visualization`](#fiftyone.brain.visualization.Visualization)

**Attributes:**

| [`SUPPORTS_UPDATES`](#fiftyone.brain.visualization.PCAVisualization.SUPPORTS_UPDATES)   |    |
|-----------------------------------------------------------------------------------------|----|

**Methods:**

| [`fit_reducer`](#fiftyone.brain.visualization.PCAVisualization.fit_reducer)(embeddings)                           |                                                                                                    |
|-------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| [`cleanup`](#fiftyone.brain.visualization.PCAVisualization.cleanup)(samples, key)                                 | Cleans up the results of the run with the given key from the collection.                           |
| [`delete_run`](#fiftyone.brain.visualization.PCAVisualization.delete_run)(samples, key[, cleanup])                | Deletes the results associated with the given run key from the collection.                         |
| [`delete_runs`](#fiftyone.brain.visualization.PCAVisualization.delete_runs)(samples[, cleanup])                   | Deletes all runs from the collection.                                                              |
| [`ensure_requirements`](#fiftyone.brain.visualization.PCAVisualization.ensure_requirements)()                     | Ensures that any necessary packages to execute this run are installed.                             |
| [`ensure_usage_requirements`](#fiftyone.brain.visualization.PCAVisualization.ensure_usage_requirements)()         | Ensures that any necessary packages to use existing results for this run are installed.            |
| [`from_config`](#fiftyone.brain.visualization.PCAVisualization.from_config)(config)                               | Instantiates a Configurable class from a <cls>Config instance.                                     |
| [`from_dict`](#fiftyone.brain.visualization.PCAVisualization.from_dict)(d)                                        | Instantiates a Configurable class from a <cls>Config dict.                                         |
| [`from_json`](#fiftyone.brain.visualization.PCAVisualization.from_json)(json_path)                                | Instantiates a Configurable class from a <cls>Config JSON file.                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.PCAVisualization.from_kwargs)(\*\*kwargs)                           | Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config. |
| [`get_fields`](#fiftyone.brain.visualization.PCAVisualization.get_fields)(samples, brain_key)                     | Gets the fields that were involved in the given run.                                               |
| [`get_run_info`](#fiftyone.brain.visualization.PCAVisualization.get_run_info)(samples, key)                       | Gets the `BaseRunInfo` for the given key on the collection.                                        |
| [`has_cached_run_results`](#fiftyone.brain.visualization.PCAVisualization.has_cached_run_results)(samples, key)   | Determines whether `BaseRunResults` for the given key are cached on the collection.                |
| [`list_runs`](#fiftyone.brain.visualization.PCAVisualization.list_runs)(samples[, type, method])                  | Returns the list of run keys on the given collection.                                              |
| [`load_run_results`](#fiftyone.brain.visualization.PCAVisualization.load_run_results)(samples, key[, cache, ...]) | Loads the `BaseRunResults` for the given key on the collection.                                    |
| [`load_run_view`](#fiftyone.brain.visualization.PCAVisualization.load_run_view)(samples, key[, select_fields])    | Loads the view on which the specified run was performed.                                           |
| [`parse`](#fiftyone.brain.visualization.PCAVisualization.parse)(class_name[, module_name])                        | Parses a Configurable subclass name string.                                                        |
| [`register_run`](#fiftyone.brain.visualization.PCAVisualization.register_run)(samples, key[, overwrite, cleanup]) | Registers a run of this method under the given key on the given collection.                        |
| [`rename`](#fiftyone.brain.visualization.PCAVisualization.rename)(samples, key, new_key)                          | Performs any necessary operations required to rename this run's key.                               |
| [`run_info_cls`](#fiftyone.brain.visualization.PCAVisualization.run_info_cls)()                                   | The `BaseRunInfo` class associated with this class.                                                |
| [`save_run_info`](#fiftyone.brain.visualization.PCAVisualization.save_run_info)(samples, run_info[, ...])         | Saves the run information on the collection.                                                       |
| [`save_run_results`](#fiftyone.brain.visualization.PCAVisualization.save_run_results)(samples, key, run_results)  | Saves the run results on the collection.                                                           |
| [`update_run_config`](#fiftyone.brain.visualization.PCAVisualization.update_run_config)(samples, key, config)     | Updates the `BaseRunConfig` for the given run on the collection.                                   |
| [`update_run_key`](#fiftyone.brain.visualization.PCAVisualization.update_run_key)(samples, key, new_key)          | Replaces the key for the given run with a new key.                                                 |
| [`validate`](#fiftyone.brain.visualization.PCAVisualization.validate)(config)                                     | Validates that the given config is an instance of <cls>Config.                                     |
| [`validate_run`](#fiftyone.brain.visualization.PCAVisualization.validate_run)(samples, key[, overwrite])          | Validates that the collection can accept this run.                                                 |

#### SUPPORTS_UPDATES *= True*

#### fit_reducer(embeddings)

#### cleanup(samples, key)

Cleans up the results of the run with the given key from the
collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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_fields(samples, brain_key)

Gets the fields that were involved in the given run.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **type** (*None*) – 

    a specific run type to match, which can be:
    - a string [`fiftyone.core.runs.BaseRunConfig.type`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRunConfig.type)
    - a [`fiftyone.core.runs.BaseRun`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRun) class or its
      fully-qualified class name string
  * **method** (*None*) – a specific
    [`fiftyone.core.runs.BaseRunConfig.method`](fiftyone.core.runs.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **select_fields** (*False*) – whether to exclude fields involved in other
    runs of the same type
* **Returns:**
  a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)

#### *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](fiftyone.brain.internal.core.elasticsearch.md#fiftyone.brain.internal.core.elasticsearch.ElasticsearchSimilarityConfig.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`](fiftyone.core.collections.md#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

#### rename(samples, key, new_key)

Performs any necessary operations required to rename this run’s key.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **new_key** – a new run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **run_results** – a `BaseRunResults`, or None
  * **overwrite** (*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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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.brain.visualization.ManualVisualizationConfig(patches_field=None, num_dims=2, \*\*kwargs)

Bases: [`VisualizationConfig`](#fiftyone.brain.visualization.VisualizationConfig)

Configuration for manually-provided low-dimensional visualizations.

* **Parameters:**
  * **patches_field** (*None*) – the sample field defining the patches being
    analyzed, if any
  * **num_dims** (*2*) – the dimension of the visualization space

**Attributes:**

| [`method`](#fiftyone.brain.visualization.ManualVisualizationConfig.method)   | The name of the method.                                 |
|------------------------------------------------------------------------------|---------------------------------------------------------|
| [`cls`](#fiftyone.brain.visualization.ManualVisualizationConfig.cls)         | The fully-qualified name of this `BaseRunConfig` class. |
| [`run_cls`](#fiftyone.brain.visualization.ManualVisualizationConfig.run_cls) | The `BaseRun` class associated with this config.        |
| [`type`](#fiftyone.brain.visualization.ManualVisualizationConfig.type)       | The type of run.                                        |

**Methods:**

| [`attributes`](#fiftyone.brain.visualization.ManualVisualizationConfig.attributes)()                                                 | Returns the list of class attributes that will be serialized by [`serialize()`](#fiftyone.brain.visualization.ManualVisualizationConfig.serialize).   |
|--------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
| [`base_config_cls`](#fiftyone.brain.visualization.ManualVisualizationConfig.base_config_cls)(type)                                   | Returns the config class for the given run type.                                                                                                      |
| [`build`](#fiftyone.brain.visualization.ManualVisualizationConfig.build)()                                                           | Builds the `BaseRun` instance associated with this config.                                                                                            |
| [`builder`](#fiftyone.brain.visualization.ManualVisualizationConfig.builder)()                                                       | Returns a ConfigBuilder instance for this class.                                                                                                      |
| [`copy`](#fiftyone.brain.visualization.ManualVisualizationConfig.copy)()                                                             | Returns a deep copy of the object.                                                                                                                    |
| [`custom_attributes`](#fiftyone.brain.visualization.ManualVisualizationConfig.custom_attributes)([dynamic, private])                 | Returns a customizable list of class attributes.                                                                                                      |
| [`default`](#fiftyone.brain.visualization.ManualVisualizationConfig.default)()                                                       | Returns the default config instance.                                                                                                                  |
| [`from_dict`](#fiftyone.brain.visualization.ManualVisualizationConfig.from_dict)(d)                                                  | Constructs a `BaseRunConfig` from a serialized JSON dict representation of it.                                                                        |
| [`from_json`](#fiftyone.brain.visualization.ManualVisualizationConfig.from_json)(path, \*args, \*\*kwargs)                           | Constructs a Serializable object from a JSON file.                                                                                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.ManualVisualizationConfig.from_kwargs)(\*\*kwargs)                                     | Constructs a Config object from keyword arguments.                                                                                                    |
| [`from_str`](#fiftyone.brain.visualization.ManualVisualizationConfig.from_str)(s, \*args, \*\*kwargs)                                | Constructs a Serializable object from a JSON string.                                                                                                  |
| [`get_class_name`](#fiftyone.brain.visualization.ManualVisualizationConfig.get_class_name)()                                         | Returns the fully-qualified class name string of this object.                                                                                         |
| [`load_credentials`](#fiftyone.brain.visualization.ManualVisualizationConfig.load_credentials)(\*\*kwargs)                           | Loads any necessary credentials from the given keyword arguments or the relevant FiftyOne config.                                                     |
| [`load_default`](#fiftyone.brain.visualization.ManualVisualizationConfig.load_default)()                                             | Loads the default config instance from file.                                                                                                          |
| [`parse_array`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_array)(d, key[, default])                              | Parses a raw array attribute.                                                                                                                         |
| [`parse_bool`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_bool)(d, key[, default])                                | Parses a boolean value.                                                                                                                               |
| [`parse_categorical`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_categorical)(d, key, choices[, default])         | Parses a categorical JSON field, which must take a value from among the given choices.                                                                |
| [`parse_dict`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_dict)(d, key[, default])                                | Parses a dictionary attribute.                                                                                                                        |
| [`parse_int`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_int)(d, key[, default])                                  | Parses an integer attribute.                                                                                                                          |
| [`parse_mutually_exclusive_fields`](#fiftyone.brain.visualization.ManualVisualizationConfig.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`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_number)(d, key[, default])                            | Parses a number attribute.                                                                                                                            |
| [`parse_object`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_object)(d, key, cls[, default])                       | Parses an object attribute.                                                                                                                           |
| [`parse_object_array`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_object_array)(d, key, cls[, default])           | Parses an array of objects.                                                                                                                           |
| [`parse_object_dict`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_object_dict)(d, key, cls[, default])             | Parses a dictionary whose values are objects.                                                                                                         |
| [`parse_path`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_path)(d, key[, default])                                | Parses a path attribute.                                                                                                                              |
| [`parse_raw`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_raw)(d, key[, default])                                  | Parses a raw (arbitrary) JSON field.                                                                                                                  |
| [`parse_string`](#fiftyone.brain.visualization.ManualVisualizationConfig.parse_string)(d, key[, default])                            | Parses a string attribute.                                                                                                                            |
| [`serialize`](#fiftyone.brain.visualization.ManualVisualizationConfig.serialize)([reflective])                                       | Serializes the object into a dictionary.                                                                                                              |
| [`to_str`](#fiftyone.brain.visualization.ManualVisualizationConfig.to_str)([pretty_print])                                           | Returns a string representation of this object.                                                                                                       |
| [`validate_all_or_nothing_fields`](#fiftyone.brain.visualization.ManualVisualizationConfig.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`](#fiftyone.brain.visualization.ManualVisualizationConfig.write_json)(path[, pretty_print])                             | Serializes the object and writes it to disk.                                                                                                          |

#### *property* method

The name of the method.

#### attributes()

Returns the list of class attributes that will be serialized by
[`serialize()`](#fiftyone.brain.visualization.ManualVisualizationConfig.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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**](fiftyone.zoo.md#fiftyone.zoo.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.brain.visualization.ManualVisualization(config)

Bases: [`Visualization`](#fiftyone.brain.visualization.Visualization)

**Methods:**

| [`fit_reducer`](#fiftyone.brain.visualization.ManualVisualization.fit_reducer)(embeddings)                           |                                                                                                    |
|----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| [`cleanup`](#fiftyone.brain.visualization.ManualVisualization.cleanup)(samples, key)                                 | Cleans up the results of the run with the given key from the collection.                           |
| [`delete_run`](#fiftyone.brain.visualization.ManualVisualization.delete_run)(samples, key[, cleanup])                | Deletes the results associated with the given run key from the collection.                         |
| [`delete_runs`](#fiftyone.brain.visualization.ManualVisualization.delete_runs)(samples[, cleanup])                   | Deletes all runs from the collection.                                                              |
| [`ensure_requirements`](#fiftyone.brain.visualization.ManualVisualization.ensure_requirements)()                     | Ensures that any necessary packages to execute this run are installed.                             |
| [`ensure_usage_requirements`](#fiftyone.brain.visualization.ManualVisualization.ensure_usage_requirements)()         | Ensures that any necessary packages to use existing results for this run are installed.            |
| [`from_config`](#fiftyone.brain.visualization.ManualVisualization.from_config)(config)                               | Instantiates a Configurable class from a <cls>Config instance.                                     |
| [`from_dict`](#fiftyone.brain.visualization.ManualVisualization.from_dict)(d)                                        | Instantiates a Configurable class from a <cls>Config dict.                                         |
| [`from_json`](#fiftyone.brain.visualization.ManualVisualization.from_json)(json_path)                                | Instantiates a Configurable class from a <cls>Config JSON file.                                    |
| [`from_kwargs`](#fiftyone.brain.visualization.ManualVisualization.from_kwargs)(\*\*kwargs)                           | Instantiates a Configurable class from keyword arguments defining the attributes of a <cls>Config. |
| [`get_fields`](#fiftyone.brain.visualization.ManualVisualization.get_fields)(samples, brain_key)                     | Gets the fields that were involved in the given run.                                               |
| [`get_run_info`](#fiftyone.brain.visualization.ManualVisualization.get_run_info)(samples, key)                       | Gets the `BaseRunInfo` for the given key on the collection.                                        |
| [`has_cached_run_results`](#fiftyone.brain.visualization.ManualVisualization.has_cached_run_results)(samples, key)   | Determines whether `BaseRunResults` for the given key are cached on the collection.                |
| [`list_runs`](#fiftyone.brain.visualization.ManualVisualization.list_runs)(samples[, type, method])                  | Returns the list of run keys on the given collection.                                              |
| [`load_run_results`](#fiftyone.brain.visualization.ManualVisualization.load_run_results)(samples, key[, cache, ...]) | Loads the `BaseRunResults` for the given key on the collection.                                    |
| [`load_run_view`](#fiftyone.brain.visualization.ManualVisualization.load_run_view)(samples, key[, select_fields])    | Loads the view on which the specified run was performed.                                           |
| [`parse`](#fiftyone.brain.visualization.ManualVisualization.parse)(class_name[, module_name])                        | Parses a Configurable subclass name string.                                                        |
| [`register_run`](#fiftyone.brain.visualization.ManualVisualization.register_run)(samples, key[, overwrite, cleanup]) | Registers a run of this method under the given key on the given collection.                        |
| [`rename`](#fiftyone.brain.visualization.ManualVisualization.rename)(samples, key, new_key)                          | Performs any necessary operations required to rename this run's key.                               |
| [`run_info_cls`](#fiftyone.brain.visualization.ManualVisualization.run_info_cls)()                                   | The `BaseRunInfo` class associated with this class.                                                |
| [`save_run_info`](#fiftyone.brain.visualization.ManualVisualization.save_run_info)(samples, run_info[, ...])         | Saves the run information on the collection.                                                       |
| [`save_run_results`](#fiftyone.brain.visualization.ManualVisualization.save_run_results)(samples, key, run_results)  | Saves the run results on the collection.                                                           |
| [`update_run_config`](#fiftyone.brain.visualization.ManualVisualization.update_run_config)(samples, key, config)     | Updates the `BaseRunConfig` for the given run on the collection.                                   |
| [`update_run_key`](#fiftyone.brain.visualization.ManualVisualization.update_run_key)(samples, key, new_key)          | Replaces the key for the given run with a new key.                                                 |
| [`validate`](#fiftyone.brain.visualization.ManualVisualization.validate)(config)                                     | Validates that the given config is an instance of <cls>Config.                                     |
| [`validate_run`](#fiftyone.brain.visualization.ManualVisualization.validate_run)(samples, key[, overwrite])          | Validates that the collection can accept this run.                                                 |

**Attributes:**

| [`SUPPORTS_UPDATES`](#fiftyone.brain.visualization.ManualVisualization.SUPPORTS_UPDATES)   |    |
|--------------------------------------------------------------------------------------------|----|

#### fit_reducer(embeddings)

#### SUPPORTS_UPDATES *= False*

#### cleanup(samples, key)

Cleans up the results of the run with the given key from the
collection.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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_fields(samples, brain_key)

Gets the fields that were involved in the given run.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **type** (*None*) – 

    a specific run type to match, which can be:
    - a string [`fiftyone.core.runs.BaseRunConfig.type`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRunConfig.type)
    - a [`fiftyone.core.runs.BaseRun`](fiftyone.core.runs.md#fiftyone.core.runs.BaseRun) class or its
      fully-qualified class name string
  * **method** (*None*) – a specific
    [`fiftyone.core.runs.BaseRunConfig.method`](fiftyone.core.runs.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **select_fields** (*False*) – whether to exclude fields involved in other
    runs of the same type
* **Returns:**
  a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)

#### *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](fiftyone.brain.internal.core.elasticsearch.md#fiftyone.brain.internal.core.elasticsearch.ElasticsearchSimilarityConfig.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`](fiftyone.core.collections.md#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

#### rename(samples, key, new_key)

Performs any necessary operations required to rename this run’s key.

* **Parameters:**
  * **samples** – a [`fiftyone.core.collections.SampleCollection`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **new_key** – a new run key

#### *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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#fiftyone.core.collections.SampleCollection)
  * **key** – a run key
  * **run_results** – a `BaseRunResults`, or None
  * **overwrite** (*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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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`](fiftyone.core.collections.md#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
