Skip to content

Commit 0086f6b

Browse files
authored
Merge branch 'master' into feat/local-download-dir
2 parents 094e476 + a9b32ec commit 0086f6b

File tree

17 files changed

+1882
-10
lines changed

17 files changed

+1882
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v2.128.0 (2023-01-10)
4+
5+
### Features
6+
7+
* right_size() for inference recommender
8+
9+
### Bug Fixes and Other Changes
10+
11+
* tf 2.9.3 release images
12+
* Retry ValueError for airflow tests
13+
314
## v2.127.0 (2023-01-03)
415

516
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.127.1.dev0
1+
2.128.1.dev0

doc/api/inference/model.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Model
55
:members:
66
:undoc-members:
77
:show-inheritance:
8+
:inherited-members:
89

910
.. autoclass:: sagemaker.model.FrameworkModel
1011
:members:

src/sagemaker/image_uri_config/tensorflow.json

Lines changed: 73 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@
305305
"2.5": "2.5.1",
306306
"2.6": "2.6.3",
307307
"2.7": "2.7.0",
308-
"2.8": "2.8.0",
309-
"2.9": "2.9.2",
308+
"2.8": "2.8.4",
309+
"2.9": "2.9.3",
310310
"2.10": "2.10.1",
311311
"2.11": "2.11.0"
312312
},
@@ -1637,6 +1637,42 @@
16371637
},
16381638
"repository": "tensorflow-inference"
16391639
},
1640+
"2.8.4": {
1641+
"registries": {
1642+
"af-south-1": "626614931356",
1643+
"ap-east-1": "871362719292",
1644+
"ap-northeast-1": "763104351884",
1645+
"ap-northeast-2": "763104351884",
1646+
"ap-northeast-3": "364406365360",
1647+
"ap-south-1": "763104351884",
1648+
"ap-south-2": "772153158452",
1649+
"ap-southeast-1": "763104351884",
1650+
"ap-southeast-2": "763104351884",
1651+
"ap-southeast-3": "907027046896",
1652+
"ca-central-1": "763104351884",
1653+
"cn-north-1": "727897471807",
1654+
"cn-northwest-1": "727897471807",
1655+
"eu-central-1": "763104351884",
1656+
"eu-central-2": "380420809688",
1657+
"eu-north-1": "763104351884",
1658+
"eu-south-1": "692866216735",
1659+
"eu-south-2": "503227376785",
1660+
"eu-west-1": "763104351884",
1661+
"eu-west-2": "763104351884",
1662+
"eu-west-3": "763104351884",
1663+
"me-south-1": "217643126080",
1664+
"me-central-1": "914824155844",
1665+
"sa-east-1": "763104351884",
1666+
"us-east-1": "763104351884",
1667+
"us-east-2": "763104351884",
1668+
"us-gov-east-1": "446045086412",
1669+
"us-gov-west-1": "442386744353",
1670+
"us-iso-east-1": "886529160074",
1671+
"us-west-1": "763104351884",
1672+
"us-west-2": "763104351884"
1673+
},
1674+
"repository": "tensorflow-inference"
1675+
},
16401676
"2.9.2": {
16411677
"registries": {
16421678
"af-south-1": "626614931356",
@@ -1672,6 +1708,41 @@
16721708
},
16731709
"repository": "tensorflow-inference"
16741710
},
1711+
"2.9.3": {
1712+
"registries": {
1713+
"af-south-1": "626614931356",
1714+
"ap-east-1": "871362719292",
1715+
"ap-northeast-1": "763104351884",
1716+
"ap-northeast-2": "763104351884",
1717+
"ap-northeast-3": "364406365360",
1718+
"ap-south-1": "763104351884",
1719+
"ap-south-2": "772153158452",
1720+
"ap-southeast-1": "763104351884",
1721+
"ap-southeast-2": "763104351884",
1722+
"ap-southeast-3": "907027046896",
1723+
"ca-central-1": "763104351884",
1724+
"cn-north-1": "727897471807",
1725+
"cn-northwest-1": "727897471807",
1726+
"eu-central-1": "763104351884",
1727+
"eu-central-2": "380420809688",
1728+
"eu-north-1": "763104351884",
1729+
"eu-south-1": "692866216735",
1730+
"eu-south-2": "503227376785",
1731+
"eu-west-1": "763104351884",
1732+
"eu-west-2": "763104351884",
1733+
"eu-west-3": "763104351884",
1734+
"me-south-1": "217643126080",
1735+
"sa-east-1": "763104351884",
1736+
"us-east-1": "763104351884",
1737+
"us-east-2": "763104351884",
1738+
"us-gov-east-1": "446045086412",
1739+
"us-gov-west-1": "442386744353",
1740+
"us-iso-east-1": "886529160074",
1741+
"us-west-1": "763104351884",
1742+
"us-west-2": "763104351884"
1743+
},
1744+
"repository": "tensorflow-inference"
1745+
},
16751746
"2.10.0": {
16761747
"registries": {
16771748
"af-south-1": "626614931356",
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You
4+
# may not use this file except in compliance with the License. A copy of
5+
# the License is located at
6+
#
7+
# http://aws.amazon.com/apache2.0/
8+
#
9+
# or in the "license" file accompanying this file. This file is
10+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11+
# ANY KIND, either express or implied. See the License for the specific
12+
# language governing permissions and limitations under the License.
13+
"""Classes for using Inference Recommender with Amazon SageMaker."""
14+
from __future__ import absolute_import

0 commit comments

Comments
 (0)