一个有趣的扩展,整合了 图库
,下载
,去重
,聚类
,可以快速搜集、分类、处理你的图片。
A funny extension that integrates image-browsing
, downloader
, deduplicate
, cluster
, can quickly collect, classify and process your images.
我只是把它们整合起来,并独立运行
WebUI部分借鉴了AUTOMATIC1111/stable-diffusion-webui
来自zanllp/sd-webui-infinite-image-browsing
来自WSH032/Gelbooru-API-Downloader
来自WSH032/image-deduplicate-cluster-webui
来自toshiaki1729/dataset-tag-editor-standalone
dataset-tag-editor-standalone 完整展示
如果你觉得此项目有用💪,可以去 点一颗小星星🤤,非常感谢你⭐
遇到问题可以在Github上提issue ❓
08 Aug.2023 2023/08/08
image-deduplicate-cluster-webui
version to 2.0.1
sd-webui-infinite-image-browsing
version to 2023-8-4 fc1853c
dataset-tag-editor-standalone
version to 2023-8-8 2569280
weibui.WebuiUtils._reload_script_modules
以供在Jupyter中使用时,重新载入、更新包与模块
gradio.routes.templates.TemplateResponse
而造成的<script scr>
标签重复及顺序错误的问题部署使用时更新方式:
本项目带有子模块,请使用以下命令拉取新的更新,并再次重复 安装 Install
,以免有新的依赖要求
git pull --recurse-submodules
如果你不会使用git命令,可以运行update.ps1
完成更新
Notebook Name | Description | Link | Old-Version |
---|---|---|---|
fast_dataset_maker NEW |
整合了 图库 ,下载 ,去重 ,聚类 的图片数据集WebUI |
Notebook Name | Description | Link | Old-Version |
---|---|---|---|
Colab_Lora_train | 基于Akegarasu/lora-scripts的定制化Colab notebook | ||
kohya_train_webui NEW |
基于WSH032/kohya-config-webui的WebUI版Colab notebook |
请尽量使用python >= 3.10
运行以下git命令克隆仓库并初始化子模块
git clone https://github.com/WSH032/sd-webui-fast-dataset-maker.git --recurse-submodules
安装依赖
install.ps1
安装依赖pip install -r requirements.txt
安装依赖# 对于通过 `requirements.txt` 安装的用户请注意
# 如果你想使用 Torch Cuda 或者 GPU 进行加速
# 请打开 `requirements.txt` 修改安装 torch=2.0.0 + cuda118
# If you want to install with CUDA, please use the following command:
--extra-index-url https://download.pytorch.org/whl/cu118
torch==2.0.0+cu118
torchvision==0.15.1+cu118
此WebUI使用了Gradio非官方文档的操作方法,并在
gradio <=3.35.2, >=3.29.0
进行了测试,但不保证未来Gradio官方不会修改相应接口
requirements.txt
内只要求了gradio >= 3.31.0
,如果出现问题请尝试降级至gradio <=3.35.2, >=3.31.0
或者使用
requirements_versions.txt
安装依赖
请参阅原作者各自的仓库,几乎所有扩展均可做为 SD-WebUI 的扩展使用
dataset-tag-editor-standalone
扩展,在以原图方式,处理超过50张图片时候,会消耗巨大内存和时间,并且可能会出现图片过滤器不工作的情况
v1.1.0
更新中,已经默认为dataset-tag-editor-standalone
设置启用512分辨率缩略图Please refer to the original author's repository for the specific usage of each extension
各插件具体的使用方法请查看原作者仓库自述文件,这里不再重复
run_webui.ps1
python webui.py # 使用 `--help` 查看可选参数
# 例如
# python webui.py --sd_webui_config="config.json" --update_image_index --inbrowser
请参阅 Colab 示例 或者 run_webui.ipynb
from webui import WebuiUtils
# params for extension
# 为各扩展设置参数,具体参数请参阅 `extensions/extensions_preload.py`
# 或者运行 `WebuiUtils(help=True)` 查看帮助信息
# Pyhton 接口参数 与 命令行参数一致
webui_utils = WebuiUtils(
# for image_browsing setting
sd_webui_config = "config.json",
extra_paths = ["path"],
update_image_index = True,
# disable extension
disable_image_browsing = False,
disable_deduplicate_cluster = False,
disable_tag_editor = False,
)
"""
The args of `queue()` and `launch()` are the same as `gradio.Blocks.queue()` and `gradio.Blocks.launch()`
接下来把它当成 `gradio.Blocks` 使用就好,所有接口与 `gradio.Blocks` 一致
"""
webui_utils.queue(concurrency_count=2) # equal to `gradio.Blocks.queue(concurrency_count=2)`
webui_utils.launch(debug=True, server_port=7860) # equal to `gradio.Blocks.launch(debug=True, server_port=7860)`