Spaces:
Sleeping
Sleeping
ksvmuralidhar
commited on
Commit
•
e0e165f
1
Parent(s):
a57b25b
Update app.py
Browse files
app.py
CHANGED
@@ -221,7 +221,8 @@ def summ_inference(txt: str):
|
|
221 |
|
222 |
############## ENTRY POINT START #######################
|
223 |
def main():
|
224 |
-
st.markdown(
|
|
|
225 |
article_txt = st.text_area("Paste a few sentences of a news article:", "", height=200)
|
226 |
article_txt = re.sub(r'\n+',' ', article_txt)
|
227 |
if st.button("Submit"):
|
|
|
221 |
|
222 |
############## ENTRY POINT START #######################
|
223 |
def main():
|
224 |
+
st.markdown('''<h3>News Summarizer and NER</h3>
|
225 |
+
<p><a href="https://huggingface.co/spaces/ksvmuralidhar/news-summarizer-ner/blob/main/README.md#new-summarization--ner">README</a></p>''', unsafe_allow_html=True)
|
226 |
article_txt = st.text_area("Paste a few sentences of a news article:", "", height=200)
|
227 |
article_txt = re.sub(r'\n+',' ', article_txt)
|
228 |
if st.button("Submit"):
|