Skip to content

Commit

Permalink
fix english classification notebook (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-matton authored Sep 13, 2023
1 parent bf494ce commit 24c03f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/Deploy classification english model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"metadata": {},
"outputs": [],
"source": [
"s3_data_dir = \"s3://sagemaker-us-west-2-455073351313/classification-finetuning-data/test_algorithm_1_data\" "
"s3_data_dir = \"s3/...\" # where to upload the data\""
]
},
{
Expand Down Expand Up @@ -169,7 +169,7 @@
"metadata": {},
"outputs": [],
"source": [
"s3_models_dir = \"s3://sagemaker-us-west-2-455073351313/classification-finetuning-data/test_algorithm_1_models\" "
"s3_models_dir = \"s3/...\" # where the models will be saved"
]
},
{
Expand Down Expand Up @@ -203,7 +203,7 @@
"metadata": {},
"outputs": [],
"source": [
"co.create_finetune(arn=arn, name=\"model1\", train_data=train_dataset1, eval_data=train_dataset1, s3_models_dir=s3_models_dir)"
"co.create_finetune(arn=arn, name=\"model1\", train_data=train_dataset1, s3_models_dir=s3_models_dir)"
]
},
{
Expand All @@ -212,7 +212,7 @@
"metadata": {},
"outputs": [],
"source": [
"# co.create_finetune(arn=arn, name=\"model2\", train_data=train_dataset2, s3_models_dir=s3_models_dir)"
"co.create_finetune(arn=arn, name=\"model2\", train_data=train_dataset2, s3_models_dir=s3_models_dir)"
]
},
{
Expand Down

0 comments on commit 24c03f5

Please sign in to comment.