Last active
July 21, 2023 04:03
-
-
Save safa-dayo/12680f0b0206c57ffc92f48705c7c9b0 to your computer and use it in GitHub Desktop.
Google Colab上で動くStable Diffusion web UIで生成した画像を、ZIPにまとめてダウンロードするためのコマンド
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 使い方 ### | |
# 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