Add pipeline tag and improve model card
Browse filesThis PR improves the model card by:
- Adding the `unconditional-image-generation` pipeline tag to the metadata for better discoverability.
- Adding a link to the paper on Hugging Face Papers.
- Adding the official GitHub repository link.
- Adding a BibTeX citation section.
README.md
CHANGED
|
@@ -1,18 +1,33 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# Adversarial Flow Models
|
| 6 |
|
| 7 |
-
This repository contains the official
|
| 8 |
|
| 9 |
-
Adversarial Flow Models is a class of generative models that unifies Adversarial Models and Flow Models. This
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
## Usage
|
| 12 |
|
| 13 |
-
Code and instructions are available in the [
|
| 14 |
|
| 15 |
-
## Content
|
| 16 |
-
* `models/` contains pre-trained
|
| 17 |
* `eval/` contains pre-generated 50k samples for evaluations following ADM npz format.
|
| 18 |
-
* `misc/` contains VAE and other checkpoints used in training.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pipeline_tag: unconditional-image-generation
|
| 4 |
---
|
| 5 |
|
| 6 |
# Adversarial Flow Models
|
| 7 |
|
| 8 |
+
This repository contains the official checkpoints for the paper [Adversarial Flow Models](https://huggingface.co/papers/2511.22475).
|
| 9 |
|
| 10 |
+
Adversarial Flow Models is a class of generative models that unifies Adversarial Models and Flow Models. This repository contains the pre-trained ImageNet-256px models described in the paper.
|
| 11 |
+
|
| 12 |
+
- **GitHub Repository**: [ByteDance-Seed/Adversarial-Flow-Models](https://github.com/ByteDance-Seed/Adversarial-Flow-Models)
|
| 13 |
+
- **Paper**: [Adversarial Flow Models](https://huggingface.co/papers/2511.22475)
|
| 14 |
|
| 15 |
## Usage
|
| 16 |
|
| 17 |
+
Code and instructions for generation and training are available in the [official GitHub repository](https://github.com/ByteDance-Seed/Adversarial-Flow-Models).
|
| 18 |
|
| 19 |
+
## Repository Content
|
| 20 |
+
* `models/` contains pre-trained ImageNet-256px checkpoints.
|
| 21 |
* `eval/` contains pre-generated 50k samples for evaluations following ADM npz format.
|
| 22 |
+
* `misc/` contains VAE and other checkpoints used in training.
|
| 23 |
+
|
| 24 |
+
## Citation
|
| 25 |
+
|
| 26 |
+
```bibtex
|
| 27 |
+
@article{lin2025adversarial,
|
| 28 |
+
title={Adversarial Flow Models},
|
| 29 |
+
author={Lin, Shanchuan and Yang, Ceyuan and Lin, Zhijie and Chen, Hao and Fan, Haoqi},
|
| 30 |
+
journal={arXiv preprint arXiv:2511.22475},
|
| 31 |
+
year={2025}
|
| 32 |
+
}
|
| 33 |
+
```
|