model.joblib: Model bundle with reference embeddings1import joblib
2from huggingface_hub import hf_hub_download
3
4# Download model
5model_path = hf_hub_download(repo_id="jruffle/tabpfn_transcriptome_256d", filename="model.joblib")
6model = joblib.load(model_path)
7
8# Access embeddings
9embeddings = model['reference_embeddings']