Add dataset card and documentation
#2
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- other
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# When to Align, When to Predict: A Phase Diagram for Multimodal Learning
|
| 7 |
+
|
| 8 |
+
This repository contains pretrained encoders, cached features, and phase diagnostics data associated with the paper "[When to Align, When to Predict: A Phase Diagram for Multimodal Learning](https://huggingface.co/papers/2606.11190)".
|
| 9 |
+
|
| 10 |
+
The paper characterizes when contrastive (Cross-Alignment, CA) vs. predictive (Cross-Prediction, CP) self-supervised objectives recover shared signals in multimodal data, particularly for scientific domains.
|
| 11 |
+
|
| 12 |
+
[Project Website](https://ilaymalinyak.github.io/mm_align_vs_pred/) | [GitHub Repository](https://github.com/IlayMalinyak/mm_align_vs_pred)
|
| 13 |
+
|
| 14 |
+
## Dataset Description
|
| 15 |
+
|
| 16 |
+
The data stored here supports experiments including:
|
| 17 |
+
- **Astro Data**: Pretrained encoders and cached features for LAMOST × Kepler/TESS spectra.
|
| 18 |
+
- **Phase Diagnostics**: Data used to locate real-world datasets in the phase diagram regimes (Both, CA only, CP only, or Neither).
|
| 19 |
+
|
| 20 |
+
## Sample Usage
|
| 21 |
+
|
| 22 |
+
You can download the checkpoints, cached features, and phase diagnostics data using the `huggingface_hub` library:
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from huggingface_hub import snapshot_download
|
| 26 |
+
snapshot_download("Ilayk/mm_align_vs_pred", repo_type="dataset", local_dir="hf_data")
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
After downloading, you can point your environment to the data for the astrophysical experiments:
|
| 30 |
+
```bash
|
| 31 |
+
export MULTIDESA_ROOT=hf_data
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Citation
|
| 35 |
+
|
| 36 |
+
```bibtex
|
| 37 |
+
@article{kamai2026align,
|
| 38 |
+
title = {When to Align, When to Predict? A Phase Diagram for Multimodal Self-Supervised Learning},
|
| 39 |
+
author = {Kamai, Ilay and Van Assel, Hugues and Regev, Aviv and Perets, Hagai B. and Balestriero, Randall},
|
| 40 |
+
journal = {arXiv preprint arXiv:2606.11190},
|
| 41 |
+
year = {2026}
|
| 42 |
+
}
|
| 43 |
+
```
|