File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 13
13
from __future__ import absolute_import
14
14
15
15
import os
16
+ import pdb
16
17
17
18
import pytest
18
19
@@ -35,6 +36,7 @@ def test_huggingface_training(
35
36
huggingface_training_latest_version ,
36
37
huggingface_training_pytorch_latest_version ,
37
38
):
39
+ print (sagemaker_session ._region_name )
38
40
with timeout (minutes = TRAINING_DEFAULT_TIMEOUT_MINUTES ):
39
41
data_path = os .path .join (DATA_DIR , "huggingface" )
40
42
@@ -78,6 +80,7 @@ def test_huggingface_training_tf(
78
80
huggingface_training_latest_version ,
79
81
huggingface_training_tensorflow_latest_version ,
80
82
):
83
+ print (sagemaker_session ._region_name )
81
84
with timeout (minutes = TRAINING_DEFAULT_TIMEOUT_MINUTES ):
82
85
data_path = os .path .join (DATA_DIR , "huggingface" )
83
86
@@ -123,7 +126,7 @@ def test_huggingface_inference(
123
126
"HF_TASK" : "text-classification" ,
124
127
}
125
128
endpoint_name = unique_name_from_base ("test-hf-inference" )
126
-
129
+ print ( sagemaker_session . _region_name )
127
130
model = HuggingFaceModel (
128
131
sagemaker_session = sagemaker_session ,
129
132
role = "SageMakerRole" ,
You can’t perform that action at this time.
0 commit comments