haor commited on
Commit
6f7bad9
1 Parent(s): 10dbb0f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -44
README.md CHANGED
@@ -15,7 +15,51 @@ widget:
15
  example_title: "example 1boy"
16
  ---
17
  # Evt_V4-preview
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  base model:[ACertainty](https://huggingface.co/JosephusCheung/ACertainty)
20
  Trained for 10 epochs using around 550k anime-style images(pixiv and yandere).
21
  Resolution: 512
@@ -66,51 +110,7 @@ lr_scheduler:
66
  eta_min: 6e-7
67
  last_epoch: -1
68
  ```
69
-
70
  Spent about 300 V100 GPU hours.
71
-
72
- ## 🧨 Diffusers
73
-
74
- This model can be used just like any other Stable Diffusion model. For more information,
75
- please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
76
-
77
- You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or FLAX/JAX.
78
-
79
- ```python
80
- from diffusers import StableDiffusionPipeline
81
- import torch
82
-
83
- model_id = "haor/Evt_V4-preview"
84
- branch_name= "main"
85
-
86
- pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
87
- pipe = pipe.to("cuda")
88
-
89
- prompt = "1girl"
90
- image = pipe(prompt).images[0]
91
-
92
- image.save("./1girl.png")
93
- ```
94
-
95
- ## Examples
96
-
97
- **Prompt1:**
98
- ![Prompt1](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-05-09.png)
99
- ![Prompt1](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-08-53.png)
100
- ```
101
- 1girl in black serafuku standing in a field solo, food, fruit, lemon, bubble, planet, moon, orange \(fruit\), lemon slice, leaf, fish, orange slice, by (tabi:1.25), spot color, looking at viewer, closeup cowboy shot
102
- Negative prompt: (bad:0.81), (comic:0.81), (cropped:0.81), (error:0.81), (extra:0.81), (low:0.81), (lowres:0.81), (speech:0.81), (worst:0.81), (blush:0.9), 2koma, 3koma, 4koma, collage, lipstick
103
- Steps: 20, Sampler: DPM++ SDE Karras, CFG scale: 7, Seed: 2285895007, Size: 512x1152, Denoising strength: 0.7, Clip skip: 2
104
- ```
105
- **Prompt2:**
106
- ![Prompt2](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-11-36.png)
107
- ![Prompt2](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-15-39.png)
108
- ```
109
- {Masterpiece, Kaname_Madoka, tall and long double tails, well rooted hair, (pink hair), pink eyes, crossed bangs, ojousama, jk, thigh bandages, wrist cuffs, (pink bow: 1.2)}, plain color, sketch, masterpiece, high detail, masterpiece portrait, best quality, ray tracing, {:<, look at the edge}
110
- Negative prompt: ((((ugly)))), (((duplicate))), ((morbid)), ((mutilated)),extra fingers, mutated hands, ((poorly drawn hands)), ((poorly drawn face)), (((bad proportions))), ((extra limbs)), (((deformed))), (((disfigured))), cloned face, gross proportions, (malformed limbs), ((missing arms)), ((missing legs)), (((extra arms))), (((extra legs))), too many fingers, (((long neck))), (((low quality))), normal quality, blurry, bad feet, text font ui, ((((worst quality)))), anatomical nonsense, (((bad shadow))), unnatural body, liquid body, 3D, 3D game, 3D game scene, 3D character, bad hairs, poorly drawn hairs, fused hairs, big muscles, bad face, extra eyes, furry, pony, mosaic, disappearing calf, disappearing legs, extra digit, fewer digit, fused digit, missing digit, fused feet, poorly drawn eyes, big face, long face, bad eyes, thick lips, obesity, strong girl, beard,Excess legs
111
- Steps: 20, Sampler: DPM++ SDE Karras, CFG scale: 7, Seed: 2468255263, Size: 512x1152, Denoising strength: 0.7, Clip skip: 2
112
- ```
113
-
114
  ## License
115
 
116
  This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
@@ -120,3 +120,4 @@ The CreativeML OpenRAIL License specifies:
120
  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
121
  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)
122
  [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
 
 
15
  example_title: "example 1boy"
16
  ---
17
  # Evt_V4-preview
18
+ EVT series is an experimental project for finetune with large datasets on animation style model.
19
+ Evt_V4 uses a larger dataset than before, and its cosine similarity with ACertainty reaches 85%.
20
+ It may behave differently from other models, hope you enjoy it.
21
+ ## 🧨 Diffusers
22
+
23
+ This model can be used just like any other Stable Diffusion model. For more information,
24
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
25
+
26
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or FLAX/JAX.
27
+
28
+ ```python
29
+ from diffusers import StableDiffusionPipeline
30
+ import torch
31
+
32
+ model_id = "haor/Evt_V4-preview"
33
+ branch_name= "main"
34
+
35
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
36
+ pipe = pipe.to("cuda")
37
+
38
+ prompt = "1girl"
39
+ image = pipe(prompt).images[0]
40
+
41
+ image.save("./1girl.png")
42
+ ```
43
 
44
+ ## Examples
45
+
46
+ **Prompt1:**
47
+ ![Prompt1](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-05-09.png)
48
+ ![Prompt1](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-08-53.png)
49
+ ```
50
+ 1girl in black serafuku standing in a field solo, food, fruit, lemon, bubble, planet, moon, orange \(fruit\), lemon slice, leaf, fish, orange slice, by (tabi:1.25), spot color, looking at viewer, closeup cowboy shot
51
+ Negative prompt: (bad:0.81), (comic:0.81), (cropped:0.81), (error:0.81), (extra:0.81), (low:0.81), (lowres:0.81), (speech:0.81), (worst:0.81), (blush:0.9), 2koma, 3koma, 4koma, collage, lipstick
52
+ Steps: 20, Sampler: DPM++ SDE Karras, CFG scale: 7, Seed: 2285895007, Size: 512x1152, Denoising strength: 0.7, Clip skip: 2
53
+ ```
54
+ **Prompt2:**
55
+ ![Prompt2](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-11-36.png)
56
+ ![Prompt2](https://huggingface.co/haor/Evt_V4-preview/resolve/main/samples/image_2023-01-09_17-15-39.png)
57
+ ```
58
+ {Masterpiece, Kaname_Madoka, tall and long double tails, well rooted hair, (pink hair), pink eyes, crossed bangs, ojousama, jk, thigh bandages, wrist cuffs, (pink bow: 1.2)}, plain color, sketch, masterpiece, high detail, masterpiece portrait, best quality, ray tracing, {:<, look at the edge}
59
+ Negative prompt: ((((ugly)))), (((duplicate))), ((morbid)), ((mutilated)),extra fingers, mutated hands, ((poorly drawn hands)), ((poorly drawn face)), (((bad proportions))), ((extra limbs)), (((deformed))), (((disfigured))), cloned face, gross proportions, (malformed limbs), ((missing arms)), ((missing legs)), (((extra arms))), (((extra legs))), too many fingers, (((long neck))), (((low quality))), normal quality, blurry, bad feet, text font ui, ((((worst quality)))), anatomical nonsense, (((bad shadow))), unnatural body, liquid body, 3D, 3D game, 3D game scene, 3D character, bad hairs, poorly drawn hairs, fused hairs, big muscles, bad face, extra eyes, furry, pony, mosaic, disappearing calf, disappearing legs, extra digit, fewer digit, fused digit, missing digit, fused feet, poorly drawn eyes, big face, long face, bad eyes, thick lips, obesity, strong girl, beard,Excess legs
60
+ Steps: 20, Sampler: DPM++ SDE Karras, CFG scale: 7, Seed: 2468255263, Size: 512x1152, Denoising strength: 0.7, Clip skip: 2
61
+ ```
62
+ ## Training
63
  base model:[ACertainty](https://huggingface.co/JosephusCheung/ACertainty)
64
  Trained for 10 epochs using around 550k anime-style images(pixiv and yandere).
65
  Resolution: 512
 
110
  eta_min: 6e-7
111
  last_epoch: -1
112
  ```
 
113
  Spent about 300 V100 GPU hours.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  ## License
115
 
116
  This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
 
120
  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
121
  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)
122
  [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
123
+