Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,8 +7,9 @@ pipe = pipeline("summarization", model="Yihui/t5-small-text-summary-generation")
|
|
7 |
|
8 |
# Set the title of the app
|
9 |
st.title("Summary Generator")
|
10 |
-
st.markdown("<p style='color:blue; font-size:20px;'>Developed by Usman</p>", unsafe_allow_html=True)
|
11 |
st.markdown("<p style='color:red; font-size:15px;'>Based on Hugging Face Model</p>", unsafe_allow_html=True)
|
|
|
12 |
|
13 |
# Create a text area for user input
|
14 |
input_text = st.text_area("Enter the text you want to get summarize:", height=200)
|
|
|
7 |
|
8 |
# Set the title of the app
|
9 |
st.title("Summary Generator")
|
10 |
+
#st.markdown("<p style='color:blue; font-size:20px;'>Developed by Usman</p>", unsafe_allow_html=True)
|
11 |
st.markdown("<p style='color:red; font-size:15px;'>Based on Hugging Face Model</p>", unsafe_allow_html=True)
|
12 |
+
st.markdown("<p style='color:blue; font-size:20px;'>Tokens min_length=30 & max_length=150</p>", unsafe_allow_html=True)
|
13 |
|
14 |
# Create a text area for user input
|
15 |
input_text = st.text_area("Enter the text you want to get summarize:", height=200)
|