1
0
Fork 0

Use a generic filename for the model

So it won't change if a newer version is uploaded.
This commit is contained in:
Luca Beltrame 2023-06-17 11:39:46 +02:00
parent 40183894f8
commit 226020b05a
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -6,9 +6,11 @@ set -o pipefail
output_name="$1"
pushd /workspace/kohya_ss
accelerate launch \
--num_cpu_threads_per_process=10 "train_network.py" \
--enable_bucket --pretrained_model_name_or_path="/workspace/AnyLoRA_noVae_fp16-pruned.ckpt" \
--enable_bucket --pretrained_model_name_or_path="/workspace/model.safetensors" \
--train_data_dir="/workspace/images/train/img" \
--resolution=512 \
--output_dir="/workspace/images/train/model" \
@ -42,3 +44,5 @@ accelerate launch \
--shuffle_caption \
--xformers \
--bucket_no_upscale
popd