nppmatt commited on
Commit
d1e02d2
·
1 Parent(s): c97b094

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -1,7 +1,6 @@
1
  from transformers import pipeline
2
-
3
-
4
  import streamlit as st
5
 
6
- x = st.slider('Select a value')
7
- st.write(x, 'squared is', x * x)
 
1
  from transformers import pipeline
2
+ import torch
3
+ import torch.nn.functional as TF
4
  import streamlit as st
5
 
6
+ classifier = pipeline("sentiment-analysis")