| import os | |
| import streamlit as st | |
| from transformers import pipeline | |
| classifier = pipeline("sentiment-analysis") | |
| result = classifier("This world is a beautiful place") | |
| # App config | |
| st.set_page_config(page_title="Playground",page_icon= "🌍") | |
| st.title("Try out") | |
| st.write(result) |