Bobobob17134 commited on
Commit
40c2a08
·
verified ·
1 Parent(s): e27f150

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -32
README.md CHANGED
@@ -2,36 +2,48 @@
2
  license: creativeml-openrail-m
3
  tags:
4
  - text-to-image
 
 
5
  ---
6
- ### musecat_PPt_Model on Stable Diffusion via Dreambooth
7
- #### model by LK0608
8
- This your the Stable Diffusion model fine-tuned the musecat_PPt_Model concept taught to Stable Diffusion with Dreambooth.
9
- It can be used by modifying the `instance_prompt`: **a photo of a mscds cat**
10
-
11
- You can also train your own concepts and upload them to the library by using [this notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_training.ipynb).
12
- And you can run your new concept via `diffusers`: [Colab Notebook for Inference](https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_inference.ipynb), [Spaces with the Public Concepts loaded](https://huggingface.co/spaces/sd-dreambooth-library/stable-diffusion-dreambooth-concepts)
13
-
14
- Here are the images used for training this concept:
15
- ![image 0](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/concept_images/2.jpeg)
16
- ![image 1](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/concept_images/0.jpeg)
17
- ![image 2](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/concept_images/3.jpeg)
18
- ![image 3](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/concept_images/1.jpeg)
19
-
20
-
21
-
22
- Here are the images generated by the original model:
23
-
24
- ![image 0](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/3.jpg)
25
- ![image 1](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/0.jpg)
26
- ![image 2](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/6.jpg)
27
- ![image 3](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/10.jpg)
28
- ![image 4](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/8.jpg)
29
- ![image 5](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/11.jpg)
30
- ![image 6](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/2.jpg)
31
- ![image 7](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/4.jpg)
32
- ![image 8](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/7.jpg)
33
- ![image 9](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/9.jpg)
34
- ![image 10](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/1.jpg)
35
- ![image 11](https://huggingface.co/sd-dreambooth-library/musecat-ppt-model/resolve/main/class_images/5.jpg)
36
-
37
-
 
 
 
 
 
 
 
 
 
 
 
2
  license: creativeml-openrail-m
3
  tags:
4
  - text-to-image
5
+ - dreambooth
6
+ - stable-diffusion
7
  ---
8
+
9
+ ### musecat_PPt_Model Dreambooth Fine-tuned Stable Diffusion
10
+ #### Model by LK0608
11
+
12
+ This repository contains a Dreambooth-fine-tuned Stable Diffusion model trained on the **musecat_PPt_Model** concept.
13
+
14
+ Use the following `instance_prompt` to generate images of the trained subject:
15
+
16
+ **→ `a photo of a mscds cat`**
17
+
18
+ ---
19
+
20
+ ### Train Your Own Concept
21
+
22
+ You can fine-tune Stable Diffusion on your own subject or style by using the official HuggingFace Dreambooth notebooks:
23
+
24
+ - **Dreambooth Training Notebook**
25
+ https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_training.ipynb
26
+
27
+ - **Inference Notebook**
28
+ https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_inference.ipynb
29
+
30
+ - **Public Dreambooth Concepts Space**
31
+ https://huggingface.co/spaces/sd-dreambooth-library/stable-diffusion-dreambooth-concepts
32
+
33
+ ---
34
+
35
+ ### Usage (Diffusers)
36
+
37
+ ```python
38
+ from diffusers import StableDiffusionPipeline
39
+ import torch
40
+
41
+ pipe = StableDiffusionPipeline.from_pretrained(
42
+ "your-username/musecat_PPt_Model",
43
+ torch_dtype=torch.float16
44
+ ).to("cuda")
45
+
46
+ prompt = "a photo of a mscds cat wearing sunglasses, cinematic lighting"
47
+ image = pipe(prompt).images[0]
48
+
49
+ image.save("output.png")