安装
Github:https://github.com/Akegarasu/lora-scripts
使用
在 sd-models 下放入你的基准模型,比如 Anything
创建 train 文件夹,并且创建新的你 lora 名字文件夹 example,然后在新文件夹里创建新文件夹 6_example 6是训练次数,可以 5-20 之间
然后在 webui train tab 下面预处理图片,打开 Use deepbooru for caption 和 Auto focal point crop。处理完的图片放入 train 文件夹
然后修改 train.ps1 我的一个例子:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
$pretrained_model = "./sd-models/anything-v4.5.ckpt" $train_data_dir = "./train/summer"
$resolution = "632,1000" $batch_size = 3 $max_train_epoches = 20 $save_every_n_epochs = 2 $network_dim = 32 $network_alpha = 32 $clip_skip = 2 $train_unet_only = 0 $train_text_encoder_only = 0
$lr = "1e-4" $unet_lr = "1e-4" $text_encoder_lr = "1e-5" $lr_scheduler = "cosine_with_restarts" $lr_warmup_steps = 0
$output_name = "summer" $save_model_as = "safetensors"
$network_weights = "" $min_bucket_reso = 256 $max_bucket_reso = 1024
.\venv\Scripts\activate
$Env:HF_HOME = "huggingface" $ext_args = [System.Collections.ArrayList]::new()
if ($train_unet_only) { [void]$ext_args.Add("--network_train_unet_only") }
if ($train_text_encoder_only) { [void]$ext_args.Add("--network_train_text_encoder_only") }
if ($network_weights) { [void]$ext_args.Add("--network_weights=" + $network_weights) }
accelerate launch --num_cpu_threads_per_process=8 "./sd-scripts/train_network.py" ` --enable_bucket ` --pretrained_model_name_or_path=$pretrained_model ` --train_data_dir=$train_data_dir ` --output_dir="./output" ` --logging_dir="./logs" ` --resolution=$resolution ` --network_module=networks.lora ` --max_train_epochs=$max_train_epoches ` --learning_rate=$lr ` --unet_lr=$unet_lr ` --text_encoder_lr=$text_encoder_lr ` --lr_scheduler=$lr_scheduler ` --lr_warmup_steps=$lr_warmup_steps ` --network_dim=$network_dim ` --network_alpha=$network_alpha ` --output_name=$output_name ` --train_batch_size=$batch_size ` --save_every_n_epochs=$save_every_n_epochs ` --mixed_precision="fp16" ` --save_precision="fp16" ` --seed="1337" ` --cache_latents ` --clip_skip=$clip_skip ` --prior_loss_weight=1 ` --max_token_length=225 ` --caption_extension=".txt" ` --save_model_as=$save_model_as ` --min_bucket_reso=$min_bucket_reso ` --max_bucket_reso=$max_bucket_reso ` --xformers --shuffle_caption --use_8bit_adam $ext_args
Write-Output "Train finished" Read-Host | Out-Null ;
|
因为我们是朋友,所以你可以使用我的文字,但请注明出处:https://alwa.info