DrDominikDellermann commited on
Commit
427e7ec
Β·
1 Parent(s): 5fb0891

Update 01_🏠_Home.py

Browse files
Files changed (1) hide show
  1. 01_🏠_Home.py +3 -12
01_🏠_Home.py CHANGED
@@ -20,9 +20,9 @@ st.sidebar.header("Home")
20
 
21
  asr_model_options = ['tiny.en','base.en','small.en']
22
 
23
- asr_model_name = st.sidebar.selectbox("Whisper Model Options", options=asr_model_options, key="sbox")
24
 
25
- st.markdown("## Earnings Call Analysis Whisperer")
26
 
27
  twitter_link = """
28
  [![](https://img.shields.io/twitter/follow/nickmuchi?label=@nickmuchi&style=social)](https://twitter.com/nickmuchi)
@@ -31,14 +31,7 @@ twitter_link = """
31
  st.markdown(twitter_link)
32
 
33
  st.markdown(
34
- """
35
- This app assists finance analysts with transcribing and analysis Earnings Calls by carrying out the following tasks:
36
- - Transcribing earnings calls using Open AI's Whisper API, takes approx 3mins to transcribe a 1hr call less than 25mb in size.
37
- - Analysing the sentiment of transcribed text using the quantized version of [FinBert-Tone](https://huggingface.co/nickmuchi/quantized-optimum-finbert-tone).
38
- - Summarization of the call with [philschmid/flan-t5-base-samsum](https://huggingface.co/philschmid/flan-t5-base-samsum) model with entity extraction
39
- - Question Answering Search engine powered by Langchain and [Sentence Transformers](https://huggingface.co/sentence-transformers/all-mpnet-base-v2).
40
- - Knowledge Graph generation using [Babelscape/rebel-large](https://huggingface.co/Babelscape/rebel-large) model.
41
-
42
  **πŸ‘‡ Enter a YouTube Earnings Call URL below and navigate to the sidebar tabs**
43
 
44
  """
@@ -68,5 +61,3 @@ st.markdown(
68
  )
69
 
70
  upload_wav = st.file_uploader("Upload a .wav/.mp3/.mp4 audio file ",key="upload",type=['.wav','.mp3','.mp4'])
71
-
72
- st.markdown("![visitors](https://visitor-badge.glitch.me/badge?page_id=nickmuchi.earnings-call-whisperer)")
 
20
 
21
  asr_model_options = ['tiny.en','base.en','small.en']
22
 
23
+ asr_model_name = st.sidebar.selectbox("Transcription model", options=asr_model_options, key="sbox")
24
 
25
+ st.markdown("## Interview analyzer")
26
 
27
  twitter_link = """
28
  [![](https://img.shields.io/twitter/follow/nickmuchi?label=@nickmuchi&style=social)](https://twitter.com/nickmuchi)
 
31
  st.markdown(twitter_link)
32
 
33
  st.markdown(
34
+ """
 
 
 
 
 
 
 
35
  **πŸ‘‡ Enter a YouTube Earnings Call URL below and navigate to the sidebar tabs**
36
 
37
  """
 
61
  )
62
 
63
  upload_wav = st.file_uploader("Upload a .wav/.mp3/.mp4 audio file ",key="upload",type=['.wav','.mp3','.mp4'])