tlc.client.reduce.umap¶
Dimensionality reduction with the UMAP algorithm.
Module Contents¶
Classes¶
Class |
Description |
|---|---|
Perform dimensionality reduction on columns of tables using the UMAP algorithm. |
|
Arguments specific to the UMAP reduction method. |
API¶
- class UMapReduction(
- reducer_args: tlc.client.reduce.reduction_method._ReducerArgsType | None = None,
Bases:
tlc.client.reduce.reduction_method.ReductionMethod[tlc.client.reduce.umap.UMapTableArgs]Perform dimensionality reduction on columns of tables using the UMAP algorithm.
- Params reducer_args:
A dictionary of arguments which are specific to the reduction method.
- default_args() UMapTableArgs¶
Returns the default arguments for the UMAP reduction method.
- class UMapTableArgs¶
Bases:
tlc.client.reduce.reduction_method.ReducerArgsArguments specific to the UMAP reduction method.
See
UMAPTablefor more information.Initialize self. See help(type(self)) for accurate signature.
- metric: str = None¶
The metric to use when calculating distances between points in the input space (default: euclidean).