Spaces:
Runtime error
Runtime error
add info
Browse files
app.py
CHANGED
|
@@ -17,6 +17,11 @@ if __name__ == "__main__":
|
|
| 17 |
# Main Application
|
| 18 |
# ---------------------------------
|
| 19 |
st.title("Text Summarizer π")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
summarize_type = st.sidebar.selectbox(
|
| 21 |
"Summarization type", options=["Extractive", "Abstractive"]
|
| 22 |
)
|
|
|
|
| 17 |
# Main Application
|
| 18 |
# ---------------------------------
|
| 19 |
st.title("Text Summarizer π")
|
| 20 |
+
|
| 21 |
+
st.markdown("Creator: [Atharva Ingle](https://github.com/Gladiator07)")
|
| 22 |
+
st.markdown(
|
| 23 |
+
"Source code: [GitHub Repository](https://github.com/Gladiator07/Text-Summarizer)"
|
| 24 |
+
)
|
| 25 |
summarize_type = st.sidebar.selectbox(
|
| 26 |
"Summarization type", options=["Extractive", "Abstractive"]
|
| 27 |
)
|