Describe Language Model
transcribeservice_describe_language_model | R Documentation |
Provides information about the specified custom language model¶
Description¶
Provides information about the specified custom language model.
This operation also shows if the base language model that you used to create your custom language model has been updated. If Amazon Transcribe has updated the base model, you can create a new custom language model using the updated base model.
If you tried to create a new custom language model and the request
wasn't successful, you can use describe_language_model
to help
identify the reason for this failure.
Usage¶
Arguments¶
ModelName
[required] The name of the custom language model you want information about. Model names are case sensitive.
Value¶
A list with the following syntax:
list(
LanguageModel = list(
ModelName = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LanguageCode = "en-US"|"hi-IN"|"es-US"|"en-GB"|"en-AU"|"de-DE"|"ja-JP",
BaseModelName = "NarrowBand"|"WideBand",
ModelStatus = "IN_PROGRESS"|"FAILED"|"COMPLETED",
UpgradeAvailability = TRUE|FALSE,
FailureReason = "string",
InputDataConfig = list(
S3Uri = "string",
TuningDataS3Uri = "string",
DataAccessRoleArn = "string"
)
)
)