mango1 / app.py
on1onmangoes's picture
Update app.py
f02106f
raw
history blame
472 Bytes
import streamlit as st
from transformers import pipeline
from pydub import AudioSegment, silence
import speech_recognition as sr
pipe = pipeline('sentiment-analysis')
text = st.text_area('Enter your notes')
if text:
out = pipe(text)
st.json(out)
st.markdown("<h1 style = text align:center;'> Group Therapy Notes </h1>",unsafe_allow_html = True)
st.markdown("---",unsafe_allow_html=True)
audio=st.file_uploader("Upload Your Audio File", type=['mp3','wav','m4a'])