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.TypedDictArguments specific to the reduction method.
Initialize self. See help(type(self)) for accurate signature.
- retain_source_embedding_column: bool = None¶
Whether to retain the source embedding column in the output table (default False).
- 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¶