Instructions to use DwanZhang/SePPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use DwanZhang/SePPO with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("DwanZhang/SePPO", 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
add the paper link
#2
by Eric-Lan - opened
README.md
CHANGED
|
@@ -12,7 +12,9 @@ tags:
|
|
| 12 |
|
| 13 |
Pretrained SD-1.5 weight for SePPO
|
| 14 |
|
| 15 |
-
See Github Repo:[SePPO](https://github.com/DwanZhang-AI/SePPO/tree/main)
|
|
|
|
|
|
|
| 16 |
|
| 17 |
Inference Code:
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
Pretrained SD-1.5 weight for SePPO
|
| 14 |
|
| 15 |
+
See Github Repo: [SePPO](https://github.com/DwanZhang-AI/SePPO/tree/main)
|
| 16 |
+
|
| 17 |
+
Paper Report: [Daily Paper](https://huggingface.co/papers/2410.05255)
|
| 18 |
|
| 19 |
Inference Code:
|
| 20 |
|