Spaces:
Runtime error
Runtime error
Commit
·
7770418
1
Parent(s):
b35a93b
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import spacy
|
3 |
+
import spacy_streamlit
|
4 |
|
5 |
+
#nlp = spacy.load('la_core_web_lg')
|
6 |
+
|
7 |
+
|
8 |
+
txt = st.text_area('Enter text: ')
|
9 |
+
|
10 |
+
st.write('The entered text is:',txt)
|