kohya_ss / library /class_configuration_file.py
Ateras's picture
Upload folder using huggingface_hub
fe6327d
raw
history blame
No virus
1.26 kB
import gradio as gr
from .common_gui import remove_doublequote
class ConfigurationFile:
def __init__(self, headless=False):
self.headless = headless
with gr.Accordion('Configuration file', open=False):
with gr.Row():
self.button_open_config = gr.Button(
'Open πŸ“‚', elem_id='open_folder', visible=(not self.headless)
)
self.button_save_config = gr.Button(
'Save πŸ’Ύ', elem_id='open_folder',
)
self.button_save_as_config = gr.Button(
'Save as... πŸ’Ύ', elem_id='open_folder', visible=(not self.headless)
)
self.config_file_name = gr.Textbox(
label='',
placeholder="type the configuration file path or use the 'Open' button above to select it...",
interactive=True,
)
self.button_load_config = gr.Button('Load πŸ’Ύ', elem_id='open_folder')
self.config_file_name.blur(
remove_doublequote,
inputs=[self.config_file_name],
outputs=[self.config_file_name],
)