KohyaSS/dreambooth_gui.py

794 lines
24 KiB
Python
Raw Normal View History

# v1: initial release
2022-12-14 19:40:24 +00:00
# v2: add open and save folder icons
2022-12-15 23:19:35 +00:00
# v3: Add new Utilities tab for Dreambooth folder preparation
2022-12-16 16:04:06 +00:00
# v3.1: Adding captionning of images to utilities
2022-12-13 14:20:25 +00:00
import gradio as gr
import json
import math
import os
import subprocess
import pathlib
import shutil
2022-12-21 14:05:06 +00:00
import argparse
2022-12-18 18:11:10 +00:00
from library.common_gui import (
2022-12-17 01:26:26 +00:00
get_folder_path,
remove_doublequote,
get_file_path,
2023-01-01 19:14:58 +00:00
get_any_file_path,
get_saveasfile_path,
color_aug_changed,
save_inference_file,
set_pretrained_model_name_or_path_input,
2022-12-17 01:26:26 +00:00
)
2022-12-23 01:18:51 +00:00
from library.dreambooth_folder_creation_gui import (
gradio_dreambooth_folder_creation_tab,
)
2022-12-22 16:51:34 +00:00
from library.utilities import utilities_tab
from easygui import msgbox
2022-12-13 14:20:25 +00:00
folder_symbol = '\U0001f4c2' # 📂
refresh_symbol = '\U0001f504' # 🔄
save_style_symbol = '\U0001f4be' # 💾
document_symbol = '\U0001F4C4' # 📄
2022-12-13 14:20:25 +00:00
2022-12-15 12:48:29 +00:00
def save_configuration(
save_as,
2022-12-13 14:20:25 +00:00
file_path,
pretrained_model_name_or_path,
v2,
2022-12-13 19:59:33 +00:00
v_parameterization,
2022-12-13 14:20:25 +00:00
logging_dir,
train_data_dir,
reg_data_dir,
output_dir,
max_resolution,
learning_rate,
lr_scheduler,
lr_warmup,
train_batch_size,
epoch,
save_every_n_epochs,
mixed_precision,
save_precision,
seed,
num_cpu_threads_per_process,
cache_latent,
caption_extention,
2022-12-13 18:49:14 +00:00
enable_bucket,
gradient_checkpointing,
2022-12-14 02:21:59 +00:00
full_fp16,
no_token_padding,
stop_text_encoder_training,
use_8bit_adam,
xformers,
save_model_as,
shuffle_caption,
save_state,
resume,
prior_loss_weight,
color_aug,
flip_aug,
clip_skip,
vae,
output_name,
2022-12-13 14:20:25 +00:00
):
# Get list of function parameters and values
parameters = list(locals().items())
2022-12-14 19:40:24 +00:00
original_file_path = file_path
2022-12-17 01:26:26 +00:00
save_as_bool = True if save_as.get('label') == 'True' else False
2022-12-15 12:48:29 +00:00
if save_as_bool:
2022-12-17 01:26:26 +00:00
print('Save as...')
file_path = get_saveasfile_path(file_path)
2022-12-15 12:48:29 +00:00
else:
2022-12-17 01:26:26 +00:00
print('Save...')
if file_path == None or file_path == '':
file_path = get_saveasfile_path(file_path)
2022-12-14 19:40:24 +00:00
# print(file_path)
2022-12-19 14:47:35 +00:00
if file_path == None or file_path == '':
2022-12-15 12:48:29 +00:00
return original_file_path # In case a file_path was provided and the user decide to cancel the open action
2022-12-14 19:40:24 +00:00
2022-12-13 14:20:25 +00:00
# Return the values of the variables as a dictionary
variables = {
name: value
for name, value in parameters # locals().items()
if name
not in [
'file_path',
'save_as',
]
2022-12-13 14:20:25 +00:00
}
# Save the data to the selected file
2022-12-17 01:26:26 +00:00
with open(file_path, 'w') as file:
json.dump(variables, file, indent=2)
2022-12-13 14:20:25 +00:00
2022-12-14 19:40:24 +00:00
return file_path
2022-12-15 12:48:29 +00:00
def open_configuration(
2022-12-14 19:40:24 +00:00
file_path,
pretrained_model_name_or_path,
v2,
v_parameterization,
logging_dir,
train_data_dir,
reg_data_dir,
output_dir,
max_resolution,
learning_rate,
lr_scheduler,
lr_warmup,
train_batch_size,
epoch,
save_every_n_epochs,
mixed_precision,
save_precision,
seed,
num_cpu_threads_per_process,
cache_latent,
caption_extention,
enable_bucket,
gradient_checkpointing,
full_fp16,
no_token_padding,
stop_text_encoder_training,
use_8bit_adam,
xformers,
save_model_as,
shuffle_caption,
save_state,
resume,
prior_loss_weight,
color_aug,
flip_aug,
clip_skip,
vae,
output_name,
2022-12-14 19:40:24 +00:00
):
# Get list of function parameters and values
parameters = list(locals().items())
2022-12-14 19:40:24 +00:00
original_file_path = file_path
file_path = get_file_path(file_path)
2022-12-13 14:20:25 +00:00
if not file_path == '' and not file_path == None:
2022-12-14 19:40:24 +00:00
# load variables from JSON file
2022-12-17 01:26:26 +00:00
with open(file_path, 'r') as f:
my_data_db = json.load(f)
print("Loading config...")
2022-12-14 19:40:24 +00:00
else:
file_path = original_file_path # In case a file_path was provided and the user decide to cancel the open action
my_data_db = {}
2022-12-13 14:20:25 +00:00
values = [file_path]
for key, value in parameters:
# Set the value in the dictionary to the corresponding value in `my_data`, or the default value if not found
if not key in ['file_path']:
values.append(my_data_db.get(key, value))
return tuple(values)
2022-12-13 14:20:25 +00:00
def train_model(
pretrained_model_name_or_path,
v2,
2022-12-13 19:59:33 +00:00
v_parameterization,
2022-12-13 14:20:25 +00:00
logging_dir,
train_data_dir,
reg_data_dir,
output_dir,
max_resolution,
learning_rate,
lr_scheduler,
lr_warmup,
train_batch_size,
epoch,
save_every_n_epochs,
mixed_precision,
save_precision,
seed,
num_cpu_threads_per_process,
cache_latent,
2023-01-01 19:14:58 +00:00
caption_extension,
2022-12-13 18:49:14 +00:00
enable_bucket,
gradient_checkpointing,
2022-12-14 02:21:59 +00:00
full_fp16,
no_token_padding,
stop_text_encoder_training_pct,
use_8bit_adam,
xformers,
save_model_as,
shuffle_caption,
save_state,
resume,
prior_loss_weight,
color_aug,
flip_aug,
clip_skip,
vae,
output_name,
2022-12-13 14:20:25 +00:00
):
2022-12-17 01:26:26 +00:00
if pretrained_model_name_or_path == '':
msgbox('Source model information is missing')
2022-12-16 00:04:26 +00:00
return
2022-12-17 01:26:26 +00:00
if train_data_dir == '':
msgbox('Image folder path is missing')
2022-12-16 00:04:26 +00:00
return
if not os.path.exists(train_data_dir):
2022-12-17 01:26:26 +00:00
msgbox('Image folder does not exist')
2022-12-16 00:04:26 +00:00
return
2022-12-17 01:26:26 +00:00
if reg_data_dir != '':
2022-12-16 00:04:26 +00:00
if not os.path.exists(reg_data_dir):
2022-12-17 01:26:26 +00:00
msgbox('Regularisation folder does not exist')
2022-12-16 00:04:26 +00:00
return
2022-12-17 01:26:26 +00:00
if output_dir == '':
msgbox('Output folder path is missing')
2022-12-16 00:04:26 +00:00
return
2022-12-13 14:20:25 +00:00
# Get a list of all subfolders in train_data_dir
2022-12-14 02:21:59 +00:00
subfolders = [
2022-12-17 01:26:26 +00:00
f
for f in os.listdir(train_data_dir)
2022-12-14 02:21:59 +00:00
if os.path.isdir(os.path.join(train_data_dir, f))
]
2022-12-13 14:20:25 +00:00
total_steps = 0
# Loop through each subfolder and extract the number of repeats
for folder in subfolders:
# Extract the number of repeats from the folder name
2022-12-17 01:26:26 +00:00
repeats = int(folder.split('_')[0])
2022-12-13 14:20:25 +00:00
# Count the number of images in the folder
2022-12-17 01:26:26 +00:00
num_images = len(
[
f
for f in os.listdir(os.path.join(train_data_dir, folder))
if f.endswith('.jpg')
or f.endswith('.jpeg')
or f.endswith('.png')
or f.endswith('.webp')
]
)
2022-12-13 14:20:25 +00:00
# Calculate the total number of steps for this folder
steps = repeats * num_images
total_steps += steps
# Print the result
2022-12-17 01:26:26 +00:00
print(f'Folder {folder}: {steps} steps')
2022-12-13 14:20:25 +00:00
# Print the result
# print(f"{total_steps} total steps")
2022-12-17 01:26:26 +00:00
if reg_data_dir == '':
reg_factor = 1
else:
2022-12-14 02:21:59 +00:00
print(
2022-12-17 01:26:26 +00:00
'Regularisation images are used... Will double the number of steps required...'
2022-12-14 02:21:59 +00:00
)
reg_factor = 2
2022-12-13 14:20:25 +00:00
# calculate max_train_steps
max_train_steps = int(
2022-12-14 02:21:59 +00:00
math.ceil(
2022-12-17 01:26:26 +00:00
float(total_steps)
/ int(train_batch_size)
* int(epoch)
* int(reg_factor)
)
)
print(f'max_train_steps = {max_train_steps}')
2022-12-13 14:20:25 +00:00
2022-12-14 02:21:59 +00:00
# calculate stop encoder training
if stop_text_encoder_training_pct == None:
stop_text_encoder_training = 0
else:
stop_text_encoder_training = math.ceil(
2022-12-17 01:26:26 +00:00
float(max_train_steps) / 100 * int(stop_text_encoder_training_pct)
)
print(f'stop_text_encoder_training = {stop_text_encoder_training}')
2022-12-14 02:21:59 +00:00
2022-12-13 14:20:25 +00:00
lr_warmup_steps = round(float(int(lr_warmup) * int(max_train_steps) / 100))
2022-12-17 01:26:26 +00:00
print(f'lr_warmup_steps = {lr_warmup_steps}')
2022-12-13 14:20:25 +00:00
run_cmd = f'accelerate launch --num_cpu_threads_per_process={num_cpu_threads_per_process} "train_db.py"'
2022-12-13 14:20:25 +00:00
if v2:
2022-12-17 01:26:26 +00:00
run_cmd += ' --v2'
2022-12-13 19:59:33 +00:00
if v_parameterization:
2022-12-17 01:26:26 +00:00
run_cmd += ' --v_parameterization'
if cache_latent:
2022-12-17 01:26:26 +00:00
run_cmd += ' --cache_latents'
if enable_bucket:
2022-12-17 01:26:26 +00:00
run_cmd += ' --enable_bucket'
2022-12-13 18:49:14 +00:00
if gradient_checkpointing:
2022-12-17 01:26:26 +00:00
run_cmd += ' --gradient_checkpointing'
2022-12-13 18:49:14 +00:00
if full_fp16:
2022-12-17 01:26:26 +00:00
run_cmd += ' --full_fp16'
2022-12-14 02:21:59 +00:00
if no_token_padding:
2022-12-17 01:26:26 +00:00
run_cmd += ' --no_token_padding'
2022-12-14 02:21:59 +00:00
if use_8bit_adam:
2022-12-17 01:26:26 +00:00
run_cmd += ' --use_8bit_adam'
2022-12-14 02:21:59 +00:00
if xformers:
2022-12-17 01:26:26 +00:00
run_cmd += ' --xformers'
if shuffle_caption:
run_cmd += ' --shuffle_caption'
if save_state:
run_cmd += ' --save_state'
if color_aug:
run_cmd += ' --color_aug'
if flip_aug:
run_cmd += ' --flip_aug'
2022-12-17 01:26:26 +00:00
run_cmd += (
f' --pretrained_model_name_or_path="{pretrained_model_name_or_path}"'
2022-12-17 01:26:26 +00:00
)
2022-12-15 23:19:35 +00:00
run_cmd += f' --train_data_dir="{train_data_dir}"'
if len(reg_data_dir):
run_cmd += f' --reg_data_dir="{reg_data_dir}"'
2022-12-17 01:26:26 +00:00
run_cmd += f' --resolution={max_resolution}'
run_cmd += f' --output_dir="{output_dir}"'
2022-12-17 01:26:26 +00:00
run_cmd += f' --train_batch_size={train_batch_size}'
run_cmd += f' --learning_rate={learning_rate}'
run_cmd += f' --lr_scheduler={lr_scheduler}'
run_cmd += f' --lr_warmup_steps={lr_warmup_steps}'
run_cmd += f' --max_train_steps={max_train_steps}'
run_cmd += f' --use_8bit_adam'
run_cmd += f' --xformers'
run_cmd += f' --mixed_precision={mixed_precision}'
run_cmd += f' --save_every_n_epochs={save_every_n_epochs}'
run_cmd += f' --seed={seed}'
run_cmd += f' --save_precision={save_precision}'
run_cmd += f' --logging_dir="{logging_dir}"'
2023-01-01 19:14:58 +00:00
if not caption_extension == '':
run_cmd += f' --caption_extension={caption_extension}'
2022-12-19 15:39:04 +00:00
if not stop_text_encoder_training == 0:
run_cmd += (
f' --stop_text_encoder_training={stop_text_encoder_training}'
)
2022-12-18 01:36:31 +00:00
if not save_model_as == 'same as source model':
run_cmd += f' --save_model_as={save_model_as}'
if not resume == '':
run_cmd += f' --resume={resume}'
if not float(prior_loss_weight) == 1.0:
run_cmd += f' --prior_loss_weight={prior_loss_weight}'
if int(clip_skip) > 1:
run_cmd += f' --clip_skip={str(clip_skip)}'
if not vae == '':
run_cmd += f' --vae="{vae}"'
if not output_name == '':
run_cmd += f' --output_name="{output_name}"'
2022-12-13 14:20:25 +00:00
print(run_cmd)
# Run the command
subprocess.run(run_cmd)
2022-12-18 01:36:31 +00:00
# check if output_dir/last is a folder... therefore it is a diffuser model
last_dir = pathlib.Path(f'{output_dir}/{output_name}')
2022-12-18 01:36:31 +00:00
if not last_dir.is_dir():
2022-12-13 14:20:25 +00:00
# Copy inference model for v2 if required
save_inference_file(output_dir, v2, v_parameterization, output_name)
2022-12-13 14:20:25 +00:00
2022-12-21 14:05:06 +00:00
def UI(username, password):
css = ''
2022-12-14 19:40:24 +00:00
2022-12-21 14:05:06 +00:00
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'
2022-12-14 19:40:24 +00:00
2022-12-21 14:05:06 +00:00
interface = gr.Blocks(css=css)
2022-12-14 19:40:24 +00:00
2022-12-21 14:05:06 +00:00
with interface:
with gr.Tab('Dreambooth'):
2022-12-22 16:51:34 +00:00
(
2022-12-21 14:05:06 +00:00
train_data_dir_input,
reg_data_dir_input,
output_dir_input,
logging_dir_input,
2022-12-22 16:51:34 +00:00
) = dreambooth_tab()
with gr.Tab('Utilities'):
utilities_tab(
train_data_dir_input=train_data_dir_input,
reg_data_dir_input=reg_data_dir_input,
output_dir_input=output_dir_input,
logging_dir_input=logging_dir_input,
enable_copy_info_button=True,
2022-12-21 14:05:06 +00:00
)
2022-12-22 16:51:34 +00:00
# Show the interface
if not username == '':
interface.launch(auth=(username, password))
else:
interface.launch()
2022-12-22 16:51:34 +00:00
def dreambooth_tab(
2023-01-09 13:08:47 +00:00
train_data_dir=gr.Textbox(),
reg_data_dir=gr.Textbox(),
output_dir=gr.Textbox(),
logging_dir=gr.Textbox(),
2022-12-22 16:51:34 +00:00
):
dummy_db_true = gr.Label(value=True, visible=False)
dummy_db_false = gr.Label(value=False, visible=False)
2022-12-23 01:18:51 +00:00
gr.Markdown('Train a custom model using kohya dreambooth python code...')
2022-12-22 16:51:34 +00:00
with gr.Accordion('Configuration file', open=False):
with gr.Row():
button_open_config = gr.Button('Open 📂', elem_id='open_folder')
button_save_config = gr.Button('Save 💾', elem_id='open_folder')
button_save_as_config = gr.Button(
'Save as... 💾', elem_id='open_folder'
)
config_file_name = gr.Textbox(
label='',
placeholder="type the configuration file path or use the 'Open' button above to select it...",
interactive=True,
)
with gr.Tab('Source model'):
# Define the input elements
with gr.Row():
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Pretrained model name or path',
placeholder='enter the path to custom model or name of pretrained model',
)
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path_file = gr.Button(
2022-12-22 16:51:34 +00:00
document_symbol, elem_id='open_folder_small'
)
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path_file.click(
2023-01-01 19:14:58 +00:00
get_any_file_path,
2023-01-09 13:08:47 +00:00
inputs=[pretrained_model_name_or_path],
outputs=pretrained_model_name_or_path,
2022-12-22 16:51:34 +00:00
)
pretrained_model_name_or_path_folder = gr.Button(
folder_symbol, elem_id='open_folder_small'
)
pretrained_model_name_or_path_folder.click(
get_folder_path,
2023-01-09 13:08:47 +00:00
outputs=pretrained_model_name_or_path,
2022-12-22 16:51:34 +00:00
)
model_list = gr.Dropdown(
label='(Optional) Model Quick Pick',
choices=[
'custom',
'stabilityai/stable-diffusion-2-1-base',
'stabilityai/stable-diffusion-2-base',
'stabilityai/stable-diffusion-2-1',
'stabilityai/stable-diffusion-2',
'runwayml/stable-diffusion-v1-5',
'CompVis/stable-diffusion-v1-4',
],
)
2023-01-09 13:08:47 +00:00
save_model_as = gr.Dropdown(
2022-12-22 16:51:34 +00:00
label='Save trained model as',
choices=[
'same as source model',
'ckpt',
'diffusers',
'diffusers_safetensors',
'safetensors',
],
value='same as source model',
)
with gr.Row():
2023-01-09 13:08:47 +00:00
v2 = gr.Checkbox(label='v2', value=True)
v_parameterization = gr.Checkbox(
2022-12-22 16:51:34 +00:00
label='v_parameterization', value=False
)
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path.change(
2022-12-22 16:51:34 +00:00
remove_doublequote,
2023-01-09 13:08:47 +00:00
inputs=[pretrained_model_name_or_path],
outputs=[pretrained_model_name_or_path],
2022-12-22 16:51:34 +00:00
)
model_list.change(
set_pretrained_model_name_or_path_input,
2023-01-09 13:08:47 +00:00
inputs=[model_list, v2, v_parameterization],
2022-12-21 14:05:06 +00:00
outputs=[
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path,
v2,
v_parameterization,
2022-12-21 14:05:06 +00:00
],
2022-12-17 01:26:26 +00:00
)
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-09 13:08:47 +00:00
train_data_dir = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Image folder',
placeholder='Folder where the training folders containing the images are located',
)
train_data_dir_input_folder = gr.Button(
'📂', elem_id='open_folder_small'
)
train_data_dir_input_folder.click(
2023-01-09 13:08:47 +00:00
get_folder_path, outputs=train_data_dir
2022-12-22 16:51:34 +00:00
)
2023-01-09 13:08:47 +00:00
reg_data_dir = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Regularisation folder',
placeholder='(Optional) Folder where where the regularization folders containing the images are located',
)
reg_data_dir_input_folder = gr.Button(
'📂', elem_id='open_folder_small'
)
reg_data_dir_input_folder.click(
2023-01-09 13:08:47 +00:00
get_folder_path, outputs=reg_data_dir
2022-12-22 16:51:34 +00:00
)
with gr.Row():
2023-01-09 13:08:47 +00:00
output_dir = gr.Textbox(
label='Model output folder',
2022-12-22 16:51:34 +00:00
placeholder='Folder to output trained model',
)
output_dir_input_folder = gr.Button(
'📂', elem_id='open_folder_small'
)
output_dir_input_folder.click(get_folder_path, outputs=output_dir)
2023-01-09 13:08:47 +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(
'📂', elem_id='open_folder_small'
)
logging_dir_input_folder.click(
2023-01-09 13:08:47 +00:00
get_folder_path, outputs=logging_dir
2022-12-22 16:51:34 +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-09 13:08:47 +00:00
train_data_dir.change(
2022-12-22 16:51:34 +00:00
remove_doublequote,
2023-01-09 13:08:47 +00:00
inputs=[train_data_dir],
outputs=[train_data_dir],
2022-12-21 14:05:06 +00:00
)
2023-01-09 13:08:47 +00:00
reg_data_dir.change(
2022-12-22 16:51:34 +00:00
remove_doublequote,
2023-01-09 13:08:47 +00:00
inputs=[reg_data_dir],
outputs=[reg_data_dir],
2022-12-21 14:05:06 +00:00
)
2023-01-09 13:08:47 +00:00
output_dir.change(
2022-12-22 16:51:34 +00:00
remove_doublequote,
2023-01-09 13:08:47 +00:00
inputs=[output_dir],
outputs=[output_dir],
2022-12-22 16:51:34 +00:00
)
2023-01-09 13:08:47 +00:00
logging_dir.change(
2022-12-22 16:51:34 +00:00
remove_doublequote,
2023-01-09 13:08:47 +00:00
inputs=[logging_dir],
outputs=[logging_dir],
2022-12-21 14:05:06 +00:00
)
2022-12-22 16:51:34 +00:00
with gr.Tab('Training parameters'):
with gr.Row():
2023-01-09 13:08:47 +00:00
learning_rate = gr.Textbox(label='Learning rate', value=1e-6)
lr_scheduler = gr.Dropdown(
2022-12-22 16:51:34 +00:00
label='LR Scheduler',
choices=[
'constant',
'constant_with_warmup',
'cosine',
'cosine_with_restarts',
'linear',
'polynomial',
],
value='constant',
)
2023-01-09 13:08:47 +00:00
lr_warmup = gr.Textbox(label='LR warmup', value=0)
2022-12-22 16:51:34 +00:00
with gr.Row():
2023-01-09 13:08:47 +00:00
train_batch_size = gr.Slider(
2022-12-22 16:51:34 +00:00
minimum=1,
maximum=32,
label='Train batch size',
value=1,
step=1,
)
2023-01-09 13:08:47 +00:00
epoch = gr.Textbox(label='Epoch', value=1)
save_every_n_epochs = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Save every N epochs', value=1
)
with gr.Row():
2023-01-09 13:08:47 +00:00
mixed_precision = gr.Dropdown(
2022-12-22 16:51:34 +00:00
label='Mixed precision',
choices=[
'no',
'fp16',
'bf16',
],
value='fp16',
)
2023-01-09 13:08:47 +00:00
save_precision = gr.Dropdown(
2022-12-22 16:51:34 +00:00
label='Save precision',
choices=[
'float',
'fp16',
'bf16',
],
value='fp16',
)
2023-01-09 13:08:47 +00:00
num_cpu_threads_per_process = gr.Slider(
2022-12-22 16:51:34 +00:00
minimum=1,
maximum=os.cpu_count(),
step=1,
label='Number of CPU threads per process',
value=os.cpu_count(),
)
with gr.Row():
2023-01-09 13:08:47 +00:00
seed = gr.Textbox(label='Seed', value=1234)
max_resolution = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Max resolution',
value='512,512',
placeholder='512,512',
)
with gr.Row():
2023-01-09 13:08:47 +00:00
caption_extention = gr.Textbox(
2022-12-22 16:51:34 +00:00
label='Caption Extension',
placeholder='(Optional) Extension for caption files. default: .caption',
)
2023-01-09 13:08:47 +00:00
stop_text_encoder_training = gr.Slider(
2022-12-22 16:51:34 +00:00
minimum=0,
maximum=100,
value=0,
step=1,
label='Stop text encoder training',
)
with gr.Row():
enable_bucket = gr.Checkbox(label='Enable buckets', value=True)
2023-01-09 13:08:47 +00:00
cache_latent = gr.Checkbox(label='Cache latent', value=True)
use_8bit_adam = gr.Checkbox(label='Use 8bit adam', value=True)
2023-01-09 13:08:47 +00:00
xformers = gr.Checkbox(label='Use xformers', value=True)
2022-12-22 16:51:34 +00:00
with gr.Accordion('Advanced Configuration', open=False):
with gr.Row():
2023-01-09 13:08:47 +00:00
full_fp16 = gr.Checkbox(
2022-12-22 16:51:34 +00:00
label='Full fp16 training (experimental)', value=False
)
2023-01-09 13:08:47 +00:00
no_token_padding = gr.Checkbox(
2022-12-22 16:51:34 +00:00
label='No token padding', value=False
)
2022-12-13 14:20:25 +00:00
2023-01-09 13:08:47 +00:00
gradient_checkpointing = gr.Checkbox(
2022-12-22 16:51:34 +00:00
label='Gradient checkpointing', value=False
)
shuffle_caption = gr.Checkbox(
label='Shuffle caption', value=False
)
with gr.Row():
2022-12-22 16:51:34 +00:00
save_state = gr.Checkbox(
label='Save training state', value=False
)
color_aug = gr.Checkbox(
label='Color augmentation', value=False
)
flip_aug = gr.Checkbox(label='Flip augmentation', value=False)
color_aug.change(
color_aug_changed,
inputs=[color_aug],
2023-01-09 13:08:47 +00:00
outputs=[cache_latent],
)
clip_skip = gr.Slider(
label='Clip skip', value='1', minimum=1, maximum=12, step=1
)
2022-12-22 16:51:34 +00:00
with gr.Row():
resume = gr.Textbox(
label='Resume from saved training state',
placeholder='path to "last-state" state folder to resume from',
)
resume_button = gr.Button('📂', elem_id='open_folder_small')
resume_button.click(get_folder_path, outputs=resume)
prior_loss_weight = gr.Number(
label='Prior loss weight', value=1.0
)
vae = gr.Textbox(
label='VAE',
placeholder='(Optiona) path to checkpoint of vae to replace for training',
)
vae_button = gr.Button('📂', elem_id='open_folder_small')
vae_button.click(get_any_file_path, outputs=vae)
2022-12-23 01:18:51 +00:00
with gr.Tab('Tools'):
gr.Markdown(
'This section provide Dreambooth tools to help setup your dataset...'
)
2022-12-23 01:18:51 +00:00
gradio_dreambooth_folder_creation_tab(
2023-01-09 13:08:47 +00:00
train_data_dir_input=train_data_dir,
reg_data_dir_input=reg_data_dir,
output_dir_input=output_dir,
logging_dir_input=logging_dir,
2022-12-23 01:18:51 +00:00
)
2022-12-22 16:51:34 +00:00
button_run = gr.Button('Train model')
settings_list = [
2023-01-09 13:08:47 +00:00
pretrained_model_name_or_path,
v2,
v_parameterization,
logging_dir,
train_data_dir,
reg_data_dir,
output_dir,
max_resolution,
learning_rate,
lr_scheduler,
lr_warmup,
train_batch_size,
epoch,
save_every_n_epochs,
mixed_precision,
save_precision,
seed,
num_cpu_threads_per_process,
cache_latent,
caption_extention,
enable_bucket,
gradient_checkpointing,
full_fp16,
no_token_padding,
stop_text_encoder_training,
use_8bit_adam,
xformers,
save_model_as,
shuffle_caption,
save_state,
resume,
prior_loss_weight,
color_aug,
flip_aug,
clip_skip,
vae,
output_name,
]
2022-12-22 16:51:34 +00:00
button_open_config.click(
open_configuration,
inputs=[config_file_name] + settings_list,
outputs=[config_file_name] + settings_list,
2022-12-22 16:51:34 +00:00
)
button_save_config.click(
save_configuration,
inputs=[dummy_db_false, config_file_name] + settings_list,
2022-12-22 16:51:34 +00:00
outputs=[config_file_name],
)
button_save_as_config.click(
save_configuration,
inputs=[dummy_db_true, config_file_name] + settings_list,
2022-12-22 16:51:34 +00:00
outputs=[config_file_name],
)
button_run.click(
train_model,
inputs=settings_list,
2022-12-22 16:51:34 +00:00
)
return (
2023-01-09 13:08:47 +00:00
train_data_dir,
reg_data_dir,
output_dir,
logging_dir,
2022-12-22 16:51:34 +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'
)
args = parser.parse_args()
UI(username=args.username, password=args.password)