How can I correct a word that is often mistranscribed ?
How can I correct a word that is often mistranscribed ?
You can customize how certain words, names, or phrases are spelled in the final transcript.
To use custom spelling, provide a dictionary through theĀ custom_spelling_configĀ parameter.
This dictionary should contain theĀ correct spellingĀ as the key and a list of one or moreĀ possible variationsĀ as the value.
Why use custom spelling?
Custom spelling is useful in scenarios whereĀ consistent spelling of specific words is crucial, such as:
Technical terms in industry-specific recordings
Brand names
Personal names with multiple possible pronunciations
<aside> š”
The keys in the dictionary areĀ case sensitive, while the values arenāt. Values can contain multiple words.
</aside>
Example Request Data
{ "custom_spelling": true, "custom_spelling_config": { "spelling_dictionary": { "Gorish": ["ghorish", "gaurish", "gaureish"], "Data Science": ["data-science", "data science"], ".": ["period", "full stop"], "SQL": ["sequel"] } } }
Custom Spelling Configuration Object
Key / Field | Type | Description | Example |
|---|---|---|---|
| Boolean | Enables or disables custom spelling. |
|
| Object | Contains configuration for custom spelling. |
|
| Object | Dictionary whereĀ keysĀ are the correct spelling, andĀ valuesĀ are lists of variations (case-insensitive). |
|
How it works
The model will ensure thatĀ āGorishāĀ is spelled correctly throughout the transcript,
even if it is pronounced asĀ āghorishā,Ā āgaurishā, orĀ āgaureishā.
The same rule applies forĀ āData Scienceā, the punctuationĀ
".", andĀ āSQLā.