Nuthanon commited on
Commit
cbbb853
·
verified ·
1 Parent(s): 0cde259

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ st.title("Test")
5
+ test_pipeline = pipeline("sentiment.analysis")
6
+
7
+ prompt = st.text_area("Hi")