tlc.client.reduce.reduction_method
¶
Base classes for dimensionality reducers.
Module Contents¶
Classes¶
Class |
Description |
---|---|
Arguments specific to the reduction method. |
|
Perform dimensionality reduction on columns of tables. |
API¶
- class ReducerArgs¶
Bases:
typing.TypedDict
Arguments specific to the reduction method.
Initialize self. See help(type(self)) for accurate signature.
- source_embedding_column: str | None = None¶
The name of the column containing the unreduced embedding in the input table. If None, all columns are considered .
- class ReductionMethod(
- reducer_args: tlc.client.reduce.reduction_method._ReducerArgsType | None = None,
Bases:
abc.ABC
,typing.Generic
[tlc.client.reduce.reduction_method._ReducerArgsType
]Perform dimensionality reduction on columns of tables.
Dimensionality reduction is accomplished by creating derived tables of the appropriate type (e.g., UMAPTable) which apply the reduction method to the input tables.
- Params reducer_args:
A dictionary of arguments which are specific to the reduction method.
- abstract default_args() tlc.client.reduce.reduction_method._ReducerArgsType ¶