Skip to main content

Accuracy and Language

Transcription:BatchReal-TimeDeployments:All

For more information on the full range of language packs offered by Speechmatics, please refer to the guide on Supported Language Packs.

Accuracy

Speechmatics offers two operating points for transcription:

  • Enhanced - Optimized for the highest accuracy possible.
  • Standard - Optimized for fast turnaround time. Note that when transcribing in real-time, you can adjust the turnaround time using the max_delay config option described here.

The default is Standard.

Note that your choice of operating point will impact pricing, as well as the processing cost efficiency for On-Prem customers.

{
  "type": "transcription",
  "transcription_config": {
    "language": "en",
    "operating_point": "enhanced"
  }
}

Output Locale

For the English language pack only, it is possible to specify the spelling rules to be used when generating the transcription, based on the output_locale configuration setting.

The three locales in English that are available are:

  • British English (en-GB)
  • US English (en-US)
  • Australian English (en-AU)

When transcribing in English, it is recommended to specify the locale. If no locale is specified then the spelling may be inconsistent within a transcript.

The following locales are supported for Chinese Mandarin:

  • Simplified Mandarin (cmn-Hans)
  • Traditional Mandarin (cmn-Hant)

The default is Simplified Mandarin.

An example configuration request is below:

{
  "type": "transcription",
  "transcription_config": {
    "language": "en",
    "output_locale": "en-GB"
  }
}

Domain Language Optimization

Some Speechmatics language packs are optimized for specific domains where high accuracy for specific vocabulary and terminology is required. Using the domain parameter provides additional transcription accuracy. The example below shows usage of the Bilingual Spanish & English model:

{
  "type": "transcription",
  "transcription_config": {
    "language": "es",
    "domain": "bilingual-en"
  }
}

It is expected that whilst there will be improvements for the specific domain there can be degradation in accuracy for other areas outside the domain.