-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Update note in transfer_learning.ipynb related to Model.fit #2236
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
Update note in transfer_learning.ipynb related to Model.fit #2236
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
PreviewPreview and run these notebook edits with Google Colab: Rendered notebook diffs available on ReviewNB.com.Format and styleUse the TensorFlow docs notebook tools to format for consistent source diffs and lint for style:$ python3 -m pip install -U --user git+https://github.com/tensorflow/docsIf commits are added to the pull request, synchronize your local branch: git pull origin bugfix/60907-update-tutorial-transfer-learning
|
@MarkDaoust looks like the Notebook format check bombed out. I followed the instructions included in the failed format check above:
After running
I'm not sure why and hoping you can provide some insight if that's correct or not and I should commit the deletion by the Running the
Resulting diff showing the deletion by
|
Yeah, there were some stray ones from previous nbfmt settings. Should be good now. I'll delete all the others. |
Why didn't this merge? 🤔 |
Typo
Note: These layers are active only during training, when you call Model.fit. They are inactive when the model is used in inference mode in Model.evaluate or Model.fit.
The second reference to
Model.fit
is not intended or correct and should be changed toModel.call
as follows:Correction
Note: These layers are active only during training, when you call Model.fit. They are inactive when the model is used in inference mode in Model.evaluate or Model.call.
Issue #60907