Instructions to use dataautogpt3/ProteusV0.2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use dataautogpt3/ProteusV0.2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("dataautogpt3/ProteusV0.2", dtype=torch.bfloat16, device_map="cuda") prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
#5
by allplemmmm - opened
README.md
CHANGED
|
@@ -144,8 +144,8 @@ image = pipe(
|
|
| 144 |
negative_prompt=negative_prompt,
|
| 145 |
width=1024,
|
| 146 |
height=1024,
|
| 147 |
-
guidance_scale=7,
|
| 148 |
-
num_inference_steps=
|
| 149 |
).images[0]
|
| 150 |
```
|
| 151 |
|
|
|
|
| 144 |
negative_prompt=negative_prompt,
|
| 145 |
width=1024,
|
| 146 |
height=1024,
|
| 147 |
+
guidance_scale=7.5,
|
| 148 |
+
num_inference_steps=50
|
| 149 |
).images[0]
|
| 150 |
```
|
| 151 |
|