1 Star 5 Fork 2

stable diffusion webui/lora-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
train_by_toml.ps1 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
Akegarasu 提交于 2024-01-06 17:42 . update scripts
# LoRA train script by @Akegarasu
$config_file = "./config/default.toml" # config file | 使用 toml 文件指定训练参数
$sample_prompts = "./config/sample_prompts.txt" # prompt file for sample | 采样 prompts 文件, 留空则不启用采样功能
$sdxl = 0 # train sdxl LoRA | 训练 SDXL LoRA
$multi_gpu = 0 # multi gpu | 多显卡训练 该参数仅限在显卡数 >= 2 使用
# ============= DO NOT MODIFY CONTENTS BELOW | 请勿修改下方内容 =====================
# Activate python venv
.\venv\Scripts\activate
$Env:HF_HOME = "huggingface"
$Env:PYTHONUTF8 = 1
$ext_args = [System.Collections.ArrayList]::new()
$launch_args = [System.Collections.ArrayList]::new()
if ($multi_gpu) {
[void]$launch_args.Add("--multi_gpu")
[void]$launch_args.Add("--num_processes=2")
}
if ($sdxl) {
[void]$launch_args.Add("--sdxl")
}
# run train
$script_name = if ($sdxl) { "sdxl_train_network.py" } else { "train_network.py" }
python -m accelerate.commands.launch $launch_args --num_cpu_threads_per_process=8 "./sd-scripts/$script_name" `
--config_file=$config_file `
--sample_prompts=$sample_prompts `
$ext_args
Write-Output "Train finished"
Read-Host | Out-Null
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PowerShell
1
https://gitee.com/stable_diffusion/lora-scripts.git
[email protected]:stable_diffusion/lora-scripts.git
stable_diffusion
lora-scripts
lora-scripts
main

搜索帮助