Commit
·
fbb0866
1
Parent(s):
af87908
chore: readme
Browse files
README.md
CHANGED
@@ -24,7 +24,7 @@ A good resource for tag fonts is [dafont.com](https://www.dafont.com/theme.php?c
|
|
24 |
|
25 |
## Usage
|
26 |
|
27 |
-
Following examples use a CLI to **diffusers**, which you can find on [GitHub](https://github.com/artificialhoney/
|
28 |
|
29 |
```bash
|
30 |
# Define base prompt
|
@@ -33,13 +33,13 @@ prompt="graffiti on black background, in the colors purple and yellow"
|
|
33 |
|
34 |
```bash
|
35 |
# Extend prompt and add compel syntax (https://github.com/damian0815/compel)
|
36 |
-
prompt=$(
|
37 |
# ('graffiti on black background, in the colors purple and yellow', 'Octane Render, Cinematic, 8k').and()
|
38 |
```
|
39 |
|
40 |
```bash
|
41 |
# Generate image
|
42 |
-
echo "$prompt" |
|
43 |
```
|
44 |
|
45 |
## Examples
|
|
|
24 |
|
25 |
## Usage
|
26 |
|
27 |
+
Following examples use a CLI to **diffusers**, which you can find on [GitHub](https://github.com/artificialhoney/giger):
|
28 |
|
29 |
```bash
|
30 |
# Define base prompt
|
|
|
33 |
|
34 |
```bash
|
35 |
# Extend prompt and add compel syntax (https://github.com/damian0815/compel)
|
36 |
+
prompt=$(giger prompt "$prompt" --rendering_engine "Octane Render" --lightning_style "Cinematic" --resolution "8k" --compel_style "subtle")
|
37 |
# ('graffiti on black background, in the colors purple and yellow', 'Octane Render, Cinematic, 8k').and()
|
38 |
```
|
39 |
|
40 |
```bash
|
41 |
# Generate image
|
42 |
+
echo "$prompt" | giger image --output ./graffiti --name sketch --seed 0 --batch_count 10 --width 768 --height 432 --lora_model "OedoSoldier/detail-tweaker-lora" --lora_filename "add_detail.safetensors" --lora_scale 0.75 --input ./images/sketch.png --controlnet_model "artificialhoney/graffiti" --controlnet_conditioning_scale 0.75
|
43 |
```
|
44 |
|
45 |
## Examples
|