Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pretty_name: Model Atlas - Data
|
3 |
+
---
|
4 |
+
|
5 |
+
# Dataset Card for Model Atlas - Data
|
6 |
+
|
7 |
+
The **Model Atlas Dataset** contains the processed data used in the paper [Charting and Navigating Hugging Face's Model Atlas](https://arxiv.org/abs/2503.10633).
|
8 |
+
|
9 |
+
<p align="center">
|
10 |
+
π <a href="https://horwitz.ai/model-atlas" target="_blank">Homepage</a> | πΊοΈ <a href="https://huggingface.co/spaces/Eliahu/Model-Atlas" target="_blank">Demo</a> | π <a href="https://arxiv.org/abs/2503.10633" target="_blank">Paper</a> | π§βπ» <a href="https://github.com/eliahuhorwitz/Model-Atlas" target="_blank">Code</a> | βοΈ <a href="mailto:[email protected]" target="_blank">Point of Contact</a>
|
11 |
+
</p>
|
12 |
+
|
13 |
+
|
14 |
+
## Dataset Description
|
15 |
+
|
16 |
+
This dataset is derived from the original [hub-stats](https://huggingface.co/datasets/cfahlgren1/hub-stats) dataset and has undergone several preprocessing steps specifically tailored for the Model Atlas:
|
17 |
+
|
18 |
+
- Removed unnecessary columns.
|
19 |
+
- Extracted relevant attributes from tags into dedicated columns.
|
20 |
+
- Manually annotated over 1,000 records with `base_model`, `base_model_relation`, or marked as unknown.
|
21 |
+
- Automatically extracted `base_model` information from model cards using a regex-based approach.
|
22 |
+
- Removed `base_model` loops and self-loops.
|
23 |
+
- Excluded models without weight files in the repository (i.e., files matching these extensions: `.pt`, `.pth`, `.bin`, `.safetensors`, `.ckpt`, `.pb`, `.h5`, `.npy`, `.npz`, `.onnx`, `.tflite`, `.xmodel`, `.dlc`, `.uff`, `.pbtxt`, `.msgpack`, `.pkl`, `.mar`, `.gguf`, `.ggml`, `.pdparams`, `.pdopt`, `.imatrix`, `.jit`, `.t7`, `.mdl`).
|
24 |
+
- Added "virtual" models to represent base models that have been removed but are still referenced by other models (e.g., `ruwnayml/stable-diffusion-v1-5`).
|
25 |
+
|
26 |
+
The code used for transforming this data into the directed acyclic graph (DAG) utilized in the paper and demo will be available at [https://github.com/eliahuhorwitz/Model-Atlas](https://github.com/eliahuhorwitz/Model-Atlas).
|
27 |
+
|
28 |
+
## Citation
|
29 |
+
|
30 |
+
If you use this dataset in your research or work, please cite our paper:
|
31 |
+
|
32 |
+
```bibtex
|
33 |
+
@misc{horwitz2025chartingnavigatinghuggingfaces,
|
34 |
+
title={Charting and Navigating Hugging Face's Model Atlas},
|
35 |
+
author={Eliahu Horwitz and Nitzan Kurer and Jonathan Kahana and Liel Amar and Yedid Hoshen},
|
36 |
+
year={2025},
|
37 |
+
eprint={2503.10633},
|
38 |
+
archivePrefix={arXiv},
|
39 |
+
primaryClass={cs.LG},
|
40 |
+
url={https://arxiv.org/abs/2503.10633},
|
41 |
+
}
|
42 |
+
```
|
43 |
+
|