Instructions to use MagoMerlot/PSFs_generated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MagoMerlot/PSFs_generated with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MagoMerlot/PSFs_generated", 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
Commit ·
238c98a
1
Parent(s): 3e6cf35
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,17 +1,8 @@
|
|
| 1 |
-
version 1.0
|
| 2 |
-
|
| 3 |
|
| 4 |
---
|
| 5 |
-
language:
|
| 6 |
-
- en
|
| 7 |
-
license: apache-2.0
|
| 8 |
-
library_name: diffusers
|
| 9 |
tags:
|
| 10 |
-
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
- datasets
|
| 14 |
-
- accelerator
|
| 15 |
-
metrics:
|
| 16 |
-
- mse
|
| 17 |
---
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
---
|
| 3 |
+
language: en
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
+
- diffusers
|
| 6 |
+
|
| 7 |
+
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|