Suratsada commited on
Commit
ecc85fd
·
1 Parent(s): fc8279f

Create new file

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ classifier = pipeline("image-classification",
5
+ model="microsoft/cvt-13")
6
+
7
+ def main():
8
+ st.title("image-classification")
9
+
10
+ with st.form("image-classification"):
11
+ text = st.text_area('enter link image:')
12
+ # clicked==True only when the button is clicked
13
+ clicked = st.form_submit_button("Submit")
14
+ if clicked:
15
+ results = classifier([text])
16
+ st.(results)