Skip to content

Commit

Permalink
Merge pull request #16 from virtUOS/dev
Browse files Browse the repository at this point in the history
Changes in tooltips text to make them more on point.
  • Loading branch information
Odrec authored Nov 20, 2024
2 parents ae1b93a + fbd2085 commit 6e2b6ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,14 +200,14 @@ def callback_disable_controls():

lang = st.selectbox("Select Language", ["de", "en", "es", "fr", "it", "ja", "nl", "pt", "uk", "zh"])
model = st.selectbox("Select Model", ["base", "large-v3"], index=0,
help="base: balance between quality and speed of transcription; "
"large-v3: slower transcription speed but highest quality.")
help="Base Model: for quick and low effort versions of your audio file "
"(balance between accuracy and speed of transcription). "
"Large-v3 Model: for a first detailed glance on research data "
"(slower transcription but with higher accuracy).")
detect_speakers = st.toggle("Detect different speakers",
value=True,
help="This activates diarization for the transcription. Diarization "
"is the process of splitting a transcription into segments "
"based on who is speaking, so you can tell which parts of the "
"text were spoken by different people.")
help="The transcript will be split into segments based on who is speaking"
" to indicate different speakers.")

with st.expander("Set number of speakers"):
min_speakers = st.number_input("Minimum Number of Speakers",
Expand Down

0 comments on commit 6e2b6ff

Please sign in to comment.