From fbd2085044c209b873f310867f4d205e93fe1ba0 Mon Sep 17 00:00:00 2001 From: odrec Date: Wed, 20 Nov 2024 17:43:29 +0100 Subject: [PATCH] Changes in tooltips text to make them more on point. --- app.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app.py b/app.py index 4eac45e..d1950f1 100644 --- a/app.py +++ b/app.py @@ -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",