Spaces:
Runtime error
Runtime error
freemt
commited on
Commit
·
668e2f9
1
Parent(s):
f7bf4bf
Comment out df_html in fn gradiobee's output
Browse files- radiobee/__main__.py +1 -1
- radiobee/gradiobee.py +4 -2
radiobee/__main__.py
CHANGED
@@ -396,7 +396,7 @@ if __name__ == "__main__":
|
|
396 |
out_sents_dl,
|
397 |
out_sents_dl_excel,
|
398 |
out_df_aligned,
|
399 |
-
gr.outputs.HTML(),
|
400 |
# gr.outputs.Image(label="plot"),
|
401 |
]
|
402 |
# outputs = ["dataframe", "plot", "plot"] # wont work
|
|
|
396 |
out_sents_dl,
|
397 |
out_sents_dl_excel,
|
398 |
out_df_aligned,
|
399 |
+
# gr.outputs.HTML(),
|
400 |
# gr.outputs.Image(label="plot"),
|
401 |
]
|
402 |
# outputs = ["dataframe", "plot", "plot"] # wont work
|
radiobee/gradiobee.py
CHANGED
@@ -445,7 +445,8 @@ def gradiobee( # noqa
|
|
445 |
if sent_ali_algo in ["None"]:
|
446 |
ic("returning para-ali outputs")
|
447 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
448 |
-
return df_trimmed, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
|
|
449 |
|
450 |
# ### proceed with sent align
|
451 |
if sent_ali_algo in ["fast"]:
|
@@ -506,4 +507,5 @@ def gradiobee( # noqa
|
|
506 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
507 |
|
508 |
# remove output_plot, need to modify all return and error_msg.error_msg
|
509 |
-
return df_trimmed, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
|
|
|
445 |
if sent_ali_algo in ["None"]:
|
446 |
ic("returning para-ali outputs")
|
447 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
448 |
+
# return df_trimmed, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
449 |
+
return df_trimmed, file_dl, file_dl_xlsx, None, None, df_aligned
|
450 |
|
451 |
# ### proceed with sent align
|
452 |
if sent_ali_algo in ["fast"]:
|
|
|
507 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
508 |
|
509 |
# remove output_plot, need to modify all return and error_msg.error_msg
|
510 |
+
# return df_trimmed, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
511 |
+
return df_trimmed, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents
|