Skip to content

Commit 5340e9c

Browse files
author
Marcelo Cunha
committed
fix: paths of configs
1 parent 2a3c000 commit 5340e9c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

4-Deployment/Batch/config/solution_lab2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_estimator_from_lab2(docker_image_name, framework_version):
3434
print("Please wait 5 minutes for the training job to run.")
3535

3636
# Set the paths for the datasets saved locally
37-
path_to_lab2 = "/root/amazon-sagemaker-workshop/2-Modeling/"
37+
path_to_lab2 = "/root/sagemaker-end-to-end-workshop/2-Modeling/"
3838

3939
local_train_path = path_to_lab2 + 'config/train.csv'
4040
train_df = pd.read_csv(local_train_path, header=None)

4-Deployment/RealTime/config/solution_lab2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_estimator_from_lab2(docker_image_name, framework_version):
3434
print("Please wait 5 minutes for the training job to run.")
3535

3636
# Set the paths for the datasets saved locally
37-
path_to_lab2 = "/root/amazon-sagemaker-workshop/2-Modeling/"
37+
path_to_lab2 = "/root/sagemaker-end-to-end-workshop/2-Modeling/"
3838

3939
local_train_path = path_to_lab2 + 'config/train.csv'
4040
train_df = pd.read_csv(local_train_path, header=None)

5-Monitoring/config/solution_lab4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def get_endpoint_from_lab4():
2323
print("Please wait ~10 minutes for the endpoint to be deployed.")
2424

2525
# Set the paths for the datasets saved locally
26-
path_to_lab2 = "/root/amazon-sagemaker-workshop/2-Modeling/"
27-
path_to_lab5 = "/root/amazon-sagemaker-workshop/5-Monitoring/"
26+
path_to_lab2 = "/root/sagemaker-end-to-end-workshop/2-Modeling/"
27+
path_to_lab5 = "/root/sagemaker-end-to-end-workshop/5-Monitoring/"
2828

2929
local_train_path = path_to_lab2 + 'config/train.csv'
3030
train_df = pd.read_csv(local_train_path, header=None)

0 commit comments

Comments
 (0)