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) |
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) |