-
Notifications
You must be signed in to change notification settings - Fork 679
Additional BERT/ALBERT examples #70
Additional BERT/ALBERT examples #70
Conversation
All (the pull request submitter and all commit authors) CLAs are signed, but one or more commits were authored or co-authored by someone other than the pull request submitter. We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that by leaving a comment that contains only Note to project maintainer: There may be cases where the author cannot leave a comment, or the comment is not properly detected as consent. In those cases, you can manually confirm consent of the commit author(s), and set the ℹ️ Googlers: Go here for more info. |
Check out this pull request on Review Jupyter notebook visual diffs & provide feedback on notebooks. Powered by ReviewNB |
@googlebot I consent. |
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest replacing this:
try:
# %tensorflow_version only exists in Colab.
%tensorflow_version 2.x
except Exception:
pass
with this:
try:
import colab
!pip install --upgrade pip
except:
pass
…new BERT (version 3) and new ALBERT (version 2) models
@rcrowe-google Very similar to #69 The notebooks are updated now with the requested change, increased the TFX version to 0.25, and updated the BERT/ALBERT version and model data structure. If it is ok with you, let's merge the updates or close the PR. Thank you for your review. |
Two additional notebooks explaining: