Skip to content

Instantly share code, notes, and snippets.

@safa-dayo
Last active July 21, 2023 04:03
Show Gist options
  • Save safa-dayo/12680f0b0206c57ffc92f48705c7c9b0 to your computer and use it in GitHub Desktop.
Save safa-dayo/12680f0b0206c57ffc92f48705c7c9b0 to your computer and use it in GitHub Desktop.
Google Colab上で動くStable Diffusion web UIで生成した画像を、ZIPにまとめてダウンロードするためのコマンド
### 使い方 ###
# Google Colab上で空のコードブロックを一つ追加し、こちらのコードを挿入して実行すれば、生成画像のダウンロード処理が開始されます
# 実行する際はStable Diffusion web UIの実行は停止した上で行う必要があります
#############
# ZIP化
!zip -r /content/file.zip /content/stable-diffusion-webui/outputs/
# ダウンロード
from google.colab import files
files.download("/content/file.zip")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment