Instructions to use mrcuddle/Josh-Moore with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mrcuddle/Josh-Moore 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-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("mrcuddle/Josh-Moore") prompt = "Josh Moore, body, tattoo" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,7 +9,7 @@ widget:
|
|
| 9 |
- text: Josh Moore, body, tattoo
|
| 10 |
output:
|
| 11 |
url: images/Josh_Moore_e000010_01_20240824172932.png
|
| 12 |
-
base_model:
|
| 13 |
instance_prompt: Josh Moore
|
| 14 |
license: apache-2.0
|
| 15 |
---
|
|
|
|
| 9 |
- text: Josh Moore, body, tattoo
|
| 10 |
output:
|
| 11 |
url: images/Josh_Moore_e000010_01_20240824172932.png
|
| 12 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 13 |
instance_prompt: Josh Moore
|
| 14 |
license: apache-2.0
|
| 15 |
---
|