Skip to content

Commit

Permalink
remove gradio api things
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf committed Sep 8, 2024
1 parent a1d3477 commit f09e159
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion tabs/download/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ def download_tab():
fn=run_download_script,
inputs=[model_link],
outputs=[model_download_output_info],
api_name="model_download",
)
gr.Markdown(value=i18n("## Drop files"))
dropbox = gr.File(
Expand Down
1 change: 0 additions & 1 deletion tabs/extra/f0_extractor/f0_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,4 @@ def f0_extractor_tab():
f0_method,
],
outputs=[image_output, txt_output],
api_name="f0_extract",
)
1 change: 0 additions & 1 deletion tabs/extra/model_author/model_author.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ def model_author_tab():
fn=run_model_author_script,
inputs=[model_author_name],
outputs=[model_author_output_info],
api_name="model_author",
)
1 change: 0 additions & 1 deletion tabs/extra/model_information.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ def model_information_tab():
fn=run_model_information_script,
inputs=[model_name],
outputs=[model_information_output_info],
api_name="model_information",
)
1 change: 0 additions & 1 deletion tabs/extra/processing/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ def processing_tab():
fn=run_model_information_script,
inputs=[model_view_model_path],
outputs=[model_view_output_info],
api_name="model_info",
)
4 changes: 0 additions & 4 deletions tabs/train/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@ def train_tab():
process_effects,
],
outputs=[preprocess_output_info],
api_name="preprocess_dataset",
)

with gr.Accordion(i18n("Extract")):
Expand Down Expand Up @@ -536,7 +535,6 @@ def train_tab():
embedder_model_custom,
],
outputs=[extract_output_info],
api_name="extract_features",
)

with gr.Accordion(i18n("Train")):
Expand Down Expand Up @@ -761,7 +759,6 @@ def train_tab():
d_pretrained_path,
],
outputs=[train_output_info],
api_name="start_training",
)

stop_train_button = gr.Button(i18n("Stop Training"), visible=False)
Expand All @@ -776,7 +773,6 @@ def train_tab():
fn=run_index_script,
inputs=[model_name, rvc_version, index_algorithm],
outputs=[train_output_info],
api_name="generate_index",
)

with gr.Accordion(i18n("Export Model"), open=False):
Expand Down

0 comments on commit f09e159

Please sign in to comment.