eval / app.py
johvir's picture
Update app.py
acac516
raw
history blame
181 Bytes
import streamlit as st
from transformers import T5ForConditionalGeneration, T5Tokenizer
sentence = st.text_area("enter some text")
if sentence:
st.json(sentence)