Instructions to use simonbronson/Old-Portraits with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use simonbronson/Old-Portraits with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("simonbronson/Old-Portraits", 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 Settings
- Draw Things
- DiffusionBee
Commit ·
4e9d0fa
1
Parent(s): 142af66
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,8 @@ tags:
|
|
| 9 |
- diffusers
|
| 10 |
inference: true
|
| 11 |
---
|
|
|
|
|
|
|
| 12 |
Using a set of 25 mainly old large format photos from the 19th and early 20th century I wanted to capture the lighting, expression and film artifacts from this era. Subjects range in age, gender & ethnicity with poses generally looking at the camera with a neutral expression.
|
| 13 |
|
| 14 |
While only a couple of my source images had distressed frames, plenty of the generations contain them.
|
|
@@ -17,6 +19,6 @@ Download ckpt: https://huggingface.co/simonbronson/Old-Portraits/blob/main/Old_P
|
|
| 17 |
|
| 18 |
**Examples:**
|
| 19 |
|
| 20 |
-

|
| 23 |
+

|
| 24 |
```
|