miesnerjacob commited on
Commit
4cb6bc6
Β·
1 Parent(s): fbaddca

changed welcome page text

Browse files
Files changed (1) hide show
  1. app.py +11 -6
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
- Type or Paste in your text and flip through the pages to perform NLP tasks on-demand. Supercharge
74
- your workflow with this platform built using 100% open-source resources!
75
  """
76
  )
77
 
78
- st.markdown("![Alt Text](https://media.giphy.com/media/2fEvoZ9tajMxq/giphy.gif)")
79
  st.write(
80
  """
81
-
82
-
83
  """
84
  )
 
 
 
85
  st.subheader("Introduction")
86
  st.write("""
87
- Welcome! This application is a celebration of open-source and the power that programmers have been granted today
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("![Alt Text](https://media.giphy.com/media/2fEvoZ9tajMxq/giphy.gif)")
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