Update README.md
Browse files
README.md
CHANGED
@@ -34,7 +34,7 @@ Special VAE used for training: None.
|
|
34 |
|
35 |
## Trigger words
|
36 |
|
37 |
-
You should use
|
38 |
|
39 |
## Download model
|
40 |
|
@@ -49,13 +49,23 @@ Weights for this model are available in Safetensors format.
|
|
49 |
#### How to use
|
50 |
|
51 |
```python
|
52 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
```
|
54 |
|
55 |
#### Limitations and bias
|
56 |
|
57 |
-
|
58 |
|
59 |
## Training details
|
60 |
|
61 |
-
|
|
|
34 |
|
35 |
## Trigger words
|
36 |
|
37 |
+
You should use ""In the style of irasutoya," to trigger the image generation.
|
38 |
|
39 |
## Download model
|
40 |
|
|
|
49 |
#### How to use
|
50 |
|
51 |
```python
|
52 |
+
#Adjusted guidance_scale + Negative Prompt
|
53 |
+
width = 1024
|
54 |
+
height = 1024
|
55 |
+
num_inference_steps = 60
|
56 |
+
guidance_scale = 5.5
|
57 |
+
# prompt = "In the style of irasutoya, 1girl, lightblue collared shirt, smiling with mouth closed, wearing glasses, eyes not visible, furrowed eyebrows, black bobbed parted hair" # @param
|
58 |
+
prompt = "In the style of irasutoya a boy wearing a darkcyan shirt, smiling with mouth closed, furrowing eyebrows, black pouty hair, upper body" # @param
|
59 |
+
negative_prompt = "duplicates, worst quality, bad quality, low quality, scan artifacts, jaggy lines, unclear" #@param
|
60 |
+
|
61 |
+
image = pipe(prompt, num_inference_steps=num_inference_steps, width=width, height=height, guidance_scale=guidance_scale).images[0]
|
62 |
+
image
|
63 |
```
|
64 |
|
65 |
#### Limitations and bias
|
66 |
|
67 |
+
pending
|
68 |
|
69 |
## Training details
|
70 |
|
71 |
+
pending
|