2022-12-20 14:15:17 +00:00
|
|
|
import gradio as gr
|
|
|
|
import json
|
|
|
|
import math
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import pathlib
|
2022-12-21 14:05:06 +00:00
|
|
|
import argparse
|
2022-12-20 14:15:17 +00:00
|
|
|
from library.common_gui import (
|
|
|
|
get_folder_path,
|
|
|
|
get_file_path,
|
|
|
|
get_saveasfile_path,
|
2023-01-09 16:48:57 +00:00
|
|
|
save_inference_file,
|
2023-01-16 00:59:40 +00:00
|
|
|
gradio_advanced_training,
|
|
|
|
run_cmd_advanced_training,
|
|
|
|
gradio_training,
|
|
|
|
run_cmd_advanced_training,
|
|
|
|
gradio_config,
|
|
|
|
gradio_source_model,
|
2023-01-15 20:03:04 +00:00
|
|
|
color_aug_changed,
|
2023-01-16 00:59:40 +00:00
|
|
|
run_cmd_training,
|
2023-03-05 15:34:09 +00:00
|
|
|
# set_legacy_8bitadam,
|
2023-03-04 23:56:22 +00:00
|
|
|
update_my_data,
|
2023-03-20 12:47:00 +00:00
|
|
|
check_if_model_exist,
|
2023-03-01 18:14:47 +00:00
|
|
|
)
|
|
|
|
from library.tensorboard_gui import (
|
2023-02-27 00:49:22 +00:00
|
|
|
gradio_tensorboard,
|
|
|
|
start_tensorboard,
|
|
|
|
stop_tensorboard,
|
2022-12-20 14:15:17 +00:00
|
|
|
)
|
2022-12-22 16:51:34 +00:00
|
|
|
from library.utilities import utilities_tab
|
2023-03-07 00:15:02 +00:00
|
|
|
from library.sampler_gui import sample_gradio_config, run_cmd_sample
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
folder_symbol = '\U0001f4c2' # 📂
|
|
|
|
refresh_symbol = '\U0001f504' # 🔄
|
|
|
|
save_style_symbol = '\U0001f4be' # 💾
|
|
|
|
document_symbol = '\U0001F4C4' # 📄
|
|
|
|
|
2023-03-04 23:56:22 +00:00
|
|
|
PYTHON = 'python3' if os.name == 'posix' else './venv/Scripts/python.exe'
|
|
|
|
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
def save_configuration(
|
|
|
|
save_as,
|
|
|
|
file_path,
|
|
|
|
pretrained_model_name_or_path,
|
|
|
|
v2,
|
|
|
|
v_parameterization,
|
|
|
|
train_dir,
|
|
|
|
image_folder,
|
|
|
|
output_dir,
|
|
|
|
logging_dir,
|
|
|
|
max_resolution,
|
2023-01-02 18:07:17 +00:00
|
|
|
min_bucket_reso,
|
|
|
|
max_bucket_reso,
|
|
|
|
batch_size,
|
|
|
|
flip_aug,
|
|
|
|
caption_metadata_filename,
|
|
|
|
latent_metadata_filename,
|
|
|
|
full_path,
|
2022-12-20 14:15:17 +00:00
|
|
|
learning_rate,
|
|
|
|
lr_scheduler,
|
|
|
|
lr_warmup,
|
|
|
|
dataset_repeats,
|
|
|
|
train_batch_size,
|
|
|
|
epoch,
|
|
|
|
save_every_n_epochs,
|
|
|
|
mixed_precision,
|
|
|
|
save_precision,
|
|
|
|
seed,
|
|
|
|
num_cpu_threads_per_process,
|
|
|
|
train_text_encoder,
|
|
|
|
create_caption,
|
2023-01-02 18:07:17 +00:00
|
|
|
create_buckets,
|
2022-12-20 14:15:17 +00:00
|
|
|
save_model_as,
|
|
|
|
caption_extension,
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam,
|
2023-01-02 18:07:17 +00:00
|
|
|
xformers,
|
2023-01-06 00:16:13 +00:00
|
|
|
clip_skip,
|
2023-01-09 00:31:44 +00:00
|
|
|
save_state,
|
|
|
|
resume,
|
2023-01-09 01:55:41 +00:00
|
|
|
gradient_checkpointing,
|
|
|
|
gradient_accumulation_steps,
|
|
|
|
mem_eff_attn,
|
|
|
|
shuffle_caption,
|
2023-01-09 16:48:57 +00:00
|
|
|
output_name,
|
2023-01-10 14:38:32 +00:00
|
|
|
max_token_length,
|
2023-01-15 16:05:22 +00:00
|
|
|
max_train_epochs,
|
2023-01-16 00:59:40 +00:00
|
|
|
max_data_loader_n_workers,
|
|
|
|
full_fp16,
|
|
|
|
color_aug,
|
|
|
|
model_list,
|
|
|
|
cache_latents,
|
2023-02-06 01:07:00 +00:00
|
|
|
use_latent_files,
|
|
|
|
keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale,
|
|
|
|
random_crop,
|
|
|
|
bucket_reso_steps,
|
2023-03-02 00:24:11 +00:00
|
|
|
caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate,
|
|
|
|
optimizer,
|
|
|
|
optimizer_args,
|
|
|
|
noise_offset,
|
2023-03-07 00:15:02 +00:00
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
2023-03-20 12:47:00 +00:00
|
|
|
sample_prompts,
|
2023-03-28 15:54:42 +00:00
|
|
|
additional_parameters,
|
|
|
|
vae_batch_size,
|
|
|
|
min_snr_gamma,
|
2022-12-20 14:15:17 +00:00
|
|
|
):
|
2023-01-09 16:48:57 +00:00
|
|
|
# Get list of function parameters and values
|
|
|
|
parameters = list(locals().items())
|
2023-01-16 00:59:40 +00:00
|
|
|
|
2022-12-20 14:15:17 +00:00
|
|
|
original_file_path = file_path
|
|
|
|
|
|
|
|
save_as_bool = True if save_as.get('label') == 'True' else False
|
|
|
|
|
|
|
|
if save_as_bool:
|
|
|
|
print('Save as...')
|
|
|
|
file_path = get_saveasfile_path(file_path)
|
|
|
|
else:
|
|
|
|
print('Save...')
|
|
|
|
if file_path == None or file_path == '':
|
|
|
|
file_path = get_saveasfile_path(file_path)
|
|
|
|
|
|
|
|
# print(file_path)
|
|
|
|
|
2023-02-20 12:56:24 +00:00
|
|
|
if file_path == None or file_path == '':
|
|
|
|
return original_file_path # In case a file_path was provided and the user decide to cancel the open action
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
# Return the values of the variables as a dictionary
|
|
|
|
variables = {
|
2023-01-09 16:48:57 +00:00
|
|
|
name: value
|
|
|
|
for name, value in parameters # locals().items()
|
|
|
|
if name
|
|
|
|
not in [
|
|
|
|
'file_path',
|
|
|
|
'save_as',
|
|
|
|
]
|
2022-12-20 14:15:17 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 12:56:24 +00:00
|
|
|
# Extract the destination directory from the file path
|
|
|
|
destination_directory = os.path.dirname(file_path)
|
|
|
|
|
|
|
|
# Create the destination directory if it doesn't exist
|
|
|
|
if not os.path.exists(destination_directory):
|
|
|
|
os.makedirs(destination_directory)
|
|
|
|
|
2022-12-20 14:15:17 +00:00
|
|
|
# Save the data to the selected file
|
2022-12-21 14:05:06 +00:00
|
|
|
with open(file_path, 'w') as file:
|
2023-01-09 16:48:57 +00:00
|
|
|
json.dump(variables, file, indent=2)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
return file_path
|
|
|
|
|
|
|
|
|
2023-03-11 01:05:38 +00:00
|
|
|
def open_configuration(
|
|
|
|
ask_for_file,
|
2022-12-20 14:15:17 +00:00
|
|
|
file_path,
|
|
|
|
pretrained_model_name_or_path,
|
|
|
|
v2,
|
|
|
|
v_parameterization,
|
|
|
|
train_dir,
|
|
|
|
image_folder,
|
|
|
|
output_dir,
|
|
|
|
logging_dir,
|
|
|
|
max_resolution,
|
2023-01-02 18:07:17 +00:00
|
|
|
min_bucket_reso,
|
|
|
|
max_bucket_reso,
|
|
|
|
batch_size,
|
|
|
|
flip_aug,
|
|
|
|
caption_metadata_filename,
|
|
|
|
latent_metadata_filename,
|
|
|
|
full_path,
|
2022-12-20 14:15:17 +00:00
|
|
|
learning_rate,
|
|
|
|
lr_scheduler,
|
|
|
|
lr_warmup,
|
|
|
|
dataset_repeats,
|
|
|
|
train_batch_size,
|
|
|
|
epoch,
|
|
|
|
save_every_n_epochs,
|
|
|
|
mixed_precision,
|
|
|
|
save_precision,
|
|
|
|
seed,
|
|
|
|
num_cpu_threads_per_process,
|
|
|
|
train_text_encoder,
|
|
|
|
create_caption,
|
2023-01-02 18:07:17 +00:00
|
|
|
create_buckets,
|
2022-12-20 14:15:17 +00:00
|
|
|
save_model_as,
|
|
|
|
caption_extension,
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam,
|
2023-01-02 18:07:17 +00:00
|
|
|
xformers,
|
2023-01-06 00:16:13 +00:00
|
|
|
clip_skip,
|
2023-01-09 00:31:44 +00:00
|
|
|
save_state,
|
|
|
|
resume,
|
2023-01-09 01:55:41 +00:00
|
|
|
gradient_checkpointing,
|
|
|
|
gradient_accumulation_steps,
|
|
|
|
mem_eff_attn,
|
|
|
|
shuffle_caption,
|
2023-01-09 16:48:57 +00:00
|
|
|
output_name,
|
2023-01-10 14:38:32 +00:00
|
|
|
max_token_length,
|
2023-01-15 16:05:22 +00:00
|
|
|
max_train_epochs,
|
2023-01-16 00:59:40 +00:00
|
|
|
max_data_loader_n_workers,
|
|
|
|
full_fp16,
|
|
|
|
color_aug,
|
|
|
|
model_list,
|
|
|
|
cache_latents,
|
2023-02-06 01:07:00 +00:00
|
|
|
use_latent_files,
|
|
|
|
keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale,
|
|
|
|
random_crop,
|
|
|
|
bucket_reso_steps,
|
2023-03-02 00:24:11 +00:00
|
|
|
caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate,
|
|
|
|
optimizer,
|
|
|
|
optimizer_args,
|
|
|
|
noise_offset,
|
2023-03-07 00:15:02 +00:00
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
2023-03-20 12:47:00 +00:00
|
|
|
sample_prompts,
|
2023-03-28 15:54:42 +00:00
|
|
|
additional_parameters,
|
|
|
|
vae_batch_size,
|
|
|
|
min_snr_gamma,
|
2022-12-20 14:15:17 +00:00
|
|
|
):
|
2023-01-09 16:48:57 +00:00
|
|
|
# Get list of function parameters and values
|
|
|
|
parameters = list(locals().items())
|
2023-03-20 12:47:00 +00:00
|
|
|
|
2023-03-11 01:05:38 +00:00
|
|
|
ask_for_file = True if ask_for_file.get('label') == 'True' else False
|
2023-01-16 00:59:40 +00:00
|
|
|
|
2022-12-20 14:15:17 +00:00
|
|
|
original_file_path = file_path
|
2023-03-20 12:47:00 +00:00
|
|
|
|
2023-03-11 01:05:38 +00:00
|
|
|
if ask_for_file:
|
|
|
|
file_path = get_file_path(file_path)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2023-03-02 00:02:04 +00:00
|
|
|
if not file_path == '' and not file_path == None:
|
2022-12-20 14:15:17 +00:00
|
|
|
# load variables from JSON file
|
|
|
|
with open(file_path, 'r') as f:
|
2023-03-09 02:16:54 +00:00
|
|
|
my_data = json.load(f)
|
2023-03-02 00:02:04 +00:00
|
|
|
print('Loading config...')
|
|
|
|
# Update values to fix deprecated use_8bit_adam checkbox and set appropriate optimizer if it is set to True
|
2023-03-04 23:56:22 +00:00
|
|
|
my_data = update_my_data(my_data)
|
2022-12-20 14:15:17 +00:00
|
|
|
else:
|
2023-03-02 00:02:04 +00:00
|
|
|
file_path = original_file_path # In case a file_path was provided and the user decide to cancel the open action
|
2023-03-09 02:16:54 +00:00
|
|
|
my_data = {}
|
2023-01-16 00:59:40 +00:00
|
|
|
|
2023-01-09 16:48:57 +00:00
|
|
|
values = [file_path]
|
|
|
|
for key, value in parameters:
|
2023-03-02 00:02:04 +00:00
|
|
|
# Set the value in the dictionary to the corresponding value in `my_data`, or the default value if not found
|
2023-03-11 01:05:38 +00:00
|
|
|
if not key in ['ask_for_file', 'file_path']:
|
2023-03-09 02:16:54 +00:00
|
|
|
values.append(my_data.get(key, value))
|
2023-01-09 16:48:57 +00:00
|
|
|
return tuple(values)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
def train_model(
|
|
|
|
pretrained_model_name_or_path,
|
|
|
|
v2,
|
|
|
|
v_parameterization,
|
|
|
|
train_dir,
|
|
|
|
image_folder,
|
|
|
|
output_dir,
|
|
|
|
logging_dir,
|
|
|
|
max_resolution,
|
2023-01-02 18:07:17 +00:00
|
|
|
min_bucket_reso,
|
|
|
|
max_bucket_reso,
|
|
|
|
batch_size,
|
|
|
|
flip_aug,
|
|
|
|
caption_metadata_filename,
|
|
|
|
latent_metadata_filename,
|
|
|
|
full_path,
|
2022-12-20 14:15:17 +00:00
|
|
|
learning_rate,
|
|
|
|
lr_scheduler,
|
|
|
|
lr_warmup,
|
|
|
|
dataset_repeats,
|
|
|
|
train_batch_size,
|
|
|
|
epoch,
|
|
|
|
save_every_n_epochs,
|
|
|
|
mixed_precision,
|
|
|
|
save_precision,
|
|
|
|
seed,
|
|
|
|
num_cpu_threads_per_process,
|
|
|
|
train_text_encoder,
|
2023-01-02 18:07:17 +00:00
|
|
|
generate_caption_database,
|
|
|
|
generate_image_buckets,
|
2022-12-20 14:15:17 +00:00
|
|
|
save_model_as,
|
|
|
|
caption_extension,
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam,
|
2023-01-02 18:07:17 +00:00
|
|
|
xformers,
|
2023-01-06 00:16:13 +00:00
|
|
|
clip_skip,
|
2023-01-09 00:31:44 +00:00
|
|
|
save_state,
|
|
|
|
resume,
|
2023-01-09 01:55:41 +00:00
|
|
|
gradient_checkpointing,
|
|
|
|
gradient_accumulation_steps,
|
|
|
|
mem_eff_attn,
|
|
|
|
shuffle_caption,
|
2023-01-09 16:48:57 +00:00
|
|
|
output_name,
|
2023-01-10 14:38:32 +00:00
|
|
|
max_token_length,
|
2023-01-15 16:05:22 +00:00
|
|
|
max_train_epochs,
|
2023-01-16 00:59:40 +00:00
|
|
|
max_data_loader_n_workers,
|
|
|
|
full_fp16,
|
|
|
|
color_aug,
|
|
|
|
model_list, # Keep this. Yes, it is unused here but required given the common list used
|
|
|
|
cache_latents,
|
2023-02-06 01:07:00 +00:00
|
|
|
use_latent_files,
|
|
|
|
keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale,
|
|
|
|
random_crop,
|
|
|
|
bucket_reso_steps,
|
2023-03-02 00:24:11 +00:00
|
|
|
caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate,
|
|
|
|
optimizer,
|
|
|
|
optimizer_args,
|
|
|
|
noise_offset,
|
2023-03-07 00:15:02 +00:00
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
2023-03-20 12:47:00 +00:00
|
|
|
sample_prompts,
|
2023-03-28 15:54:42 +00:00
|
|
|
additional_parameters,
|
|
|
|
vae_batch_size,
|
|
|
|
min_snr_gamma,
|
2022-12-20 14:15:17 +00:00
|
|
|
):
|
2023-03-20 12:47:00 +00:00
|
|
|
if check_if_model_exist(output_name, output_dir, save_model_as):
|
|
|
|
return
|
|
|
|
|
2022-12-20 14:15:17 +00:00
|
|
|
# create caption json file
|
|
|
|
if generate_caption_database:
|
|
|
|
if not os.path.exists(train_dir):
|
|
|
|
os.mkdir(train_dir)
|
|
|
|
|
2023-03-04 23:56:22 +00:00
|
|
|
run_cmd = f'{PYTHON} finetune/merge_captions_to_metadata.py'
|
2022-12-20 14:15:17 +00:00
|
|
|
if caption_extension == '':
|
2023-01-16 00:59:40 +00:00
|
|
|
run_cmd += f' --caption_extension=".caption"'
|
2022-12-20 14:15:17 +00:00
|
|
|
else:
|
|
|
|
run_cmd += f' --caption_extension={caption_extension}'
|
2023-01-06 23:25:55 +00:00
|
|
|
run_cmd += f' "{image_folder}"'
|
|
|
|
run_cmd += f' "{train_dir}/{caption_metadata_filename}"'
|
2023-01-02 18:07:17 +00:00
|
|
|
if full_path:
|
|
|
|
run_cmd += f' --full_path'
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
print(run_cmd)
|
|
|
|
|
|
|
|
# Run the command
|
2023-03-05 16:43:59 +00:00
|
|
|
if os.name == 'posix':
|
|
|
|
os.system(run_cmd)
|
|
|
|
else:
|
|
|
|
subprocess.run(run_cmd)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
# create images buckets
|
|
|
|
if generate_image_buckets:
|
2023-03-04 23:56:22 +00:00
|
|
|
run_cmd = f'{PYTHON} finetune/prepare_buckets_latents.py'
|
2023-01-06 23:25:55 +00:00
|
|
|
run_cmd += f' "{image_folder}"'
|
|
|
|
run_cmd += f' "{train_dir}/{caption_metadata_filename}"'
|
|
|
|
run_cmd += f' "{train_dir}/{latent_metadata_filename}"'
|
|
|
|
run_cmd += f' "{pretrained_model_name_or_path}"'
|
2023-01-02 18:07:17 +00:00
|
|
|
run_cmd += f' --batch_size={batch_size}'
|
|
|
|
run_cmd += f' --max_resolution={max_resolution}'
|
|
|
|
run_cmd += f' --min_bucket_reso={min_bucket_reso}'
|
|
|
|
run_cmd += f' --max_bucket_reso={max_bucket_reso}'
|
|
|
|
run_cmd += f' --mixed_precision={mixed_precision}'
|
2023-01-15 20:03:04 +00:00
|
|
|
# if flip_aug:
|
|
|
|
# run_cmd += f' --flip_aug'
|
2023-01-02 18:07:17 +00:00
|
|
|
if full_path:
|
|
|
|
run_cmd += f' --full_path'
|
|
|
|
|
|
|
|
print(run_cmd)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
# Run the command
|
2023-03-05 16:43:59 +00:00
|
|
|
if os.name == 'posix':
|
|
|
|
os.system(run_cmd)
|
|
|
|
else:
|
|
|
|
subprocess.run(run_cmd)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
image_num = len(
|
2023-02-06 01:07:00 +00:00
|
|
|
[
|
|
|
|
f
|
2023-03-26 09:58:41 +00:00
|
|
|
for f, lower_f in (
|
|
|
|
(file, file.lower()) for file in os.listdir(image_folder)
|
|
|
|
)
|
|
|
|
if lower_f.endswith(('.jpg', '.jpeg', '.png', '.webp'))
|
2023-02-06 01:07:00 +00:00
|
|
|
]
|
2022-12-22 18:14:46 +00:00
|
|
|
)
|
|
|
|
print(f'image_num = {image_num}')
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
repeats = int(image_num) * int(dataset_repeats)
|
|
|
|
print(f'repeats = {str(repeats)}')
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
# calculate max_train_steps
|
|
|
|
max_train_steps = int(
|
|
|
|
math.ceil(float(repeats) / int(train_batch_size) * int(epoch))
|
|
|
|
)
|
2023-01-02 18:07:17 +00:00
|
|
|
|
|
|
|
# Divide by two because flip augmentation create two copied of the source images
|
|
|
|
if flip_aug:
|
|
|
|
max_train_steps = int(math.ceil(float(max_train_steps) / 2))
|
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
print(f'max_train_steps = {max_train_steps}')
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2023-01-02 18:07:17 +00:00
|
|
|
lr_warmup_steps = round(float(int(lr_warmup) * int(max_train_steps) / 100))
|
2022-12-22 18:14:46 +00:00
|
|
|
print(f'lr_warmup_steps = {lr_warmup_steps}')
|
|
|
|
|
|
|
|
run_cmd = f'accelerate launch --num_cpu_threads_per_process={num_cpu_threads_per_process} "./fine_tune.py"'
|
|
|
|
if v2:
|
|
|
|
run_cmd += ' --v2'
|
|
|
|
if v_parameterization:
|
|
|
|
run_cmd += ' --v_parameterization'
|
|
|
|
if train_text_encoder:
|
|
|
|
run_cmd += ' --train_text_encoder'
|
|
|
|
run_cmd += (
|
2023-01-06 23:25:55 +00:00
|
|
|
f' --pretrained_model_name_or_path="{pretrained_model_name_or_path}"'
|
2022-12-22 18:14:46 +00:00
|
|
|
)
|
2023-01-16 00:59:40 +00:00
|
|
|
if use_latent_files == 'Yes':
|
|
|
|
run_cmd += f' --in_json="{train_dir}/{latent_metadata_filename}"'
|
|
|
|
else:
|
|
|
|
run_cmd += f' --in_json="{train_dir}/{caption_metadata_filename}"'
|
2023-01-06 23:25:55 +00:00
|
|
|
run_cmd += f' --train_data_dir="{image_folder}"'
|
|
|
|
run_cmd += f' --output_dir="{output_dir}"'
|
2022-12-22 18:14:46 +00:00
|
|
|
if not logging_dir == '':
|
2023-01-06 23:25:55 +00:00
|
|
|
run_cmd += f' --logging_dir="{logging_dir}"'
|
2022-12-22 18:14:46 +00:00
|
|
|
run_cmd += f' --dataset_repeats={dataset_repeats}'
|
|
|
|
run_cmd += f' --learning_rate={learning_rate}'
|
2023-01-16 00:59:40 +00:00
|
|
|
|
|
|
|
run_cmd += ' --enable_bucket'
|
|
|
|
run_cmd += f' --resolution={max_resolution}'
|
|
|
|
run_cmd += f' --min_bucket_reso={min_bucket_reso}'
|
|
|
|
run_cmd += f' --max_bucket_reso={max_bucket_reso}'
|
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
if not save_model_as == 'same as source model':
|
|
|
|
run_cmd += f' --save_model_as={save_model_as}'
|
2023-01-09 01:55:41 +00:00
|
|
|
if int(gradient_accumulation_steps) > 1:
|
|
|
|
run_cmd += f' --gradient_accumulation_steps={int(gradient_accumulation_steps)}'
|
2023-01-15 17:01:59 +00:00
|
|
|
# if save_state:
|
|
|
|
# run_cmd += ' --save_state'
|
|
|
|
# if not resume == '':
|
|
|
|
# run_cmd += f' --resume={resume}'
|
2023-01-09 16:48:57 +00:00
|
|
|
if not output_name == '':
|
|
|
|
run_cmd += f' --output_name="{output_name}"'
|
2023-01-16 00:59:40 +00:00
|
|
|
if int(max_token_length) > 75:
|
2023-01-10 14:38:32 +00:00
|
|
|
run_cmd += f' --max_token_length={max_token_length}'
|
2023-01-16 00:59:40 +00:00
|
|
|
|
|
|
|
run_cmd += run_cmd_training(
|
|
|
|
learning_rate=learning_rate,
|
|
|
|
lr_scheduler=lr_scheduler,
|
|
|
|
lr_warmup_steps=lr_warmup_steps,
|
|
|
|
train_batch_size=train_batch_size,
|
|
|
|
max_train_steps=max_train_steps,
|
|
|
|
save_every_n_epochs=save_every_n_epochs,
|
|
|
|
mixed_precision=mixed_precision,
|
|
|
|
save_precision=save_precision,
|
|
|
|
seed=seed,
|
|
|
|
caption_extension=caption_extension,
|
|
|
|
cache_latents=cache_latents,
|
2023-02-20 01:13:03 +00:00
|
|
|
optimizer=optimizer,
|
2023-02-23 01:32:57 +00:00
|
|
|
optimizer_args=optimizer_args,
|
2023-01-16 00:59:40 +00:00
|
|
|
)
|
|
|
|
|
2023-01-15 17:01:59 +00:00
|
|
|
run_cmd += run_cmd_advanced_training(
|
|
|
|
max_train_epochs=max_train_epochs,
|
|
|
|
max_data_loader_n_workers=max_data_loader_n_workers,
|
|
|
|
max_token_length=max_token_length,
|
|
|
|
resume=resume,
|
|
|
|
save_state=save_state,
|
2023-01-15 20:03:04 +00:00
|
|
|
mem_eff_attn=mem_eff_attn,
|
|
|
|
clip_skip=clip_skip,
|
|
|
|
flip_aug=flip_aug,
|
|
|
|
color_aug=color_aug,
|
|
|
|
shuffle_caption=shuffle_caption,
|
|
|
|
gradient_checkpointing=gradient_checkpointing,
|
|
|
|
full_fp16=full_fp16,
|
|
|
|
xformers=xformers,
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam=use_8bit_adam,
|
2023-01-27 12:33:44 +00:00
|
|
|
keep_tokens=keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers=persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale=bucket_no_upscale,
|
|
|
|
random_crop=random_crop,
|
|
|
|
bucket_reso_steps=bucket_reso_steps,
|
2023-02-08 01:58:35 +00:00
|
|
|
caption_dropout_every_n_epochs=caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate=caption_dropout_rate,
|
2023-02-23 01:32:57 +00:00
|
|
|
noise_offset=noise_offset,
|
2023-03-07 12:42:13 +00:00
|
|
|
additional_parameters=additional_parameters,
|
2023-03-22 00:20:57 +00:00
|
|
|
vae_batch_size=vae_batch_size,
|
2023-03-28 15:54:42 +00:00
|
|
|
min_snr_gamma=min_snr_gamma,
|
2023-01-15 17:01:59 +00:00
|
|
|
)
|
2022-12-22 18:14:46 +00:00
|
|
|
|
2023-03-07 00:15:02 +00:00
|
|
|
run_cmd += run_cmd_sample(
|
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
|
|
|
sample_prompts,
|
2023-03-08 12:30:14 +00:00
|
|
|
output_dir,
|
2023-03-07 00:15:02 +00:00
|
|
|
)
|
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
print(run_cmd)
|
2023-03-07 00:15:02 +00:00
|
|
|
|
2022-12-22 18:14:46 +00:00
|
|
|
# Run the command
|
2023-03-05 16:43:59 +00:00
|
|
|
if os.name == 'posix':
|
|
|
|
os.system(run_cmd)
|
|
|
|
else:
|
|
|
|
subprocess.run(run_cmd)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
# check if output_dir/last is a folder... therefore it is a diffuser model
|
2023-01-09 16:48:57 +00:00
|
|
|
last_dir = pathlib.Path(f'{output_dir}/{output_name}')
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
if not last_dir.is_dir():
|
|
|
|
# Copy inference model for v2 if required
|
2023-01-09 16:48:57 +00:00
|
|
|
save_inference_file(output_dir, v2, v_parameterization, output_name)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
def remove_doublequote(file_path):
|
|
|
|
if file_path != None:
|
|
|
|
file_path = file_path.replace('"', '')
|
|
|
|
|
|
|
|
return file_path
|
|
|
|
|
2022-12-22 16:51:34 +00:00
|
|
|
|
|
|
|
def finetune_tab():
|
2023-03-11 01:05:38 +00:00
|
|
|
dummy_db_true = gr.Label(value=True, visible=False)
|
|
|
|
dummy_db_false = gr.Label(value=False, visible=False)
|
2023-01-02 18:07:17 +00:00
|
|
|
gr.Markdown('Train a custom model using kohya finetune python code...')
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2023-01-16 00:59:40 +00:00
|
|
|
(
|
|
|
|
button_open_config,
|
|
|
|
button_save_config,
|
|
|
|
button_save_as_config,
|
|
|
|
config_file_name,
|
2023-03-11 01:05:38 +00:00
|
|
|
button_load_config,
|
2023-01-16 00:59:40 +00:00
|
|
|
) = gradio_config()
|
|
|
|
|
|
|
|
(
|
|
|
|
pretrained_model_name_or_path,
|
|
|
|
v2,
|
|
|
|
v_parameterization,
|
|
|
|
save_model_as,
|
|
|
|
model_list,
|
|
|
|
) = gradio_source_model()
|
|
|
|
|
2022-12-23 01:18:51 +00:00
|
|
|
with gr.Tab('Folders'):
|
2022-12-22 16:51:34 +00:00
|
|
|
with gr.Row():
|
2023-01-16 00:59:40 +00:00
|
|
|
train_dir = gr.Textbox(
|
2022-12-22 16:51:34 +00:00
|
|
|
label='Training config folder',
|
|
|
|
placeholder='folder where the training configuration files will be saved',
|
|
|
|
)
|
|
|
|
train_dir_folder = gr.Button(
|
|
|
|
folder_symbol, elem_id='open_folder_small'
|
|
|
|
)
|
2023-03-04 23:56:22 +00:00
|
|
|
train_dir_folder.click(
|
|
|
|
get_folder_path,
|
|
|
|
outputs=train_dir,
|
|
|
|
show_progress=False,
|
|
|
|
)
|
2022-12-22 16:51:34 +00:00
|
|
|
|
2023-01-16 00:59:40 +00:00
|
|
|
image_folder = gr.Textbox(
|
2022-12-22 16:51:34 +00:00
|
|
|
label='Training Image folder',
|
|
|
|
placeholder='folder where the training images are located',
|
|
|
|
)
|
|
|
|
image_folder_input_folder = gr.Button(
|
|
|
|
folder_symbol, elem_id='open_folder_small'
|
|
|
|
)
|
|
|
|
image_folder_input_folder.click(
|
2023-03-04 23:56:22 +00:00
|
|
|
get_folder_path,
|
|
|
|
outputs=image_folder,
|
|
|
|
show_progress=False,
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
|
|
|
with gr.Row():
|
2023-01-16 00:59:40 +00:00
|
|
|
output_dir = gr.Textbox(
|
2023-01-09 16:48:57 +00:00
|
|
|
label='Model output folder',
|
2022-12-22 16:51:34 +00:00
|
|
|
placeholder='folder where the model will be saved',
|
|
|
|
)
|
|
|
|
output_dir_input_folder = gr.Button(
|
|
|
|
folder_symbol, elem_id='open_folder_small'
|
|
|
|
)
|
2023-03-04 23:56:22 +00:00
|
|
|
output_dir_input_folder.click(
|
|
|
|
get_folder_path,
|
|
|
|
outputs=output_dir,
|
|
|
|
show_progress=False,
|
|
|
|
)
|
2022-12-22 16:51:34 +00:00
|
|
|
|
2023-01-16 00:59:40 +00:00
|
|
|
logging_dir = gr.Textbox(
|
2022-12-22 16:51:34 +00:00
|
|
|
label='Logging folder',
|
|
|
|
placeholder='Optional: enable logging and output TensorBoard log to this folder',
|
|
|
|
)
|
|
|
|
logging_dir_input_folder = gr.Button(
|
|
|
|
folder_symbol, elem_id='open_folder_small'
|
|
|
|
)
|
|
|
|
logging_dir_input_folder.click(
|
2023-03-04 23:56:22 +00:00
|
|
|
get_folder_path,
|
|
|
|
outputs=logging_dir,
|
|
|
|
show_progress=False,
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2023-01-09 16:48:57 +00:00
|
|
|
with gr.Row():
|
|
|
|
output_name = gr.Textbox(
|
|
|
|
label='Model output name',
|
|
|
|
placeholder='Name of the model to output',
|
|
|
|
value='last',
|
|
|
|
interactive=True,
|
|
|
|
)
|
2023-01-16 00:59:40 +00:00
|
|
|
train_dir.change(
|
2022-12-22 16:51:34 +00:00
|
|
|
remove_doublequote,
|
2023-01-16 00:59:40 +00:00
|
|
|
inputs=[train_dir],
|
|
|
|
outputs=[train_dir],
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2023-01-16 00:59:40 +00:00
|
|
|
image_folder.change(
|
2022-12-22 16:51:34 +00:00
|
|
|
remove_doublequote,
|
2023-01-16 00:59:40 +00:00
|
|
|
inputs=[image_folder],
|
|
|
|
outputs=[image_folder],
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2023-01-16 00:59:40 +00:00
|
|
|
output_dir.change(
|
2022-12-22 16:51:34 +00:00
|
|
|
remove_doublequote,
|
2023-01-16 00:59:40 +00:00
|
|
|
inputs=[output_dir],
|
|
|
|
outputs=[output_dir],
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2023-01-02 18:07:17 +00:00
|
|
|
with gr.Tab('Dataset preparation'):
|
|
|
|
with gr.Row():
|
2023-01-16 00:59:40 +00:00
|
|
|
max_resolution = gr.Textbox(
|
2023-01-02 18:07:17 +00:00
|
|
|
label='Resolution (width,height)', value='512,512'
|
|
|
|
)
|
|
|
|
min_bucket_reso = gr.Textbox(
|
|
|
|
label='Min bucket resolution', value='256'
|
|
|
|
)
|
|
|
|
max_bucket_reso = gr.Textbox(
|
|
|
|
label='Max bucket resolution', value='1024'
|
|
|
|
)
|
|
|
|
batch_size = gr.Textbox(label='Batch size', value='1')
|
2023-01-16 00:59:40 +00:00
|
|
|
with gr.Row():
|
|
|
|
create_caption = gr.Checkbox(
|
|
|
|
label='Generate caption metadata', value=True
|
|
|
|
)
|
|
|
|
create_buckets = gr.Checkbox(
|
|
|
|
label='Generate image buckets metadata', value=True
|
|
|
|
)
|
|
|
|
use_latent_files = gr.Dropdown(
|
|
|
|
label='Use latent files',
|
|
|
|
choices=[
|
|
|
|
'No',
|
|
|
|
'Yes',
|
|
|
|
],
|
|
|
|
value='Yes',
|
|
|
|
)
|
2023-01-02 18:07:17 +00:00
|
|
|
with gr.Accordion('Advanced parameters', open=False):
|
|
|
|
with gr.Row():
|
|
|
|
caption_metadata_filename = gr.Textbox(
|
|
|
|
label='Caption metadata filename', value='meta_cap.json'
|
|
|
|
)
|
|
|
|
latent_metadata_filename = gr.Textbox(
|
|
|
|
label='Latent metadata filename', value='meta_lat.json'
|
|
|
|
)
|
|
|
|
full_path = gr.Checkbox(label='Use full path', value=True)
|
2022-12-22 16:51:34 +00:00
|
|
|
with gr.Tab('Training parameters'):
|
2023-01-16 00:59:40 +00:00
|
|
|
(
|
|
|
|
learning_rate,
|
|
|
|
lr_scheduler,
|
|
|
|
lr_warmup,
|
|
|
|
train_batch_size,
|
|
|
|
epoch,
|
|
|
|
save_every_n_epochs,
|
|
|
|
mixed_precision,
|
|
|
|
save_precision,
|
|
|
|
num_cpu_threads_per_process,
|
|
|
|
seed,
|
|
|
|
caption_extension,
|
|
|
|
cache_latents,
|
2023-03-02 00:24:11 +00:00
|
|
|
optimizer,
|
|
|
|
optimizer_args,
|
2023-01-16 00:59:40 +00:00
|
|
|
) = gradio_training(learning_rate_value='1e-5')
|
2022-12-22 16:51:34 +00:00
|
|
|
with gr.Row():
|
2023-01-16 00:59:40 +00:00
|
|
|
dataset_repeats = gr.Textbox(label='Dataset repeats', value=40)
|
|
|
|
train_text_encoder = gr.Checkbox(
|
2022-12-22 16:51:34 +00:00
|
|
|
label='Train text encoder', value=True
|
|
|
|
)
|
2023-01-02 18:07:17 +00:00
|
|
|
with gr.Accordion('Advanced parameters', open=False):
|
|
|
|
with gr.Row():
|
2023-01-09 01:55:41 +00:00
|
|
|
gradient_accumulation_steps = gr.Number(
|
|
|
|
label='Gradient accumulate steps', value='1'
|
|
|
|
)
|
2023-01-15 20:03:04 +00:00
|
|
|
(
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam,
|
2023-01-15 20:03:04 +00:00
|
|
|
xformers,
|
|
|
|
full_fp16,
|
|
|
|
gradient_checkpointing,
|
|
|
|
shuffle_caption,
|
|
|
|
color_aug,
|
|
|
|
flip_aug,
|
|
|
|
clip_skip,
|
|
|
|
mem_eff_attn,
|
|
|
|
save_state,
|
|
|
|
resume,
|
|
|
|
max_token_length,
|
|
|
|
max_train_epochs,
|
|
|
|
max_data_loader_n_workers,
|
2023-01-27 12:33:44 +00:00
|
|
|
keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale,
|
|
|
|
random_crop,
|
|
|
|
bucket_reso_steps,
|
2023-03-02 00:24:11 +00:00
|
|
|
caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate,
|
2023-03-20 12:47:00 +00:00
|
|
|
noise_offset,
|
|
|
|
additional_parameters,
|
2023-03-22 00:20:57 +00:00
|
|
|
vae_batch_size,
|
2023-03-28 15:54:42 +00:00
|
|
|
min_snr_gamma,
|
2023-01-15 20:03:04 +00:00
|
|
|
) = gradio_advanced_training()
|
2023-01-16 00:59:40 +00:00
|
|
|
color_aug.change(
|
|
|
|
color_aug_changed,
|
|
|
|
inputs=[color_aug],
|
|
|
|
outputs=[cache_latents], # Not applicable to fine_tune.py
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2023-03-07 00:15:02 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
|
|
|
sample_prompts,
|
|
|
|
) = sample_gradio_config()
|
2022-12-22 16:51:34 +00:00
|
|
|
|
2023-02-27 00:49:22 +00:00
|
|
|
button_run = gr.Button('Train model', variant='primary')
|
2023-03-02 00:24:11 +00:00
|
|
|
|
2023-02-27 00:49:22 +00:00
|
|
|
# Setup gradio tensorboard buttons
|
|
|
|
button_start_tensorboard, button_stop_tensorboard = gradio_tensorboard()
|
2023-03-02 00:24:11 +00:00
|
|
|
|
2023-02-27 00:49:22 +00:00
|
|
|
button_start_tensorboard.click(
|
|
|
|
start_tensorboard,
|
|
|
|
inputs=logging_dir,
|
|
|
|
)
|
2023-03-02 00:24:11 +00:00
|
|
|
|
2023-02-27 00:49:22 +00:00
|
|
|
button_stop_tensorboard.click(
|
|
|
|
stop_tensorboard,
|
2023-03-04 23:56:22 +00:00
|
|
|
show_progress=False,
|
2023-02-27 00:49:22 +00:00
|
|
|
)
|
2022-12-22 16:51:34 +00:00
|
|
|
|
2023-01-02 18:07:17 +00:00
|
|
|
settings_list = [
|
2023-01-16 00:59:40 +00:00
|
|
|
pretrained_model_name_or_path,
|
|
|
|
v2,
|
|
|
|
v_parameterization,
|
|
|
|
train_dir,
|
|
|
|
image_folder,
|
|
|
|
output_dir,
|
|
|
|
logging_dir,
|
|
|
|
max_resolution,
|
2023-01-02 18:07:17 +00:00
|
|
|
min_bucket_reso,
|
|
|
|
max_bucket_reso,
|
|
|
|
batch_size,
|
|
|
|
flip_aug,
|
|
|
|
caption_metadata_filename,
|
|
|
|
latent_metadata_filename,
|
|
|
|
full_path,
|
2023-01-16 00:59:40 +00:00
|
|
|
learning_rate,
|
|
|
|
lr_scheduler,
|
|
|
|
lr_warmup,
|
|
|
|
dataset_repeats,
|
|
|
|
train_batch_size,
|
|
|
|
epoch,
|
|
|
|
save_every_n_epochs,
|
|
|
|
mixed_precision,
|
|
|
|
save_precision,
|
|
|
|
seed,
|
|
|
|
num_cpu_threads_per_process,
|
|
|
|
train_text_encoder,
|
2023-01-02 18:07:17 +00:00
|
|
|
create_caption,
|
|
|
|
create_buckets,
|
2023-01-16 00:59:40 +00:00
|
|
|
save_model_as,
|
|
|
|
caption_extension,
|
2023-03-05 15:34:09 +00:00
|
|
|
# use_8bit_adam,
|
2023-01-02 18:07:17 +00:00
|
|
|
xformers,
|
2023-01-06 00:16:13 +00:00
|
|
|
clip_skip,
|
2023-01-09 00:31:44 +00:00
|
|
|
save_state,
|
|
|
|
resume,
|
2023-01-09 01:55:41 +00:00
|
|
|
gradient_checkpointing,
|
|
|
|
gradient_accumulation_steps,
|
|
|
|
mem_eff_attn,
|
|
|
|
shuffle_caption,
|
2023-01-09 16:48:57 +00:00
|
|
|
output_name,
|
2023-01-10 14:38:32 +00:00
|
|
|
max_token_length,
|
2023-01-15 16:05:22 +00:00
|
|
|
max_train_epochs,
|
2023-01-16 00:59:40 +00:00
|
|
|
max_data_loader_n_workers,
|
|
|
|
full_fp16,
|
|
|
|
color_aug,
|
|
|
|
model_list,
|
|
|
|
cache_latents,
|
|
|
|
use_latent_files,
|
2023-01-27 12:33:44 +00:00
|
|
|
keep_tokens,
|
2023-02-04 16:55:06 +00:00
|
|
|
persistent_data_loader_workers,
|
2023-02-06 01:07:00 +00:00
|
|
|
bucket_no_upscale,
|
|
|
|
random_crop,
|
|
|
|
bucket_reso_steps,
|
2023-03-02 00:24:11 +00:00
|
|
|
caption_dropout_every_n_epochs,
|
|
|
|
caption_dropout_rate,
|
|
|
|
optimizer,
|
|
|
|
optimizer_args,
|
|
|
|
noise_offset,
|
2023-03-07 00:15:02 +00:00
|
|
|
sample_every_n_steps,
|
|
|
|
sample_every_n_epochs,
|
|
|
|
sample_sampler,
|
2023-03-20 12:47:00 +00:00
|
|
|
sample_prompts,
|
|
|
|
additional_parameters,
|
2023-03-22 00:20:57 +00:00
|
|
|
vae_batch_size,
|
2023-03-28 15:54:42 +00:00
|
|
|
min_snr_gamma,
|
2023-01-02 18:07:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
button_run.click(train_model, inputs=settings_list)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 16:51:34 +00:00
|
|
|
button_open_config.click(
|
2023-03-11 01:05:38 +00:00
|
|
|
open_configuration,
|
|
|
|
inputs=[dummy_db_true, config_file_name] + settings_list,
|
|
|
|
outputs=[config_file_name] + settings_list,
|
|
|
|
show_progress=False,
|
|
|
|
)
|
2023-03-20 12:47:00 +00:00
|
|
|
|
2023-03-11 01:05:38 +00:00
|
|
|
button_load_config.click(
|
|
|
|
open_configuration,
|
|
|
|
inputs=[dummy_db_false, config_file_name] + settings_list,
|
2023-01-02 18:07:17 +00:00
|
|
|
outputs=[config_file_name] + settings_list,
|
2023-03-04 23:56:22 +00:00
|
|
|
show_progress=False,
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 16:51:34 +00:00
|
|
|
button_save_config.click(
|
|
|
|
save_configuration,
|
2023-03-11 01:05:38 +00:00
|
|
|
inputs=[dummy_db_false, config_file_name] + settings_list,
|
2022-12-22 16:51:34 +00:00
|
|
|
outputs=[config_file_name],
|
2023-03-04 23:56:22 +00:00
|
|
|
show_progress=False,
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2022-12-20 14:15:17 +00:00
|
|
|
|
2022-12-22 16:51:34 +00:00
|
|
|
button_save_as_config.click(
|
|
|
|
save_configuration,
|
2023-03-11 01:05:38 +00:00
|
|
|
inputs=[dummy_db_true, config_file_name] + settings_list,
|
2022-12-22 16:51:34 +00:00
|
|
|
outputs=[config_file_name],
|
2023-03-04 23:56:22 +00:00
|
|
|
show_progress=False,
|
2022-12-22 16:51:34 +00:00
|
|
|
)
|
2022-12-21 14:05:06 +00:00
|
|
|
|
|
|
|
|
2023-02-10 13:22:03 +00:00
|
|
|
def UI(**kwargs):
|
|
|
|
|
|
|
|
css = ''
|
|
|
|
|
|
|
|
if os.path.exists('./style.css'):
|
|
|
|
with open(os.path.join('./style.css'), 'r', encoding='utf8') as file:
|
|
|
|
print('Load CSS...')
|
|
|
|
css += file.read() + '\n'
|
|
|
|
|
|
|
|
interface = gr.Blocks(css=css)
|
|
|
|
|
|
|
|
with interface:
|
|
|
|
with gr.Tab('Finetune'):
|
|
|
|
finetune_tab()
|
|
|
|
with gr.Tab('Utilities'):
|
|
|
|
utilities_tab(enable_dreambooth_tab=False)
|
|
|
|
|
|
|
|
# Show the interface
|
2023-03-02 00:24:11 +00:00
|
|
|
launch_kwargs = {}
|
2023-02-10 13:22:03 +00:00
|
|
|
if not kwargs.get('username', None) == '':
|
2023-03-02 00:24:11 +00:00
|
|
|
launch_kwargs['auth'] = (
|
|
|
|
kwargs.get('username', None),
|
|
|
|
kwargs.get('password', None),
|
|
|
|
)
|
2023-02-10 13:22:03 +00:00
|
|
|
if kwargs.get('server_port', 0) > 0:
|
2023-03-02 00:24:11 +00:00
|
|
|
launch_kwargs['server_port'] = kwargs.get('server_port', 0)
|
|
|
|
if kwargs.get('inbrowser', False):
|
|
|
|
launch_kwargs['inbrowser'] = kwargs.get('inbrowser', False)
|
2023-02-10 13:22:03 +00:00
|
|
|
print(launch_kwargs)
|
|
|
|
interface.launch(**launch_kwargs)
|
2023-03-02 00:24:11 +00:00
|
|
|
|
2023-02-10 13:22:03 +00:00
|
|
|
|
2022-12-21 14:05:06 +00:00
|
|
|
if __name__ == '__main__':
|
2022-12-22 16:51:34 +00:00
|
|
|
# torch.cuda.set_per_process_memory_fraction(0.48)
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
|
|
'--username', type=str, default='', help='Username for authentication'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--password', type=str, default='', help='Password for authentication'
|
|
|
|
)
|
2023-02-10 13:22:03 +00:00
|
|
|
parser.add_argument(
|
2023-03-02 00:24:11 +00:00
|
|
|
'--server_port',
|
|
|
|
type=int,
|
|
|
|
default=0,
|
|
|
|
help='Port to run the server listener on',
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--inbrowser', action='store_true', help='Open in browser'
|
2023-02-10 13:22:03 +00:00
|
|
|
)
|
2022-12-22 16:51:34 +00:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2023-03-02 00:24:11 +00:00
|
|
|
UI(
|
|
|
|
username=args.username,
|
|
|
|
password=args.password,
|
|
|
|
inbrowser=args.inbrowser,
|
|
|
|
server_port=args.server_port,
|
|
|
|
)
|