Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,13 +66,6 @@ if uploaded_file:
|
|
66 |
file_text = uploaded_file.read().decode("utf-8")
|
67 |
text_without_timestamps = remove_timestamps(file_text)
|
68 |
|
69 |
-
st.markdown("**Text without Timestamps:**")
|
70 |
-
st.write(text_without_timestamps)
|
71 |
-
|
72 |
-
processed_text = process_text(text_without_timestamps)
|
73 |
-
st.markdown("**Markdown Outline with Emojis:**")
|
74 |
-
st.markdown(processed_text)
|
75 |
-
|
76 |
unit_test(file_text)
|
77 |
|
78 |
top_words = extract_high_information_words(text_without_timestamps, 10)
|
|
|
66 |
file_text = uploaded_file.read().decode("utf-8")
|
67 |
text_without_timestamps = remove_timestamps(file_text)
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
unit_test(file_text)
|
70 |
|
71 |
top_words = extract_high_information_words(text_without_timestamps, 10)
|