import streamlit as st st.set_page_config( page_title="Classify article", page_icon="🏴‍☠️") st.markdown('# 🏴‍☠️ Classify a scientific article') text = st.text_area("Article title and summary", placeholder="Probabilistic Constructions of Computable Objects and a Computable Version of Lovasz Local Lemma", height=5, max_chars=512) predictions = text.split() st.table(predictions)