Values.CustomModelSummarySourceSummary information for a custom model.
type nonrec t = {modelArn : CustomModelArn.t option;The Amazon Resource Name (ARN) of the custom model.
*)modelName : CustomModelName.t option;The name of the custom model.
*)creationTime : Timestamp.t option;Creation time of the model.
*)baseModelArn : ModelArn.t option;The base model Amazon Resource Name (ARN).
*)baseModelName : ModelName.t option;The base model name.
*)customizationType : CustomizationType.t option;Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more information, see Custom models.
*)ownerAccountId : AccountId.t option;The unique identifier of the account that owns the model.
*)modelStatus : ModelStatus.t option;The current status of the custom model. Possible values include: Creating - The model is being created and validated. Active - The model has been successfully created and is ready for use. Failed - The model creation process failed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of CustomModelArn.t
| `Timestamp of Timestamp.t ])
list ]