Skip to content

Commit fdded8b

Browse files
author
AWS
committed
Amazon SageMaker Service Update: AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job.
1 parent 552b07e commit fdded8b

File tree

2 files changed

+25
-11
lines changed

2 files changed

+25
-11
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon SageMaker Service",
4+
"contributor": "",
5+
"description": "AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job."
6+
}

services/sagemaker/src/main/resources/codegen-resources/service-2.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6776,7 +6776,7 @@
67766776
},
67776777
"UserProfileName":{
67786778
"shape":"UserProfileName",
6779-
"documentation":"<p>The user profile name.</p>"
6779+
"documentation":"<p>The user profile name. If this value is not set, then <code>SpaceName</code> must be set.</p>"
67806780
},
67816781
"AppType":{
67826782
"shape":"AppType",
@@ -6796,7 +6796,7 @@
67966796
},
67976797
"SpaceName":{
67986798
"shape":"SpaceName",
6799-
"documentation":"<p>The name of the space.</p>"
6799+
"documentation":"<p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be set.</p>"
68006800
}
68016801
}
68026802
},
@@ -9562,7 +9562,7 @@
95629562
},
95639563
"UserProfileName":{
95649564
"shape":"UserProfileName",
9565-
"documentation":"<p>The user profile name.</p>"
9565+
"documentation":"<p>The user profile name. If this value is not set, then <code>SpaceName</code> must be set.</p>"
95669566
},
95679567
"AppType":{
95689568
"shape":"AppType",
@@ -9574,7 +9574,7 @@
95749574
},
95759575
"SpaceName":{
95769576
"shape":"SpaceName",
9577-
"documentation":"<p>The name of the space.</p>"
9577+
"documentation":"<p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be set.</p>"
95789578
}
95799579
}
95809580
},
@@ -10479,7 +10479,7 @@
1047910479
},
1048010480
"UserProfileName":{
1048110481
"shape":"UserProfileName",
10482-
"documentation":"<p>The user profile name.</p>"
10482+
"documentation":"<p>The user profile name. If this value is not set, then <code>SpaceName</code> must be set.</p>"
1048310483
},
1048410484
"AppType":{
1048510485
"shape":"AppType",
@@ -10544,7 +10544,7 @@
1054410544
},
1054510545
"SpaceName":{
1054610546
"shape":"SpaceName",
10547-
"documentation":"<p>The name of the space.</p>"
10547+
"documentation":"<p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be set.</p>"
1054810548
}
1054910549
}
1055010550
},
@@ -17207,15 +17207,15 @@
1720717207
},
1720817208
"HyperParameterTuningJobObjective":{
1720917209
"shape":"HyperParameterTuningJobObjective",
17210-
"documentation":"<p>The <a>HyperParameterTuningJobObjective</a> object that specifies the objective metric for this tuning job.</p>"
17210+
"documentation":"<p>The <a>HyperParameterTuningJobObjective</a> specifies the objective metric used to evaluate the performance of training jobs launched by this tuning job.</p>"
1721117211
},
1721217212
"ResourceLimits":{
1721317213
"shape":"ResourceLimits",
17214-
"documentation":"<p>The <a>ResourceLimits</a> object that specifies the maximum number of training jobs and parallel training jobs for this tuning job.</p>"
17214+
"documentation":"<p>The <a>ResourceLimits</a> object that specifies the maximum number of training and parallel training jobs that can be used for this hyperparameter tuning job.</p>"
1721517215
},
1721617216
"ParameterRanges":{
1721717217
"shape":"ParameterRanges",
17218-
"documentation":"<p>The <a>ParameterRanges</a> object that specifies the ranges of hyperparameters that this tuning job searches.</p>"
17218+
"documentation":"<p>The <a>ParameterRanges</a> object that specifies the ranges of hyperparameters that this tuning job searches over to find the optimal configuration for the highest model performance against .your chosen objective metric. </p>"
1721917219
},
1722017220
"TrainingJobEarlyStoppingType":{
1722117221
"shape":"TrainingJobEarlyStoppingType",
@@ -17224,6 +17224,10 @@
1722417224
"TuningJobCompletionCriteria":{
1722517225
"shape":"TuningJobCompletionCriteria",
1722617226
"documentation":"<p>The tuning job's completion criteria.</p>"
17227+
},
17228+
"RandomSeed":{
17229+
"shape":"RandomSeed",
17230+
"documentation":"<p>A value used to initialize a pseudo-random number generator. Setting a random seed and using the same seed later for the same tuning job will allow hyperparameter optimization to find more a consistent hyperparameter configuration between the two runs.</p>"
1722717231
}
1722817232
},
1722917233
"documentation":"<p>Configures a hyperparameter tuning job.</p>"
@@ -19121,11 +19125,11 @@
1912119125
},
1912219126
"UserProfileNameEquals":{
1912319127
"shape":"UserProfileName",
19124-
"documentation":"<p>A parameter to search by user profile name.</p>"
19128+
"documentation":"<p>A parameter to search by user profile name. If <code>SpaceNameEquals</code> is set, then this value cannot be set.</p>"
1912519129
},
1912619130
"SpaceNameEquals":{
1912719131
"shape":"SpaceName",
19128-
"documentation":"<p>A parameter to search by space name.</p>"
19132+
"documentation":"<p>A parameter to search by space name. If <code>UserProfileNameEquals</code> is set, then this value cannot be set.</p>"
1912919133
}
1913019134
}
1913119135
},
@@ -27766,6 +27770,10 @@
2776627770
"R_STUDIO_USER"
2776727771
]
2776827772
},
27773+
"RandomSeed":{
27774+
"type":"integer",
27775+
"min":0
27776+
},
2776927777
"RealTimeInferenceConfig":{
2777027778
"type":"structure",
2777127779
"required":[

0 commit comments

Comments
 (0)