We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf6a71 commit 43976bbCopy full SHA for 43976bb
storage/framework/core/ai/tests/ai.test.ts
@@ -180,10 +180,18 @@ describe('Bedrock Client', () => {
180
trainingDataConfig: {
181
s3Uri: 's3://example-bucket/training-data',
182
},
183
+ validationDataConfig: {
184
+ s3Uri: 's3://example-bucket/validation-data',
185
+ },
186
outputDataConfig: {
187
s3Uri: 's3://example-bucket/output-data',
188
189
hyperParameters: {},
190
+ trainingMetrics: {
191
+ trainingLoss: 0.1,
192
+ validationLoss: 0.2,
193
+ epochsCompleted: 10,
194
195
}
196
197
bedrockMock.on(GetModelCustomizationJobCommand).resolves(mockResponse)
0 commit comments