Instructions to use Prgckwb/trpfrog-sd3.5-medium-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Prgckwb/trpfrog-sd3.5-medium-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3.5-medium", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Prgckwb/trpfrog-sd3.5-medium-lora") prompt = "an icon of trpfrog eating ramen" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -71,7 +71,7 @@ pipeline = AutoPipelineForText2Image.from_pretrained(
|
|
| 71 |
).to('cuda')
|
| 72 |
|
| 73 |
pipeline.load_lora_weights(
|
| 74 |
-
'Prgckwb/trpfrog-sd3.
|
| 75 |
weight_name='pytorch_lora_weights.safetensors'
|
| 76 |
)
|
| 77 |
image = pipeline('an icon of trpfrog').images[0]
|
|
|
|
| 71 |
).to('cuda')
|
| 72 |
|
| 73 |
pipeline.load_lora_weights(
|
| 74 |
+
'Prgckwb/trpfrog-sd3.5-medium-lora',
|
| 75 |
weight_name='pytorch_lora_weights.safetensors'
|
| 76 |
)
|
| 77 |
image = pipeline('an icon of trpfrog').images[0]
|