a cat walking under apple trees style by Stable Diffusion
2 min readOct 5, 2022
After generating images and videos with Stable Diffusion, it is time to work with style:
blue_stability generate image \
~dryrun \
cat-salvador-dali \
- \
"a cat walking under apple trees style by Salvador Dali"
Here are three examples.
Next, automation to extend to 20
artists.
abcli select cat-under-trees-v2
abcli script
# create the script
abcli script source
Here is the script:
#! /usr/bin/env bashfunction runme() {
local sentence="a cat walking under apple trees"
local prefix="cat-under-trees"
local list_of_artists="Leonardo-da-Vinci,Vincent-van-Gogh,Michelangelo,Gustav-Klimt,Claude-Monet,Paul-Cézanne,Frida-Kahlo,Salvador-Dali,Jackson-Pollock,Johannes-Vermeer,Wassily-Kandinsky,Edvard-Munch,Paul-Gauguin,Pablo-Picasso,Rembrandt,Diego-Velázquez,Henri-Matisse,Andy-Warhol,Edgar-Degas,J.-M.-W.-Turner,Caravaggio" local artist
for artist in $(echo $list_of_artists | tr , " ") ; do
blue_stability generate image \
~dryrun \
$(python3 -c "print('$artist'.lower().replace(' ','-'))") \
- \
"$sentence style by $(echo $artist | tr - " ")"
done abcli_log "completed."
}runme $@
And here are some of the results.