googlyeyes's picture
Added an application file. This file can read text and displays the keywords in the text
f52ac06
raw history blame
No virus
550 Bytes
import streamlit as st
import yake
st.title("Question answer generation")
st.markdown("The model outputs a set of questions and answers based on a paragraph")
# Text input widget
text = st.text_area(label="Enter text corpus here")
# For now we consider only single paragraphs of text
# paragraphs = parse_text(text) would break the text into multiple paragraphs
# Initialize the keyword extractor
kw_extractor = yake.KeywordExtractor()
keywords = kw_extractor.extract_keywords(text)
# Display the keywords that were extracted
st.write(keywords)