Instructions to use OFT/MODEL_SD15_RockRaiderRuby_v01 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use OFT/MODEL_SD15_RockRaiderRuby_v01 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("OFT/MODEL_SD15_RockRaiderRuby_v01", dtype=torch.bfloat16, device_map="cuda") prompt = "photo of the sunset" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,5 +5,5 @@ tags:
|
|
| 5 |
<h1>Rock Raider Ruby</h1>
|
| 6 |
An old version of a customised model. Very simple SD1.5 + 10 photos. Dates back before I learned about LORA's. <br>
|
| 7 |
SD 1.5 trained with character screenshots from Fallout 76.<br>
|
| 8 |
-
Codeword: rockraiderruby
|
| 9 |
Creation date: Dec 2022 - Jan 2023
|
|
|
|
| 5 |
<h1>Rock Raider Ruby</h1>
|
| 6 |
An old version of a customised model. Very simple SD1.5 + 10 photos. Dates back before I learned about LORA's. <br>
|
| 7 |
SD 1.5 trained with character screenshots from Fallout 76.<br>
|
| 8 |
+
Codeword: rockraiderruby <br>
|
| 9 |
Creation date: Dec 2022 - Jan 2023
|