Skip to content
Gladia Help Center home
InboxAsk a human

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

custom_spelling

Boolean

Enables or disables custom spelling.

true

custom_spelling_config

Object

Contains configuration for custom spelling.

{ "spelling_dictionary": { ... } }

spelling_dictionary

Object

Dictionary whereĀ keysĀ are the correct spelling, andĀ valuesĀ are lists of variations (case-insensitive).

{ "Gorish": ["ghorish", "gaurish"] }

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ā€.