Skip to content

Commit 189c762

Browse files
committed
feature: AutoGluon 0.6.1 image_uris
1 parent feba626 commit 189c762

File tree

2 files changed

+73
-3
lines changed

2 files changed

+73
-3
lines changed

src/sagemaker/image_uri_config/autogluon.json

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"version_aliases": {
55
"0.3": "0.3.2",
66
"0.4": "0.4.3",
7-
"0.5": "0.5.2"
7+
"0.5": "0.5.2",
8+
"0.6": "0.6.1"
89
},
910
"versions": {
1011
"0.3.1": {
@@ -198,14 +199,46 @@
198199
},
199200
"repository": "autogluon-training",
200201
"py_versions": ["py38"]
202+
},
203+
"0.6.1": {
204+
"registries": {
205+
"af-south-1": "626614931356",
206+
"ap-east-1": "871362719292",
207+
"ap-northeast-1": "763104351884",
208+
"ap-northeast-2": "763104351884",
209+
"ap-northeast-3": "364406365360",
210+
"ap-south-1": "763104351884",
211+
"ap-southeast-1": "763104351884",
212+
"ap-southeast-2": "763104351884",
213+
"ap-southeast-3": "907027046896",
214+
"ca-central-1": "763104351884",
215+
"eu-central-1": "763104351884",
216+
"eu-north-1": "763104351884",
217+
"eu-west-1": "763104351884",
218+
"eu-west-2": "763104351884",
219+
"eu-west-3": "763104351884",
220+
"eu-south-1": "692866216735",
221+
"me-south-1": "217643126080",
222+
"sa-east-1": "763104351884",
223+
"us-east-1": "763104351884",
224+
"us-east-2": "763104351884",
225+
"us-gov-east-1": "446045086412",
226+
"us-gov-west-1": "442386744353",
227+
"us-iso-east-1": "886529160074",
228+
"us-west-1": "763104351884",
229+
"us-west-2": "763104351884"
230+
},
231+
"repository": "autogluon-training",
232+
"py_versions": ["py38"]
201233
}
202234
}
203235
},
204236
"inference": {
205237
"version_aliases": {
206238
"0.3": "0.3.2",
207239
"0.4": "0.4.3",
208-
"0.5": "0.5.2"
240+
"0.5": "0.5.2",
241+
"0.6": "0.6.1"
209242
},
210243
"versions": {
211244
"0.3.1": {
@@ -435,6 +468,40 @@
435468
"repository": "autogluon-inference",
436469
"processors": ["cpu", "gpu"],
437470
"py_versions": ["py38"]
471+
},
472+
"0.6.1": {
473+
"registries": {
474+
"af-south-1": "626614931356",
475+
"ap-east-1": "871362719292",
476+
"ap-northeast-1": "763104351884",
477+
"ap-northeast-2": "763104351884",
478+
"ap-northeast-3": "364406365360",
479+
"ap-south-1": "763104351884",
480+
"ap-southeast-1": "763104351884",
481+
"ap-southeast-2": "763104351884",
482+
"ap-southeast-3": "907027046896",
483+
"ca-central-1": "763104351884",
484+
"cn-north-1": "727897471807",
485+
"cn-northwest-1": "727897471807",
486+
"eu-central-1": "763104351884",
487+
"eu-north-1": "763104351884",
488+
"eu-west-1": "763104351884",
489+
"eu-west-2": "763104351884",
490+
"eu-west-3": "763104351884",
491+
"eu-south-1": "692866216735",
492+
"me-south-1": "217643126080",
493+
"sa-east-1": "763104351884",
494+
"us-east-1": "763104351884",
495+
"us-east-2": "763104351884",
496+
"us-gov-east-1": "446045086412",
497+
"us-gov-west-1": "442386744353",
498+
"us-iso-east-1": "886529160074",
499+
"us-west-1": "763104351884",
500+
"us-west-2": "763104351884"
501+
},
502+
"repository": "autogluon-inference",
503+
"processors": ["cpu", "gpu"],
504+
"py_versions": ["py38"]
438505
}
439506
}
440507
}

tests/unit/sagemaker/image_uris/test_autogluon.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
# language governing permissions and limitations under the License.
1313
from __future__ import absolute_import
1414

15+
import copy
16+
1517
import pytest
1618

1719
from sagemaker import image_uris
@@ -37,12 +39,13 @@
3739
"sa-east-1": "763104351884",
3840
"us-east-1": "763104351884",
3941
"us-east-2": "763104351884",
42+
"us-gov-east-1": "446045086412",
4043
"us-gov-west-1": "442386744353",
4144
"us-iso-east-1": "886529160074",
4245
"us-west-1": "763104351884",
4346
"us-west-2": "763104351884",
4447
}
45-
VERSIONS = ["0.3.1", "0.3.2", "0.4.0", "0.4.2", "0.4.3", "0.3", "0.4", "0.5.2", "0.5"]
48+
VERSIONS = ["0.3.1", "0.3.2", "0.4.0", "0.4.2", "0.4.3", "0.3", "0.4", "0.5.2", "0.5", "0.6.1", "0.6"]
4649
SCOPES = ["training", "inference"]
4750
PROCESSORS = ["cpu", "gpu"]
4851

0 commit comments

Comments
 (0)