Downloads · 30 days
0
jruffle/tsne_transcriptome_2d
tsne_transcriptome_2d is a machine learning model from jruffle. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
Pre-trained tsne model for transcriptomic data compression.
Downloads · 30 days
0
Access
Public
Updated Jan 10, 2026
Repo size
97 MB
Likes
0
Public
Click a slice to open those files.
.joblib97 MB · 100%
From the Hugging Face model README
Pre-trained tsne model for transcriptomic data compression.
import joblib
from huggingface_hub import snapshot_download
# Download model
local_dir = snapshot_download("jruffle/tsne_transcriptome_2d")
model = joblib.load(f"{local_dir}/model.joblib")
# For classical models (PCA/UMAP):
# model contains: 'pca', 'umap', 'robust_scaler', 'gene_order'
# For TabPFN models (with UMAP reduction):
# model contains: 'tabpfn_embedding', 'umap_final', 'raw_embeddings', 'input_scaler', etc.
# Uses UMAP instead of PCA for non-linear dimension reduction of TabPFN embeddings