File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.48.1 (2021-07-08)
4
+
5
+ ### Bug Fixes and Other Changes
6
+
7
+ * skip HF inference test
8
+ * remove upsert from test_workflow
9
+
10
+ ### Documentation Changes
11
+
12
+ * Add Hugging Face docs
13
+ * add tuning step to doc
14
+
3
15
## v2.48.0 (2021-07-07)
4
16
5
17
### Features
Original file line number Diff line number Diff line change 1
- 2.48.1 .dev0
1
+ 2.48.2 .dev0
Original file line number Diff line number Diff line change @@ -68,8 +68,9 @@ def test_huggingface_training(
68
68
hf .fit (train_input )
69
69
70
70
71
- @pytest .mark .skip (
72
- reason = "need to re enable it later" ,
71
+ @pytest .mark .release
72
+ @pytest .mark .skipif (
73
+ integ .test_region () in integ .TRAINING_NO_P2_REGIONS , reason = "no ml.p2 instances in this region"
73
74
)
74
75
def test_huggingface_training_tf (
75
76
sagemaker_session ,
@@ -107,9 +108,8 @@ def test_huggingface_training_tf(
107
108
hf .fit (train_input )
108
109
109
110
110
- @pytest .mark .release
111
- @pytest .mark .skipif (
112
- integ .test_region () in integ .TRAINING_NO_P2_REGIONS , reason = "no ml.p2 instances in this region"
111
+ @pytest .mark .skip (
112
+ reason = "need to re enable it later" ,
113
113
)
114
114
def test_huggingface_inference (
115
115
sagemaker_session ,
You can’t perform that action at this time.
0 commit comments