Update app.py
Browse files
app.py
CHANGED
|
@@ -236,7 +236,7 @@ with st.form(key='columns_in_form'):
|
|
| 236 |
|
| 237 |
st.success(f"""Digest completed in {digestor.timer.timers['digest_time']} seconds.""")
|
| 238 |
|
| 239 |
-
st.write("Here
|
| 240 |
|
| 241 |
# Summarize the findings for all models
|
| 242 |
labels = [i for i in range(outdata['article_count'])]
|
|
@@ -257,7 +257,7 @@ with st.form(key='columns_in_form'):
|
|
| 257 |
ax.set_xticks(x)
|
| 258 |
ax.set_yticks([i for i in range(0,max(original_length),max(summarized_length))])
|
| 259 |
ax.set_xticklabels(labels)
|
| 260 |
-
ax.set_xlabel('
|
| 261 |
|
| 262 |
plt.title('Original to Summarized Lengths in Space-Separated Tokens')
|
| 263 |
#ax.hist(arr, bins=20)
|
|
|
|
| 236 |
|
| 237 |
st.success(f"""Digest completed in {digestor.timer.timers['digest_time']} seconds.""")
|
| 238 |
|
| 239 |
+
st.write("Here are some stats about the summarization:\n")
|
| 240 |
|
| 241 |
# Summarize the findings for all models
|
| 242 |
labels = [i for i in range(outdata['article_count'])]
|
|
|
|
| 257 |
ax.set_xticks(x)
|
| 258 |
ax.set_yticks([i for i in range(0,max(original_length),max(summarized_length))])
|
| 259 |
ax.set_xticklabels(labels)
|
| 260 |
+
ax.set_xlabel('Article')
|
| 261 |
|
| 262 |
plt.title('Original to Summarized Lengths in Space-Separated Tokens')
|
| 263 |
#ax.hist(arr, bins=20)
|