llama_CN_demo / app.py
VikrantRamesh's picture
add requirements and fix app.py
d74963b
raw
history blame contribute delete
No virus
260 Bytes
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)