Spaces:
Runtime error
Runtime error
nicoladisabato
commited on
Commit
Β·
b06cb48
1
Parent(s):
bcded58
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ import time
|
|
7 |
st.set_page_config(page_title='πβοΈ Chat Summarizer ππ')
|
8 |
st.title('πβοΈ Chat Summarizer ππ')
|
9 |
|
10 |
-
st.write("Check out the full notebook
|
11 |
|
12 |
|
13 |
# Define available models and their corresponding names
|
@@ -29,7 +29,7 @@ Alice: Thanks! I'll give you a spoiler-free review afterward.
|
|
29 |
Bob: Looking forward to it. Have a great time!
|
30 |
"""
|
31 |
|
32 |
-
text = st.text_area("Enter your chat", value=predefined_text, height=
|
33 |
button = st.button('Summarize')
|
34 |
|
35 |
if button:
|
|
|
7 |
st.set_page_config(page_title='πβοΈ Chat Summarizer ππ')
|
8 |
st.title('πβοΈ Chat Summarizer ππ')
|
9 |
|
10 |
+
st.write("Check out the full notebook [here](https://www.kaggle.com/code/nicoladisabato/pegasus-fine-tuning-for-text-summarization)")
|
11 |
|
12 |
|
13 |
# Define available models and their corresponding names
|
|
|
29 |
Bob: Looking forward to it. Have a great time!
|
30 |
"""
|
31 |
|
32 |
+
text = st.text_area("Enter your chat", value=predefined_text, height=250)
|
33 |
button = st.button('Summarize')
|
34 |
|
35 |
if button:
|