Skip to content

Commit

Permalink
Merge pull request #1 from sharkfisher/sharkfisher-transferlearning-i…
Browse files Browse the repository at this point in the history
…nitialepoch

Update transfer_learning.ipynb  - fix initial_epoch for fine tuning
  • Loading branch information
sharkfisher authored Dec 18, 2023
2 parents fa06aee + 8156353 commit b0b02dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/en/tutorials/images/transfer_learning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@
"\n",
"history_fine = model.fit(train_dataset,\n",
" epochs=total_epochs,\n",
" initial_epoch=history.epoch[-1],\n",
" initial_epoch=history.epoch[-1]+1,\n",
" validation_data=validation_dataset)"
]
},
Expand Down

0 comments on commit b0b02dd

Please sign in to comment.