-
-
Notifications
You must be signed in to change notification settings - Fork 511
Expand file tree
/
Copy pathmodel_information.py
More file actions
29 lines (25 loc) · 925 Bytes
/
model_information.py
File metadata and controls
29 lines (25 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import gradio as gr
from core import run_model_information_script
from assets.i18n.i18n import I18nAuto
i18n = I18nAuto()
def model_information_tab():
with gr.Column():
model_name = gr.Textbox(
label=i18n("Path to Model"),
info=i18n("Introduce the model pth path"),
placeholder=i18n("Introduce the model pth path"),
interactive=True,
)
model_information_output_info = gr.Textbox(
label=i18n("Output Information"),
info=i18n("The output information will be displayed here."),
value="",
max_lines=12,
interactive=False,
)
model_information_button = gr.Button(i18n("See Model Information"))
model_information_button.click(
fn=run_model_information_script,
inputs=[model_name],
outputs=[model_information_output_info],
)