Skip to content

Commit c711001

Browse files
authored
Merge branch 'master' into feat/jumpstart-model-package-arn-instance-type-variants
2 parents 4c04538 + 561301e commit c711001

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## v2.192.0 (2023-10-11)
4+
5+
### Features
6+
7+
* jumpstart estimator enable infra check flag
8+
* jumpstart default payloads
9+
* allow non-python files in job dependencies
10+
* allow configuring docker container in local mode
11+
12+
### Bug Fixes and Other Changes
13+
14+
* js tagging s3 prefix
15+
* Batch transform: Add support for split_type == "None" in local mode
16+
* use correct line endings and s3 uris on windows
17+
* Fixed bug in _create_training_details
18+
* DJL Neuronx 0.24.0
19+
20+
### Documentation Changes
21+
22+
* Include FeatureGroup's load_feature_definitions API documentation
23+
324
## v2.191.0 (2023-10-05)
425

526
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.191.1.dev0
1+
2.192.1.dev0

src/sagemaker/config/config_schema.py

+4
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
LOCAL_CODE = "local_code"
107107
SERVING_PORT = "serving_port"
108108
CONTAINER_CONFIG = "container_config"
109+
CONTAINER_ROOT = "container_root"
109110
REGION_NAME = "region_name"
110111

111112

@@ -1090,6 +1091,9 @@ def _simple_path(*args: str):
10901091
SERVING_PORT: {
10911092
TYPE: "integer",
10921093
},
1094+
CONTAINER_ROOT: {
1095+
TYPE: "string",
1096+
},
10931097
CONTAINER_CONFIG: {
10941098
TYPE: OBJECT,
10951099
},

src/sagemaker/jumpstart/payload_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ class PayloadSerializer:
3737

3838
def __init__(
3939
self,
40-
bucket: str = get_jumpstart_content_bucket(),
40+
bucket: Optional[str] = None,
4141
region: str = JUMPSTART_DEFAULT_REGION_NAME,
4242
s3_client: Optional[boto3.client] = None,
4343
) -> None:
4444
"""Initializes PayloadSerializer object."""
45-
self.bucket = bucket
45+
self.bucket = bucket or get_jumpstart_content_bucket()
4646
self.region = region
4747
self.s3_client = s3_client
4848

tests/integ/test_huggingface_torch_distributed.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_huggingface_torch_distributed_g5_glue(
3232
transformers_version=huggingface_training_latest_version,
3333
pytorch_version=huggingface_training_pytorch_latest_version,
3434
instance_count=1,
35-
instance_type="ml.g5.8xlarge",
35+
instance_type="ml.g5.4xlarge",
3636
hyperparameters={
3737
"model_name_or_path": "distilbert-base-cased",
3838
"task_name": "wnli",

0 commit comments

Comments
 (0)