awacke1 commited on
Commit
b92b5c7
·
1 Parent(s): f54f991

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -7
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)