Add model card and pipeline tag
Browse filesThis PR adds a model card for MixFlow, which includes:
- A link to the paper [MixFlow: Mixed Source Distributions Improve Rectified Flows](https://huggingface.co/papers/2604.09181).
- A link to the official [GitHub repository](https://github.com/NazirNayal8/MixFlow).
- The `unconditional-image-generation` pipeline tag to improve discoverability on the Hub.
README.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
pipeline_tag: unconditional-image-generation
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# MixFlow: Mixed Source Distributions Improve Rectified Flows
|
| 7 |
+
|
| 8 |
+
This repository contains model checkpoints for **MixFlow**, introduced in the paper [MixFlow: Mixed Source Distributions Improve Rectified Flows](https://huggingface.co/papers/2604.09181).
|
| 9 |
+
|
| 10 |
+
MixFlow is a simple but effective training strategy for rectified flows that mixes unconditional and conditional source distributions to reduce generative path curvature and improve sampling efficiency. It achieves better generation quality with fewer sampling steps and accelerates training convergence across benchmarks such as CIFAR-10, FFHQ, and AFHQv2.
|
| 11 |
+
|
| 12 |
+
## Resources
|
| 13 |
+
|
| 14 |
+
- **Paper:** [MixFlow: Mixed Source Distributions Improve Rectified Flows](https://huggingface.co/papers/2604.09181)
|
| 15 |
+
- **GitHub Repository:** [NazirNayal8/MixFlow](https://github.com/NazirNayal8/MixFlow)
|
| 16 |
+
|
| 17 |
+
## Citation
|
| 18 |
+
|
| 19 |
+
```bibtex
|
| 20 |
+
@inproceedings{
|
| 21 |
+
nayal2026mixflow,
|
| 22 |
+
title={MixFlow: Mixed Source Distributions Improve Rectified Flows},
|
| 23 |
+
author={Nazir Nayal and Christopher Wewer and Jan Eric Lenssen},
|
| 24 |
+
booktitle={ICLR 2026 2nd Workshop on Deep Generative Model in Machine Learning: Theory, Principle and Efficacy},
|
| 25 |
+
year={2026},
|
| 26 |
+
url={https://openreview.net/forum?id=uWktyU3OIJ}
|
| 27 |
+
}
|
| 28 |
+
```
|