Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,55 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- cryo-et
|
| 5 |
+
- tomography
|
| 6 |
+
- segmentation
|
| 7 |
+
- biology
|
| 8 |
+
- microscopy
|
| 9 |
+
- sam
|
| 10 |
+
- medsam
|
| 11 |
+
pretty_name: AgentProject XuLab — CryoET Large Files
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1B<n<10B
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# AgentProject XuLab — Large Files
|
| 17 |
+
|
| 18 |
+
This dataset hosts large binary files for the [AgentProject_XuLab](https://github.com/vatsal-ts/AgentProject_XuLab) repository, which is part of the XuLab research project on AI-driven Cryo-Electron Tomography (CryoET) analysis.
|
| 19 |
+
|
| 20 |
+
These files are stored here due to GitHub's 100MB file size limit.
|
| 21 |
+
|
| 22 |
+
## Contents
|
| 23 |
+
|
| 24 |
+
| File | Size | Description |
|
| 25 |
+
|---|---|---|
|
| 26 |
+
| `sam_vit_b_01ec64.pth` | 358 MB | SAM (Segment Anything Model) ViT-B checkpoint |
|
| 27 |
+
| `medsam_vit_b.pth` | 358 MB | MedSAM ViT-B checkpoint (medical image segmentation) |
|
| 28 |
+
| `tomograms/local.mrc` | 1.6 GB | CryoET tomogram — full volume (NPC1-deficient HEK293T cells) |
|
| 29 |
+
| `tomograms/mitochondrion_20036.mrc` | 385 MB | CryoET tomogram — mitochondrion annotation volume |
|
| 30 |
+
|
| 31 |
+
## About the Data
|
| 32 |
+
|
| 33 |
+
The tomogram files are from a CryoET dataset of **NPC1-deficient human HEK293T cells** with annotations for multiple cellular features including lysosomes, mitochondria, and membranes.
|
| 34 |
+
|
| 35 |
+
The `.pth` files are pretrained model weights used by the CryoETAgent pipeline for organelle segmentation:
|
| 36 |
+
- **SAM** ([Kirillov et al., 2023](https://arxiv.org/abs/2304.02643)) — general-purpose segmentation
|
| 37 |
+
- **MedSAM** ([Ma et al., 2024](https://www.nature.com/articles/s41467-024-44824-z)) — SAM fine-tuned for medical/biological imaging
|
| 38 |
+
|
| 39 |
+
## Usage
|
| 40 |
+
|
| 41 |
+
Clone the GitHub repo and run the download script:
|
| 42 |
+
|
| 43 |
+
```bash
|
| 44 |
+
git clone https://github.com/vatsal-ts/AgentProject_XuLab
|
| 45 |
+
cd AgentProject_XuLab
|
| 46 |
+
pip install huggingface_hub
|
| 47 |
+
python download_large_files.py
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
This will place all files in their correct locations automatically.
|
| 51 |
+
|
| 52 |
+
## Related
|
| 53 |
+
|
| 54 |
+
- GitHub repo: [vatsal-ts/AgentProject_XuLab](https://github.com/vatsal-ts/AgentProject_XuLab)
|
| 55 |
+
- CryoETAgent: AI agent for automated CryoET organelle analysis
|