Instructions to use bartar/prci with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use bartar/prci with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("bartar/prci") prompt = "Photorealistic photo of prci, gray nissan qashqai, standing on a grey brick pavement, trees and blue sky in the background. Taken by phone" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Bartosz commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,6 +26,7 @@ You can use it to get better quality of car photos with realistic reflections, a
|
|
| 26 |
## Trigger words
|
| 27 |
|
| 28 |
You should use `prci` to trigger the image generation with lora.
|
|
|
|
| 29 |
Recommended prompt format is
|
| 30 |
prci, [car color, brand, model], [environment/background description]
|
| 31 |
|
|
|
|
| 26 |
## Trigger words
|
| 27 |
|
| 28 |
You should use `prci` to trigger the image generation with lora.
|
| 29 |
+
|
| 30 |
Recommended prompt format is
|
| 31 |
prci, [car color, brand, model], [environment/background description]
|
| 32 |
|