Skip to content

update to checkpoint callback options (save_frequency) #2042

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion site/en/tutorials/keras/save_and_load.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -385,12 +385,17 @@
"\n",
"batch_size = 32\n",
"\n",
"# Calculate the number of batches per epoch\n",
"import math\n",
"n_batches = len(train_images) / batch_size\n",
"n_batches = math.ceil(n_batches) # round up the number of batches to the nearest whole integer\n",
"\n",
"# Create a callback that saves the model's weights every 5 epochs\n",
"cp_callback = tf.keras.callbacks.ModelCheckpoint(\n",
" filepath=checkpoint_path, \n",
" verbose=1, \n",
" save_weights_only=True,\n",
" save_freq=5*batch_size)\n",
" save_freq=5*n_batches)\n",
"\n",
"# Create a new model instance\n",
"model = create_model()\n",
Expand Down