Spaces:
Runtime error
Runtime error
File size: 339 Bytes
704f5db e9d11d0 e199a11 e9d11d0 e199a11 e9d11d0 e199a11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
from transformers import pipeline
from PIL import Image
pipeline = pipeline(task="image-classification", model="julien-c/hotdog-not-hotdog")
st.title("Hot Dog? Or Not?")
file_name = st.file_uploader("Upload the paper you want to see code for")
with open(file_name, "r") as f:
text = f.read()
st.write(text)
|