Instructions to use Akbartus/Lora360 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Akbartus/Lora360 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Akbartus/Lora360") prompt = "360 view" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,8 +10,8 @@ widget:
|
|
| 10 |
- text: 360 view
|
| 11 |
inference:
|
| 12 |
parameters:
|
| 13 |
-
width:
|
| 14 |
-
height:
|
| 15 |
num_inference_steps: 100
|
| 16 |
guidance_scale: 9.0
|
| 17 |
---
|
|
|
|
| 10 |
- text: 360 view
|
| 11 |
inference:
|
| 12 |
parameters:
|
| 13 |
+
width: 768
|
| 14 |
+
height: 512
|
| 15 |
num_inference_steps: 100
|
| 16 |
guidance_scale: 9.0
|
| 17 |
---
|