File tree 3 files changed +17
-3
lines changed 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.41.0 (2021-05-17)
4
+
5
+ ### Features
6
+
7
+ * add pipeline experiment config
8
+ * add data wrangler processor
9
+ * support RetryStrategy for training jobs
10
+
11
+ ### Bug Fixes and Other Changes
12
+
13
+ * fix repack pipeline step by putting inference.py in "code" sub dir
14
+ * add data wrangler image uri
15
+ * fix black-check errors
16
+
3
17
## v2.40.0 (2021-05-11)
4
18
5
19
### Features
Original file line number Diff line number Diff line change 1
- 2.40 .1.dev0
1
+ 2.41 .1.dev0
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ Here are examples of how to use Amazon FSx for Lustre as input for training:
374
374
375
375
file_system_input = FileSystemInput(file_system_id = ' fs-2' ,
376
376
file_system_type = ' FSxLustre' ,
377
- directory_path = ' /fsx /tensorflow' ,
377
+ directory_path = ' /<mount-id> /tensorflow' ,
378
378
file_system_access_mode = ' ro' )
379
379
380
380
# Start an Amazon SageMaker training job with FSx using the FileSystemInput class
@@ -394,7 +394,7 @@ Here are examples of how to use Amazon FSx for Lustre as input for training:
394
394
395
395
records = FileSystemRecordSet(file_system_id = ' fs-=2,
396
396
file_system_type = ' FSxLustre' ,
397
- directory_path = ' /fsx /kmeans' ,
397
+ directory_path = ' /<mount-id> /kmeans' ,
398
398
num_records = 784 ,
399
399
feature_dim = 784 )
400
400
You can’t perform that action at this time.
0 commit comments