PPPPPilot commited on
Commit
37b60b4
·
verified ·
1 Parent(s): 463d51b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -3
README.md CHANGED
@@ -1,3 +1,27 @@
1
- ---
2
- license: creativeml-openrail-m
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_card_content = """---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - stable-diffusion
5
+ - text-to-image
6
+ - pokemon
7
+ - fine-tuned
8
+ - non-commercial
9
+ - research
10
+ base_model: sd-legacy/stable-diffusion-v1-5
11
+ library_name: diffusers
12
+ pipeline_tag: text-to-image
13
+ ---
14
+
15
+ # Stable Diffusion Pokemon - Research Version
16
+
17
+ **🔬 Research Use | Non-Commercial**
18
+
19
+ ## 📄 License
20
+ This model is fine-tuned from [sd-legacy/stable-diffusion-v1-5](https://huggingface.co/sd-legacy/stable-diffusion-v1-5) under CreativeML Open RAIL-M License.
21
+
22
+ ## 🚀 Usage
23
+ ```python
24
+ from diffusers import StableDiffusionPipeline
25
+
26
+ pipe = StableDiffusionPipeline.from_pretrained("PPPPPilot/StableDiffusionPokemon")
27
+ image = pipe("a cute pokemon character").images[0]