Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,6 @@ pipe = pipeline('sentiment-analysis')
|
|
7 |
text = st.text_area('enter some text: ')
|
8 |
|
9 |
if text:
|
10 |
-
out = pipe(text)
|
11 |
-
inference()
|
12 |
st.json(out)
|
|
|
7 |
text = st.text_area('enter some text: ')
|
8 |
|
9 |
if text:
|
10 |
+
#out = pipe(text)
|
11 |
+
out = inference(text)
|
12 |
st.json(out)
|