Remove plotly import
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ from sklearn.metrics import classification_report
|
|
| 10 |
|
| 11 |
# from models import create_nest_sentences, load_summary_model, summarizer_gen, load_model, classifier_zero
|
| 12 |
import models as md
|
| 13 |
-
from utils import
|
| 14 |
import json
|
| 15 |
|
| 16 |
ex_text, ex_license, ex_labels, ex_glabels = examples_load()
|
|
@@ -363,4 +363,4 @@ if submit_button or example_button:
|
|
| 363 |
# st.dataframe(df_report)
|
| 364 |
|
| 365 |
st.success('All done!')
|
| 366 |
-
st.balloons()
|
|
|
|
| 10 |
|
| 11 |
# from models import create_nest_sentences, load_summary_model, summarizer_gen, load_model, classifier_zero
|
| 12 |
import models as md
|
| 13 |
+
from utils import examples_load, example_long_text_load
|
| 14 |
import json
|
| 15 |
|
| 16 |
ex_text, ex_license, ex_labels, ex_glabels = examples_load()
|
|
|
|
| 363 |
# st.dataframe(df_report)
|
| 364 |
|
| 365 |
st.success('All done!')
|
| 366 |
+
st.balloons()
|