File size: 2,088 Bytes
0062bb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9836aa3
0062bb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
license: apache-2.0
tags:
- image-generation
- autoregressive
- flashar
- llamagen
---

# LlamaGen-FlashAR

This repository collects FlashAR checkpoints for LlamaGen variants.

FlashAR is introduced in **"FlashAR: Efficient Post-Training Acceleration for Autoregressive Image Generation"**. It accelerates raster-scan autoregressive image generation with a vertical prediction branch and a learnable fusion gate, enabling anti-diagonal decoding.

- Paper: [arXiv:2605.09430](https://arxiv.org/abs/2605.09430)
- Project page: [FlashAR](https://lxazjk.github.io/FlashAR/)
- Code: [LlamaGen-FlashAR](https://github.com/lxazjk/LlamaGen-FlashAR)

## Checkpoints

| Variant | Directory | Checkpoint | Extra files |
| --- | --- | --- | --- |
| LlamaGen-B | `B/` | `B/FlashAR-LlamaGen-B.pt` | `B/FlashAR-LlamaGen-B.json` |
| LlamaGen-L | `L/` | `L/FlashAR-LlamaGen-L.pt` | `L/metrics.json` |
| LlamaGen-XL | `XL/` | `XL/FlashAR-LlamaGen-XL.pt` | `XL/FlashAR-LlamaGen-XL.json` |
| LlamaGen-XXL | `XXL/` | `XXL/FlashAR-LlamaGen-XXL.pt` | `XXL/metrics.json` |

Each subdirectory also includes the source model card and `configuration.json` from the corresponding ModelScope checkpoint.

## Layout

```text
.
β”œβ”€β”€ B/
β”‚   β”œβ”€β”€ FlashAR-LlamaGen-B.pt
β”‚   β”œβ”€β”€ FlashAR-LlamaGen-B.json
β”‚   β”œβ”€β”€ configuration.json
β”‚   └── README.md
β”œβ”€β”€ L/
β”‚   β”œβ”€β”€ FlashAR-LlamaGen-L.pt
β”‚   β”œβ”€β”€ metrics.json
β”‚   β”œβ”€β”€ configuration.json
β”‚   └── README.md
β”œβ”€β”€ XL/
β”‚   β”œβ”€β”€ FlashAR-LlamaGen-XL.pt
β”‚   β”œβ”€β”€ FlashAR-LlamaGen-XL.json
β”‚   β”œβ”€β”€ configuration.json
β”‚   └── README.md
└── XXL/
    β”œβ”€β”€ FlashAR-LlamaGen-XXL.pt
    β”œβ”€β”€ metrics.json
    β”œβ”€β”€ configuration.json
    └── README.md
```

## Citation

```bibtex
@article{zhou2026flashar,
  title={FlashAR: Efficient Post-Training Acceleration for Autoregressive Image Generation},
  author={Zhou, Junkang and He, Yefei and Chen, Feng and Wang, Weijie and Zhuang, Bohan},
  journal={arXiv preprint arXiv:2605.09430},
  year={2026}
}
```