Spaces:
Sleeping
Sleeping
File size: 260 Bytes
97f1b33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
from transformers import pipeline
pipeline = pipeline(task="image-classification", model="julien-c/hotdog-not-hotdog")
st.title("Hot Dog? Or Not?")
col1, col2 = st.columns(2)
predictions = pipeline("Explain TCP")
print(predictions)
|