Skip to content

Commit

Permalink
change varible used for completion status to the one used to control …
Browse files Browse the repository at this point in the history
…the loop

The 2nd step in the Check Customization Job Status section of 03_Model_customization/03_continued_pretraining_titan_text.ipynb never completes as the while variable is not changed in the loop  aws-samples#225
  • Loading branch information
FireballDWF committed Apr 3, 2024
1 parent 4910f7a commit 5e03251
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -449,7 +449,7 @@
"\n",
"while training_job_status == \"InProgress\":\n",
" time.sleep(60)\n",
" fine_tune_job = bedrock.get_model_customization_job(jobIdentifier=customization_job_name)[\"status\"]\n",
" training_job_status = bedrock.get_model_customization_job(jobIdentifier=customization_job_name)[\"status\"]\n",
" print (training_job_status)"
]
},
Expand Down

0 comments on commit 5e03251

Please sign in to comment.