mirror of https://github.com/bmaltais/kohya_ss
Address issue 188
parent
27c91db673
commit
2ea7387fba
|
|
@ -0,0 +1,4 @@
|
||||||
|
*.sh text eol=lf
|
||||||
|
*.ps1 text eol=crlf
|
||||||
|
*.bat text eol=crlf
|
||||||
|
*.cmd text eol=crlf
|
||||||
|
|
@ -306,6 +306,7 @@ This will store a backup file with your current locally installed pip packages a
|
||||||
- This feature is not tested with all combinations of datasets and training scripts, so there may be bugs.
|
- This feature is not tested with all combinations of datasets and training scripts, so there may be bugs.
|
||||||
- Added workaround for an error that occurs when training with `fp16` or `bf16` in `fine_tune.py`.
|
- Added workaround for an error that occurs when training with `fp16` or `bf16` in `fine_tune.py`.
|
||||||
- Implemented DyLoRA GUI support. There will now be a new 'DyLoRA Unit` slider when the LoRA type is selected as `kohya DyLoRA` to specify the desired Unit value for DyLoRA training.
|
- Implemented DyLoRA GUI support. There will now be a new 'DyLoRA Unit` slider when the LoRA type is selected as `kohya DyLoRA` to specify the desired Unit value for DyLoRA training.
|
||||||
|
- Update gui.bat and gui.ps1 based on: https://github.com/bmaltais/kohya_ss/issues/188
|
||||||
|
|
||||||
* 2023/04/09 (v21.5.2)
|
* 2023/04/09 (v21.5.2)
|
||||||
|
|
||||||
|
|
|
||||||
1
gui.bat
1
gui.bat
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
:: Activate the virtual environment
|
:: Activate the virtual environment
|
||||||
call .\venv\Scripts\activate.bat
|
call .\venv\Scripts\activate.bat
|
||||||
|
set PATH=%PATH%;%~dp0venv\Lib\site-packages\torch\lib
|
||||||
|
|
||||||
:: Validate the requirements and store the exit code
|
:: Validate the requirements and store the exit code
|
||||||
python.exe .\tools\validate_requirements.py
|
python.exe .\tools\validate_requirements.py
|
||||||
|
|
|
||||||
1
gui.ps1
1
gui.ps1
|
|
@ -1,5 +1,6 @@
|
||||||
# Activate the virtual environment
|
# Activate the virtual environment
|
||||||
& .\venv\Scripts\activate
|
& .\venv\Scripts\activate
|
||||||
|
$env:PATH += ";$($MyInvocation.MyCommand.Path)\venv\Lib\site-packages\torch\lib"
|
||||||
|
|
||||||
# Validate the requirements and store the exit code
|
# Validate the requirements and store the exit code
|
||||||
python.exe .\tools\validate_requirements.py
|
python.exe .\tools\validate_requirements.py
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue