Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1011,14 +1011,14 @@ with gr.Blocks(title=TITLE, css=css, theme="Werli/Multi-Tagger", fill_width=True
|
|
1011 |
size="lg",
|
1012 |
)
|
1013 |
with gr.Column(variant="panel"):
|
1014 |
-
download_file = gr.File(label="Output (Download)")
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
general_res = gr.Label(label="Output (tags)")
|
1021 |
-
unclassified = gr.JSON(label="Unclassified (tags)")
|
1022 |
clear.add(
|
1023 |
[
|
1024 |
download_file,
|
|
|
1011 |
size="lg",
|
1012 |
)
|
1013 |
with gr.Column(variant="panel"):
|
1014 |
+
download_file = gr.File(label="Output (Download)") # 0
|
1015 |
+
character_res = gr.Label(label="Output (characters)") # 1
|
1016 |
+
sorted_general_strings = gr.Textbox(label="Output (string)", show_label=True, show_copy_button=True) # 2
|
1017 |
+
categorized_output = gr.Textbox(label="Categorized Output (string)", show_label=True, show_copy_button=True) # 3
|
1018 |
+
categorized = gr.JSON(label="Categorized (tags)") # 4
|
1019 |
+
rating = gr.Label(label="Rating") # 5
|
1020 |
+
general_res = gr.Label(label="Output (tags)") # 6
|
1021 |
+
unclassified = gr.JSON(label="Unclassified (tags)") # 7
|
1022 |
clear.add(
|
1023 |
[
|
1024 |
download_file,
|