toshiaki1729 / dataset-tag-editor-standalone

WebUI to edit dataset captions for txt2img models
MIT License
134 stars 15 forks source link

launch_user.bat didn't accept commandline_args on windows #1

Closed ruSauron closed 1 year ago

ruSauron commented 1 year ago

To fix modify last line from call ".\scripts\launch.bat %COMMANDLINE_ARGS%" to call ".\scripts\launch.bat" %COMMANDLINE_ARGS%

I tried to make it into a commit 3f0bf56345589889a1c1b973715eabdccd873700

ruSauron commented 1 year ago

Another small issue. install.bat didnt installed torch but it can be my issue so i've used following command after venv\scripts\activate.bat: pip3 install torch==1.13.1+cu117 torchvision>=0.13.1+cu117 torchaudio>=0.13.1+cu117 --extra-index-url https://download.pytorch.org/whl/cu117 --no-cache-dir

toshiaki1729 commented 1 year ago

Added the description about PyTorch version and in the Requirements section. PyTorch>=1.10.0 is from requirements of onnx-pytorch (TorchDeepDanbooru is generated with it).

toshiaki1729 commented 1 year ago

Plus, added command line option to force install pytorch, --force-install-torch {cu117, cu118, cpu}.