nielsr HF Staff commited on
Commit
b9f7275
·
verified ·
1 Parent(s): 2c67a55

Add pipeline tag and improve model card

Browse files

This 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.

Files changed (1) hide show
  1. README.md +21 -6
README.md CHANGED
@@ -1,18 +1,33 @@
1
  ---
2
  license: mit
 
3
  ---
4
 
5
  # Adversarial Flow Models
6
 
7
- This repository contains the official checkpoins of the paper [Adversarial Flow Models](https://www.arxiv.org/abs/2511.22475).
8
 
9
- Adversarial Flow Models is a class of generative models that unifies Adversarial Models and Flow Models. This repo contains the pretrained ImageNet-256px models in the paper experiment section.
 
 
 
10
 
11
  ## Usage
12
 
13
- Code and instructions are available in the [ByteDance-Seed/Adversarial-Flow-Models](https://github.com/ByteDance-Seed/Adversarial-Flow-Models) repository.
14
 
15
- ## Content
16
- * `models/` contains pre-trained ImageNet256px checkpoints.
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
+ ```