v0.7.0 #1393
Unanswered
mattdangerw
asked this question in
General
v0.7.0
#1393
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This release integrates KerasNLP and Kaggle Models. KerasNLP models will now work in Kaggle offline notebooks and all assets will quickly attach to a notebook rather than needing a slow download.
Summary
KerasNLP pre-trained models are now all made available through Kaggle Models. You can see all models currently available in both KerasCV and KerasNLP here. Individual model pages will include example usage and a file browser to examine all available assets for a model preset.
This change will not affect the existing usage of
from_preset(). Statement likekeras_nlp.models.BertClassifier.from_preset("bert_base_en")will continue to work and download checkpoints from the Kaggle Models hub.An note on model saving—for saving support across Keras 2 and Keras 3, we recommend using the new Keras saved model format. You can use
model.save('path/to/location.keras')for a full model andmodel.save_weights('path/to/location.weights.h5')for checkpoints. See the Keras saving guide for more details.What's Changed
SentencePieceTrainerfrom tests by @tirthasheshpatel in Remove the use ofSentencePieceTrainerfrom tests #1283versionAPI to keras_nlp by @grasskin in AddversionAPI to keras_nlp #1324ELECTRAbackbone implementation in keras by @pranavvp16 inELECTRAbackbone implementation in keras #1291LlamaBackboneby @shivance in AddLlamaBackbone#1203New Contributors
SentencePieceTrainerfrom tests #1283versionAPI to keras_nlp #1324ELECTRAbackbone implementation in keras #1291Full Changelog: v0.6.4...v0.7.0
This discussion was created from the release v0.7.0.
Beta Was this translation helpful? Give feedback.
All reactions