aidystark commited on
Commit
50c278b
1 Parent(s): af5680e

Few Updates

Browse files
Files changed (4) hide show
  1. .ipynb_checkpoints/README-checkpoint.md +35 -0
  2. 3d.png +0 -0
  3. README.md +35 -0
  4. ycyxg.png +0 -0
.ipynb_checkpoints/README-checkpoint.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ### THE FINETUNED MODEL IS AVALIBLE ON HUGGINGFACE: <a href="https://huggingface.co/aidystark/3Dillustration-stable-diffusion" target="_top">HUGGINGFACE FINETUNED MODEL</a>
3
+ ---
4
+ license: creativeml-openrail-m
5
+ tags:
6
+ - stable-diffusion
7
+ - text-to-image
8
+ ---
9
+ ### 3d illustration style: This is the fine-tuned Stable Diffusion model trained on images in my ```attribution.txt``` file.
10
+ Use the tokens **_3d illustration style_** in your prompts for the effect.
11
+
12
+ ```python
13
+ from diffusers import StableDiffusionPipeline
14
+ import torch
15
+ model_id = "aidystark/3Dillustration-stable-diffusion "
16
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
17
+ pipe = pipe.to("cuda")
18
+ prompt = "3d illustration style rendering of anthony joshua 3d illustration style"
19
+ image = pipe(prompt).images[0]
20
+ image.save("./img.png")
21
+ ```
22
+
23
+ **Characters rendered with the model:**
24
+
25
+
26
+
27
+
28
+ ## License
29
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
30
+ The CreativeML OpenRAIL License specifies:
31
+
32
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
33
+ 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
34
+ 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
35
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
3d.png ADDED
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ### THE FINETUNED MODEL IS AVALIBLE ON HUGGINGFACE: <a href="https://huggingface.co/aidystark/3Dillustration-stable-diffusion" target="_top">HUGGINGFACE FINETUNED MODEL</a>
3
+ ---
4
+ license: creativeml-openrail-m
5
+ tags:
6
+ - stable-diffusion
7
+ - text-to-image
8
+ ---
9
+ ### 3d illustration style: This is the fine-tuned Stable Diffusion model trained on images in my ```attribution.txt``` file.
10
+ Use the tokens **_3d illustration style_** in your prompts for the effect.
11
+
12
+ ```python
13
+ from diffusers import StableDiffusionPipeline
14
+ import torch
15
+ model_id = "aidystark/3Dillustration-stable-diffusion "
16
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
17
+ pipe = pipe.to("cuda")
18
+ prompt = "3d illustration style rendering of anthony joshua 3d illustration style"
19
+ image = pipe(prompt).images[0]
20
+ image.save("./img.png")
21
+ ```
22
+
23
+ **Characters rendered with the model:**
24
+
25
+
26
+
27
+
28
+ ## License
29
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
30
+ The CreativeML OpenRAIL License specifies:
31
+
32
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
33
+ 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
34
+ 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
35
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
ycyxg.png ADDED