sagax-sagacis commited on
Commit
b46f8ee
1 Parent(s): 2959531

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,10 +2,10 @@ import transformers
2
  import streamlit as st
3
  from transformers import pipeline
4
 
5
- #pipe = pipeline('sentiment-analysis')
6
  #text = st.text_area('Enter some text')
7
 
8
- pipe = pipeline('sentiment-analysis', model='sagax-sagacis/finetuned_demo')
9
 
10
  text = st.text_area('Enter some text')
11
 
 
2
  import streamlit as st
3
  from transformers import pipeline
4
 
5
+ pipe = pipeline('sentiment-analysis')
6
  #text = st.text_area('Enter some text')
7
 
8
+ #pipe = pipeline('sentiment-analysis', model='sagax-sagacis/finetuned_demo')
9
 
10
  text = st.text_area('Enter some text')
11