ListCustomSpeechLanguageModels

Lists the custom language models that are available.

Type: synchronous

Example

/action=ListCustomSpeechLanguageModels

Response

The following XML is an example response that includes a single language model:

<autnresponse>
  <action>LISTCUSTOMSPEECHLANGUAGEMODELS</action>
  <response>SUCCESS</response>
  <responsedata>
    <languagemodels>
      <languagemodel>
        <identifier>MedicalTerms</identifier>
        <creationTime>2018-05-02T10:30:15Z</creationTime>
        <language>ENUK</language>
        <totalWords>5501</totalWords>
        <uniqueWords>1623</uniqueWords>
        <recommendedWeight>0.1</recommendedWeight>
      </languagemodel>
    </languagemodels>
  </responsedata>
</autnresponse>

The response includes the following information :

  • identifier - the identifier of the custom language model.
  • creationTime - the date and time when the custom language model was created.
  • language - the language code of the language that the custom model is based on. The custom language model can only be used with this language, so when you configure your speech-to-text task, set the LanguagePack parameter to the same value.
  • totalWords - the number of words supplied in the training text.
  • uniqueWords - the number of unique words supplied in the training text (the size of the vocabulary).
  • recommendedWeight - suggests the interpolation weight to use when you set the CustomLanguageModel parameter in your speech-to-text task.