Get Custom Model
bedrock_get_custom_model | R Documentation |
Get the properties associated with a Amazon Bedrock custom model that you have created¶
Description¶
Get the properties associated with a Amazon Bedrock custom model that you have created.For more information, see Custom models in the Amazon Bedrock User Guide.
Usage¶
Arguments¶
modelIdentifier
[required] Name or Amazon Resource Name (ARN) of the custom model.
Value¶
A list with the following syntax:
list(
modelArn = "string",
modelName = "string",
jobName = "string",
jobArn = "string",
baseModelArn = "string",
customizationType = "FINE_TUNING"|"CONTINUED_PRE_TRAINING",
modelKmsKeyArn = "string",
hyperParameters = list(
"string"
),
trainingDataConfig = list(
s3Uri = "string"
),
validationDataConfig = list(
validators = list(
list(
s3Uri = "string"
)
)
),
outputDataConfig = list(
s3Uri = "string"
),
trainingMetrics = list(
trainingLoss = 123.0
),
validationMetrics = list(
list(
validationLoss = 123.0
)
),
creationTime = as.POSIXct(
"2015-01-01"
)
)