Delete hf download tab

This commit is contained in:
litagin02
2024-05-31 19:09:47 +09:00
parent db3e28cd47
commit ba7b03e359
3 changed files with 2 additions and 108 deletions

3
app.py
View File

@@ -6,7 +6,6 @@ import torch
from config import get_path_config
from gradio_tabs.dataset import create_dataset_app
from gradio_tabs.download_tab import create_download_app
from gradio_tabs.inference import create_inference_app
from gradio_tabs.merge import create_merge_app
from gradio_tabs.style_vectors import create_style_vectors_app
@@ -57,8 +56,6 @@ with gr.Blocks(theme=GRADIO_THEME) as app:
create_style_vectors_app()
with gr.Tab("マージ"):
create_merge_app(model_holder=model_holder)
with gr.Tab("モデルダウンロード"):
create_download_app()
app.launch(
server_name=args.host,