Spaces:
Runtime error
Runtime error
File size: 562 Bytes
ecc85fd 7722f04 ecc85fd aeda05f ecc85fd aeda05f eacbe7c 4a995ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import streamlit as st
from transformers import pipeline
classifier = pipeline("image-classification",
model="microsoft/cvt-13")
def main():
st.title("image-classification")
with st.form("image-classification"):
text = st.text_area('enter link image:')
# clicked==True only when the button is clicked
clicked = st.form_submit_button("Submit")
if clicked:
results = classifier(text)
st.json(results)
if __name__ == "__main__":
main() |