Roya / app.py
FamilyK1ng's picture
Create app.py
d1019d7
raw
history blame
177 Bytes
import streamlit as it
from transformers import pipeline
pipe = pipeline('continent-analysis')
text = st.text_area('enter some text!')
if text;
out = pipe(text)
st.json(out)