Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LanguageModel

import type { LanguageModel } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";

The structure used to describe a custom language model.

interface LanguageModel {
BaseModelName?: BaseModelName | null;
CreateTime?: Date | number | null;
FailureReason?: string | null;
InputDataConfig?: InputDataConfig | null;
LanguageCode?: CLMLanguageCode | null;
LastModifiedTime?: Date | number | null;
ModelName?: string | null;
ModelStatus?: ModelStatus | null;
UpgradeAvailability?: boolean | null;
}

§Properties

§
BaseModelName?: BaseModelName | null
[src]

The Amazon Transcribe standard language model, or base model used to create the custom language model.

§
CreateTime?: Date | number | null
[src]

The time the custom language model was created.

§
FailureReason?: string | null
[src]

The reason why the custom language model couldn't be created.

§
InputDataConfig?: InputDataConfig | null
[src]

The data access role and Amazon S3 prefixes for the input files used to train the custom language model.

§
LanguageCode?: CLMLanguageCode | null
[src]

The language code you used to create your custom language model.

§
LastModifiedTime?: Date | number | null
[src]

The most recent time the custom language model was modified.

§
ModelName?: string | null
[src]

The name of the custom language model.

§
ModelStatus?: ModelStatus | null
[src]

The creation status of a custom language model. When the status is COMPLETED the model is ready for use.

§
UpgradeAvailability?: boolean | null
[src]

Whether the base model used for the custom language model is up to date. If this field is true then you are running the most up-to-date version of the base model in your custom language model.