krishnasai99 commited on
Commit
a56cdf9
·
1 Parent(s): 18bf1eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  from transformers import pipeline
3
 
4
  def load_summarizer():
5
- whisper = pipeline('automatic-speech-recognition' , model ='openai/whisper-medium') #audio-to-text
6
  summarize = pipeline("summarization", device=0)
7
  senti = pipeline("sentiment-analysis",device=0)
8
  nameentity = pipeline("ner",device=0)
 
2
  from transformers import pipeline
3
 
4
  def load_summarizer():
5
+ whisper = pipeline('automatic-speech-recognition') #audio-to-text
6
  summarize = pipeline("summarization", device=0)
7
  senti = pipeline("sentiment-analysis",device=0)
8
  nameentity = pipeline("ner",device=0)