Ono-Enzo commited on
Commit
328f57e
·
1 Parent(s): 8feaa09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -2,9 +2,7 @@ import streamlit as st
2
  from transformers import pipeline
3
  pipe = pipeline('sentiment-analysis')
4
  text = st.text_area('Escreve ai')
5
- with st.container():
6
- st.set_page_config(page_title='QASports')
7
- st.subheader('QASports',divider='rainbow')
8
 
9
  if text:
10
  out = pipe(text)
 
2
  from transformers import pipeline
3
  pipe = pipeline('sentiment-analysis')
4
  text = st.text_area('Escreve ai')
5
+ st.subheader('QASports',divider='rainbow')
 
 
6
 
7
  if text:
8
  out = pipe(text)