Spaces:
Runtime error
Runtime error
File size: 396 Bytes
4f79945 f9021a0 a5a9530 f9021a0 a5a9530 f9021a0 a5a9530 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
st.markdown("### Hello, world!")
st.markdown("<img width=200px src='https://rozetked.me/images/uploads/dwoilp3BVjlE.jpg'>", unsafe_allow_html=True)
from transformers import pipeline
def process(title, abstract):
txt = title + ' ' + abstract
return txt
title = st.text_area("Title")
abstract = st.text_area("Abstract")
st.markdown(f"{process(title, abstract)}") |