Skip to content

Commit d7c98bb

Browse files
authored
Merge branch 'master' into feedback-addressing
2 parents 1844358 + 45f56f0 commit d7c98bb

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

sagemaker-core/src/sagemaker/core/common_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@
5656
"cn-north-1": "amazonaws.com.cn",
5757
"cn-northwest-1": "amazonaws.com.cn",
5858
"us-iso-east-1": "c2s.ic.gov",
59+
"us-iso-west-1": "c2s.ic.gov",
5960
"us-isob-east-1": "sc2s.sgov.gov",
61+
"us-isob-west-1": "sc2s.sgov.gov",
6062
"us-isof-south-1": "csp.hci.ic.gov",
6163
"us-isof-east-1": "csp.hci.ic.gov",
6264
"eu-isoe-west-1": "cloud.adc-e.uk",

sagemaker-core/src/sagemaker/core/image_uri_config/djl-lmi.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,13 @@
8585
"ap-southeast-7": "590183813437",
8686
"ap-southeast-4": "457447274322",
8787
"ap-southeast-5": "550225433462",
88-
"mx-central-1": "637423239942"
88+
"mx-central-1": "637423239942",
89+
"us-iso-east-1": "763104351884",
90+
"us-iso-west-1": "763104351884",
91+
"us-isob-east-1": "763104351884",
92+
"us-isob-west-1": "763104351884",
93+
"us-isof-east-1": "763104351884",
94+
"us-isof-south-1": "763104351884"
8995
},
9096
"repository": "djl-inference",
9197
"tag_prefix": "0.35.0-lmi17.0.0-cu128"
@@ -127,7 +133,13 @@
127133
"ap-southeast-7": "590183813437",
128134
"ap-southeast-4": "457447274322",
129135
"ap-southeast-5": "550225433462",
130-
"mx-central-1": "637423239942"
136+
"mx-central-1": "637423239942",
137+
"us-iso-east-1": "763104351884",
138+
"us-iso-west-1": "763104351884",
139+
"us-isob-east-1": "763104351884",
140+
"us-isob-west-1": "763104351884",
141+
"us-isof-east-1": "763104351884",
142+
"us-isof-south-1": "763104351884"
131143
},
132144
"repository": "djl-inference",
133145
"tag_prefix": "0.34.0-lmi16.0.0-cu128"
@@ -169,7 +181,13 @@
169181
"ap-southeast-7": "590183813437",
170182
"ap-southeast-4": "457447274322",
171183
"ap-southeast-5": "550225433462",
172-
"mx-central-1": "637423239942"
184+
"mx-central-1": "637423239942",
185+
"us-iso-east-1": "763104351884",
186+
"us-iso-west-1": "763104351884",
187+
"us-isob-east-1": "763104351884",
188+
"us-isob-west-1": "763104351884",
189+
"us-isof-east-1": "763104351884",
190+
"us-isof-south-1": "763104351884"
173191
},
174192
"repository": "djl-inference",
175193
"tag_prefix": "0.33.0-lmi15.0.0-cu128"

v3-examples/training-examples/local-training-example.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
"source": [
3636
"# NOTE: Local mode requires Docker to be installed and running.\n",
3737
"import os\n",
38-
"os.environ['PATH'] = '/usr/local/bin:/Applications/Docker.app/Contents/Resources/bin:' + os.environ['PATH']"
38+
"import sys\n",
39+
"if sys.platform == 'darwin':\n",
40+
" os.environ['PATH'] = '/usr/local/bin:/Applications/Docker.app/Contents/Resources/bin:/Applications/Docker.app/Contents/Resources/cli-plugins:' + os.environ['PATH']"
3941
]
4042
},
4143
{

0 commit comments

Comments
 (0)