1**To get information about a specific custom language model**
2
3The following ``describe-language-model`` example gets information about a specific custom language model. For example, under BaseModelName you can see whether your model is trained using a NarrowBand or WideBand model. Custom language models with a NarrowBand base model can transcribe audio with a sample rate less than 16 kHz. Language models using a WideBand base model can transcribe audio with a sample rate greater than 16 kHz. The S3Uri parameter indicates the Amazon S3 prefix you've used to access the training data to create the custom language model. ::
4
5    aws transcribe describe-language-model \
6        --model-name cli-clm-example
7
8Output::
9
10    {
11        "LanguageModel": {
12            "ModelName": "cli-clm-example",
13            "CreateTime": "2020-09-25T17:57:38.504000+00:00",
14            "LastModifiedTime": "2020-09-25T17:57:48.585000+00:00",
15            "LanguageCode": "language-code",
16            "BaseModelName": "base-model-name",
17            "ModelStatus": "IN_PROGRESS",
18            "UpgradeAvailability": false,
19            "InputDataConfig": {
20                "S3Uri": "s3://DOC-EXAMPLE-BUCKET/Amazon-S3-Prefix/",
21                "TuningDataS3Uri": "s3://DOC-EXAMPLE-BUCKET/Amazon-S3-Prefix/",
22                "DataAccessRoleArn": "arn:aws:iam::AWS-account-number:role/IAM-role-with-permissions-to-create-a-custom-language-model"
23            }
24        }
25    }
26
27For more information, see `Improving Domain-Specific Transcription Accuracy with Custom Language Models <https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html>`__ in the *Amazon Transcribe Developer Guide*.