Instructions to use Beckham808/LightGen with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Beckham808/LightGen with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Beckham808/LightGen", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Commit ·
17f9cd3
1
Parent(s): e2da33d
update info
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ license: mit
|
|
| 10 |
|
| 11 |
## About
|
| 12 |
This model (LightGen) introduces a novel pre-train pipeline for text-to-image models.
|
| 13 |
-
It is based on [this paper](https://arxiv.org/abs/), code release on [this github repo](https://github.com/XianfengWu01/LightGen).
|
| 14 |
|
| 15 |
Currently, we just release some checkpoint without DPO
|
| 16 |
|
|
|
|
| 10 |
|
| 11 |
## About
|
| 12 |
This model (LightGen) introduces a novel pre-train pipeline for text-to-image models.
|
| 13 |
+
It is based on [this paper](https://arxiv.org/abs/2503.08619), code release on [this github repo](https://github.com/XianfengWu01/LightGen).
|
| 14 |
|
| 15 |
Currently, we just release some checkpoint without DPO
|
| 16 |
|