File tree 5 files changed +29
-4
lines changed
5 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
24
## v2.191.0 (2023-10-05)
4
25
5
26
### Features
Original file line number Diff line number Diff line change 1
- 2.191 .1.dev0
1
+ 2.192 .1.dev0
Original file line number Diff line number Diff line change 106
106
LOCAL_CODE = "local_code"
107
107
SERVING_PORT = "serving_port"
108
108
CONTAINER_CONFIG = "container_config"
109
+ CONTAINER_ROOT = "container_root"
109
110
REGION_NAME = "region_name"
110
111
111
112
@@ -1090,6 +1091,9 @@ def _simple_path(*args: str):
1090
1091
SERVING_PORT : {
1091
1092
TYPE : "integer" ,
1092
1093
},
1094
+ CONTAINER_ROOT : {
1095
+ TYPE : "string" ,
1096
+ },
1093
1097
CONTAINER_CONFIG : {
1094
1098
TYPE : OBJECT ,
1095
1099
},
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ class PayloadSerializer:
37
37
38
38
def __init__ (
39
39
self ,
40
- bucket : str = get_jumpstart_content_bucket () ,
40
+ bucket : Optional [ str ] = None ,
41
41
region : str = JUMPSTART_DEFAULT_REGION_NAME ,
42
42
s3_client : Optional [boto3 .client ] = None ,
43
43
) -> None :
44
44
"""Initializes PayloadSerializer object."""
45
- self .bucket = bucket
45
+ self .bucket = bucket or get_jumpstart_content_bucket ()
46
46
self .region = region
47
47
self .s3_client = s3_client
48
48
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def test_huggingface_torch_distributed_g5_glue(
32
32
transformers_version = huggingface_training_latest_version ,
33
33
pytorch_version = huggingface_training_pytorch_latest_version ,
34
34
instance_count = 1 ,
35
- instance_type = "ml.g5.8xlarge " ,
35
+ instance_type = "ml.g5.4xlarge " ,
36
36
hyperparameters = {
37
37
"model_name_or_path" : "distilbert-base-cased" ,
38
38
"task_name" : "wnli" ,
You can’t perform that action at this time.
0 commit comments