Skip to content

Lycantant/invoke-ai-gui-colab

 
 

Repository files navigation

Google Colab for Invoke Ai, using the Anything v3 model. ✅ Tested 17/01/2023

Open In Colab

Google Colab for Invoke Ai, using the ElyOrangeMix model ❌ ERROR!! DONT USE

Open In Colab

Google Colab for Invoke Ai, using the Openjourney model. ✅ Tested 19/01/2023

Open In Colab

Google Colab for Invoke Ai, using the Seek.art MEGA v1 model. ✅ Tested 19/01/2023

Open In Colab

Google Colab for Invoke Ai, using the trinart_characters_19_2m (v1) model. ✅ Tested 17/01/2023

Open In Colab

Google Colab for Invoke Ai, using the Waifu Diffusion v1.4 model ❌ ERROR!! DONT USE

Open In Colab


  1. Negative and Unconditioned Prompts.
    Any words between a pair of square brackets will instruct Stable Diffusion to attempt to ban the concept from the generated image. this is a test prompt [not really] to make you understand [cool] how this works. In the above statement, the words not really cool will be ignored by Stable Diffusion.
  2. Prompt Syntax Features
    1. Attention weighting
      Append a word or phrase with - or +, or a weight between 0 and 2 (1=default), to decrease or increase "attention" (= a mix of per-token CFG weighting multiplier and, for -, a weighted blend with the prompt without the term).
      a tall thin man picking apricots = normal.
      a tall thin man picking apricots+ = more apricots.
      a tall thin man picking apricots++ = more and more apricots.
      a tall thin man picking apricots+++ = how many apricots do you want?
      a tall thin man picking apricots++++ = i'm sure the man that picking apricots is gone 🤣
      a tall thin man picking apricots- = less apricots.
      a tall thin man picking apricots-- = less and less apricots.
      a tall thin man picking apricots--- = do you really hate apricots?
      a tall thin man picking apricots---- = now the apricots are completely gone 😭
      Okay, enough with the boring jokes. Now let's look at the next feature.
    2. Escaping parantheses () and speech marks ""
      If the model you are using has parentheses () or speech marks "" as part of its syntax, you will need to "escape" these using a backslash, so that (my_keyword) becomes \(my_keyword\). Otherwise, the prompt parser will attempt to interpret the parentheses as part of the prompt syntax and it will get confused.
  3. Prompt Blending
    You may blend together different sections of the prompt to explore the AI's latent semantic space and generate interesting (and often surprising!) variations. The syntax is: blue sphere:0.25 red cube:0.75 hybrid This will tell the sampler to blend 25% of the concept of a blue sphere with 75% of the concept of a red cube. The blend weights can use any combination of integers and floating point numbers, and they do not need to add up to 1. Everything to the left of the :XX up to the previous :XX is used for merging, so the overall effect is:
    0.25 * "blue sphere" + 0.75 * "white duck" + hybrid

For the rest please read yourself in the official documentation.


It's a modified version of pinterkrisztian's notebook

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 69.4%
  • Python 25.9%
  • Shell 4.7%