Spaces:
Runtime error
Runtime error
Commit
Β·
4cb6bc6
1
Parent(s):
fbaddca
changed welcome page text
Browse files
app.py
CHANGED
|
@@ -68,23 +68,28 @@ st.title('Open-source NLP')
|
|
| 68 |
|
| 69 |
if page == "Welcome!":
|
| 70 |
st.header('Welcome!')
|
|
|
|
|
|
|
| 71 |
st.write(
|
| 72 |
"""
|
| 73 |
-
|
| 74 |
-
|
| 75 |
"""
|
| 76 |
)
|
| 77 |
|
| 78 |
-
st.
|
| 79 |
st.write(
|
| 80 |
"""
|
| 81 |
-
|
| 82 |
-
|
| 83 |
"""
|
| 84 |
)
|
|
|
|
|
|
|
|
|
|
| 85 |
st.subheader("Introduction")
|
| 86 |
st.write("""
|
| 87 |
-
|
| 88 |
by those who give back to the community. This tool was constructed using Streamlit, Huggingface Transformers,
|
| 89 |
Transformers-Interpret, NLTK, Spacy, amongst other open-source Python libraries and models.
|
| 90 |
|
|
|
|
| 68 |
|
| 69 |
if page == "Welcome!":
|
| 70 |
st.header('Welcome!')
|
| 71 |
+
|
| 72 |
+
st.markdown("")
|
| 73 |
st.write(
|
| 74 |
"""
|
| 75 |
+
|
| 76 |
+
|
| 77 |
"""
|
| 78 |
)
|
| 79 |
|
| 80 |
+
st.subheader("Quickstart")
|
| 81 |
st.write(
|
| 82 |
"""
|
| 83 |
+
Replace the example text below and flip through the pages in the menu to perform NLP tasks on-demand!
|
| 84 |
+
Feel free to use the example text for a test run.
|
| 85 |
"""
|
| 86 |
)
|
| 87 |
+
|
| 88 |
+
text = st.text_area("Paste text here", value=example_text)
|
| 89 |
+
|
| 90 |
st.subheader("Introduction")
|
| 91 |
st.write("""
|
| 92 |
+
Hello! This application is a celebration of open-source and the power that programmers have been granted today
|
| 93 |
by those who give back to the community. This tool was constructed using Streamlit, Huggingface Transformers,
|
| 94 |
Transformers-Interpret, NLTK, Spacy, amongst other open-source Python libraries and models.
|
| 95 |
|