diff --git a/coqui_stt_model_manager/templates/transcribe.html b/coqui_stt_model_manager/templates/transcribe.html
index 6e3e683..d098753 100644
--- a/coqui_stt_model_manager/templates/transcribe.html
+++ b/coqui_stt_model_manager/templates/transcribe.html
@@ -12,10 +12,11 @@
{% block content %}
Transcribing with {{ model_card.name }}, created by {{ model_card.creator }}.
-After clicking Start Recording you can speak several sentences, the system will automatically detect silences as breaks and continue transcribing.
+Click Start Recording and just start talking. The system automatically detects silences as breaks and continues transcribing.
{% if "digits" in scorer_basename and "yesno" in scorer_basename %}
-Due to not having enough available data, this model is using an external scorer that only includes digits (ie. "one", "two", "three"... in {{ model_card.language }}) and the words for "yes" and "no".
This means the model will not predict any other words. Try saying some digits or yes/no to try it out.
+This {{ model_card.language }} model is specialized to recognize digits (i.e. from "zero" to "nine" in {{ model_card.language }}) and the words for "yes" and "no" (if they exist in {{ model_card.language }}). This model will only predict these words.
+Specializing a model's vocabulary is commonly used in conversational STT. If you'd like to specialize this {{ model_card.language }} model to another set of words, it's as easy as
swapping out the language model.
{% endif %}