Instructions to use GreeneryScenery/SheepsControlV1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use GreeneryScenery/SheepsControlV1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("GreeneryScenery/SheepsControlV1", dtype=torch.bfloat16, device_map="cuda") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Commit ·
e26166d
1
Parent(s): 82c5a3c
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# V1
|
| 2 |
|
| 3 |
First try at training a custom [ControlNet](https://github.com/huggingface/diffusers/tree/main/examples/controlnet). (Only 1 epoch 🤗) Using dataset from [here](https://huggingface.co/datasets/GreeneryScenery/SheepsNet).
|
|
@@ -6,8 +14,4 @@ Things to improve:
|
|
| 6 |
- More variety of data in general? (Not only sheeps)
|
| 7 |
- More data (More sheeps)
|
| 8 |
- More epochs
|
| 9 |
-
- Better text prompts
|
| 10 |
-
|
| 11 |
-
---
|
| 12 |
-
tag: Image-to-Image
|
| 13 |
-
---
|
|
|
|
| 1 |
+
---
|
| 2 |
+
datasets:
|
| 3 |
+
- GreeneryScenery/SheepsNet
|
| 4 |
+
tags:
|
| 5 |
+
- Image-to-Image
|
| 6 |
+
- Diffusers
|
| 7 |
+
- ControlNet
|
| 8 |
+
---
|
| 9 |
# V1
|
| 10 |
|
| 11 |
First try at training a custom [ControlNet](https://github.com/huggingface/diffusers/tree/main/examples/controlnet). (Only 1 epoch 🤗) Using dataset from [here](https://huggingface.co/datasets/GreeneryScenery/SheepsNet).
|
|
|
|
| 14 |
- More variety of data in general? (Not only sheeps)
|
| 15 |
- More data (More sheeps)
|
| 16 |
- More epochs
|
| 17 |
+
- Better text prompts
|
|
|
|
|
|
|
|
|
|
|
|