madani commited on
Commit
80110c7
1 Parent(s): ce022b0

Upload example1.py

Browse files
Files changed (1) hide show
  1. example1.py +7 -0
example1.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ model="distilbert-base-uncased-finetuned-sst-2-english"
5
+ classifier = pipeline("sentiment-analysis", model=model)
6
+ text = st.text_input("Input a text:")
7
+ st.write(classifier(text))