Instructions to use NoCrypt/SomethingV2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use NoCrypt/SomethingV2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("NoCrypt/SomethingV2", dtype=torch.bfloat16, device_map="cuda") prompt = "masterpiece, best quality, 1girl, brown hair, green eyes, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,7 +28,8 @@ library_name: diffusers
|
|
| 28 |
|
| 29 |
|
| 30 |
## Recommended Settings
|
| 31 |
-
- VAE
|
|
|
|
| 32 |
- Sampler: DPM++ 2M Karras
|
| 33 |
- CFG Scale: 7 - 12
|
| 34 |
- Negative Prompt: [EasyNegative](https://huggingface.co/datasets/gsdf/EasyNegative)
|
|
|
|
| 28 |
|
| 29 |
|
| 30 |
## Recommended Settings
|
| 31 |
+
- VAE: None (Baked in model)
|
| 32 |
+
- Clip Skip: 2
|
| 33 |
- Sampler: DPM++ 2M Karras
|
| 34 |
- CFG Scale: 7 - 12
|
| 35 |
- Negative Prompt: [EasyNegative](https://huggingface.co/datasets/gsdf/EasyNegative)
|