Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: t-SNE (t-Distributed Stochastic Neighbor Embedding) (Transcriptome-centric, 3D)
|
| 3 |
+
emoji: 🧬
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: python
|
| 7 |
+
tags:
|
| 8 |
+
- transcriptomics
|
| 9 |
+
- dimensionality-reduction
|
| 10 |
+
- tsne
|
| 11 |
+
license: mit
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# t-SNE (t-Distributed Stochastic Neighbor Embedding) (Transcriptome-centric, 3D)
|
| 15 |
+
|
| 16 |
+
Pre-trained t-SNE (t-Distributed Stochastic Neighbor Embedding) model for transcriptomics data compression, part of the TRACERx Datathon 2025 project.
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
- **Method**: t-SNE (t-Distributed Stochastic Neighbor Embedding)
|
| 21 |
+
- **Compression Mode**: Transcriptome-centric
|
| 22 |
+
- **Output Dimensions**: 3
|
| 23 |
+
- **Training Data**: TRACERx open dataset (VST-normalized counts)
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
This model is designed to be used with the TRACERx Datathon 2025 analysis pipeline.
|
| 28 |
+
It will be automatically downloaded and cached when needed.
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
import joblib
|
| 32 |
+
|
| 33 |
+
# Load the model bundle
|
| 34 |
+
model_data = joblib.load("model.joblib")
|
| 35 |
+
|
| 36 |
+
# Access components based on model type
|
| 37 |
+
# See documentation for specific usage
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Files
|
| 41 |
+
|
| 42 |
+
- `model.joblib`: Model bundle containing fitted model and preprocessing parameters
|