File tree Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.192.1 (2023-10-13)
4
+
5
+ ### Bug Fixes and Other Changes
6
+
7
+ * update local mode schema
8
+ * import error in unsupported js regions
9
+ * Update Ec2 instance type to g5.4xlarge in test_huggingface_torch_distributed.py
10
+
3
11
## v2.192.0 (2023-10-11)
4
12
5
13
### Features
Original file line number Diff line number Diff line change 1
- 2.192.1 .dev0
1
+ 2.192.2 .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