theastro commited on
Commit
ffed236
·
1 Parent(s): 0ea5890

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -4
README.md CHANGED
@@ -1,13 +1,55 @@
1
  ---
2
  license: creativeml-openrail-m
3
  tags:
4
- - text-to-image
5
  - stable-diffusion
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
- ### folks Dreambooth model trained by theastro with [TheLastBen's fast-DreamBooth](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast-DreamBooth.ipynb) notebook
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
- Test the concept via A1111 Colab [fast-Colab-A1111](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast_stable_diffusion_AUTOMATIC1111.ipynb)
 
 
 
 
11
 
12
- Sample pictures of this concept:
13
 
 
 
1
  ---
2
  license: creativeml-openrail-m
3
  tags:
 
4
  - stable-diffusion
5
+ - stable-diffusion-diffusers
6
+ - text-to-image
7
+ inference: true
8
+ extra_gated_prompt: >-
9
+ This model is open access and available to all, with a CreativeML OpenRAIL-M
10
+ license further specifying rights and usage.
11
+
12
+ The CreativeML OpenRAIL License specifies:
13
+
14
+
15
+ 1. You can't use the model to deliberately produce nor share illegal or
16
+ harmful outputs or content
17
+
18
+ 2. CompVis claims no rights on the outputs you generate, you are free to use
19
+ them and are accountable for their use which must not go against the
20
+ provisions set in the license
21
+
22
+ 3. You may re-distribute the weights and use the model commercially and/or as
23
+ a service. If you do, please be aware you have to include the same use
24
+ restrictions as the ones in the license and share a copy of the CreativeML
25
+ OpenRAIL-M to all your users (please read the license entirely and carefully)
26
+
27
+ Please read the full license carefully here:
28
+ https://huggingface.co/spaces/CompVis/stable-diffusion-license
29
+
30
+ extra_gated_heading: Please read the LICENSE to access this model
31
+ library_name: diffusers
32
  ---
 
33
 
34
+ # Folks Diffusion v1-5 Model Card
35
+
36
+
37
+
38
+
39
+ ### Diffusers
40
+ ```py
41
+ from diffusers import StableDiffusionPipeline
42
+ import torch
43
+
44
+ model_id = "theastro/folks-diffusion-v1-5"
45
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
46
+ pipe = pipe.to("cuda")
47
 
48
+ prompt = "a photo of folks, like an astronaut riding a horse on mars"
49
+ image = pipe(prompt).images[0]
50
+
51
+ image.save("a portrait image of folks")
52
+ ```
53
 
 
54
 
55
+ *This model card was written by: Matheus Ranielli and is based on the [runwaynl model v1.5].*