Skip to content

Instantly share code, notes, and snippets.

@vipzero
Last active June 2, 2023 11:36
Show Gist options
  • Save vipzero/e25cb6e5263c303bf41edbbe58455ba9 to your computer and use it in GitHub Desktop.
Save vipzero/e25cb6e5263c303bf41edbbe58455ba9 to your computer and use it in GitHub Desktop.

niji journey, Midjourney で画像生成の流れ

歴3日くらい時点での整理

%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%

flowchart LR;

subgraph theme[準備]

  start1[テーマ選定]
  prefi[構図の下絵を描く]
  init[初期プロンプト作成]

  start1 -.-> prefi -.-> init
  start1 --> init
end


subgraph generate[作成]
  init --> imagine
  imagine[生成] ---> check[確認と選定] --> prompt
  prompt[プロンプト調整] --> imagine

  check --> findtheme[テーマ発掘]
end

findtheme-->start1


subgraph final[仕上げ処理]
  check --> fine
  subgraph fine[加筆処理]
    trim[トリミング]
    photoshop[generative fill]
  end
  fine --> title
    subgraph title[作品名付]
    chatgpt2[Chat GPT と作品名の議論]
  end
end


テーマ選定

  • やりたいテーマあり
  • 特になし
    • 抽象的な表現で始める
    • AI ピクターズの今日のテーマ
  • suffix --ar やキーワードなど設定

プロンプト調整

  • 呪文ノウハウ記事を参考にする
  • 生成したいものに似た作品を探す
  • 同じモデルの呪文あり検索
  • Discord 検索
  • 表現を変える, 別のもので例える
  • Chat GPT にコンセプトを説明させる(兼翻訳)
  • 重みづけ

    • 数字 word::-0.5 (word :) ()++ ()2
      • -0.5 ~ 2
      • ネガティブプロンプト ::-0.5
      • --no word
    • 括弧 (word)++ `((word))
      • 1.1 倍

    ネガティブプロンプト

  • padding token

    • 別のプロンプトにかからないようにする
    • red hair, _ shoes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment