tsne_manifold
Bases: manifold
Manifold learning using the t-SNE algorithm.
This class implements dimensionality reduction using the t-SNE algorithm, which is effective for visualizing high-dimensional data.
Source code in tinybig/koala/manifold/manifold.py
__init__(perplexity=5.0, name='tsne_manifold', *args, **kwargs)
Initialize the t-SNE manifold learning class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
perplexity
|
float
|
The perplexity parameter for t-SNE. |
5.0
|
name
|
str
|
The name of the manifold learning method. Default is 'tsne_manifold'. |
'tsne_manifold'
|
*args
|
Additional arguments for the base class. |
()
|
|
**kwargs
|
Additional arguments for the base class. |
()
|