Summary
Add [PaliGemma](https://www.kaggle.com/models/keras/paligemma), [Llama 3](https://www.kaggle.com/models/keras/llama3), and [Phi 3](https://www.kaggle.com/models/keras/phi3) models.
PaliGemma quickstart, see [a complete usage on Kaggle](https://www.kaggle.com/models/keras/paligemma/keras/pali_gemma_3b_224).
python
pali_gemma_lm = keras_nlp.models.PaliGemmaCausalLM.from_preset(
"pali_gemma_3b_224"
)
pali_gemma_lm.generate(
inputs={
"images": images,
"prompts": prompts,
}
)
What's Changed
* Add CodeGemma 1.1 presets by grasskin in https://github.com/keras-team/keras-nlp/pull/1617
* Fix rope scaling factor by abuelnasr0 in https://github.com/keras-team/keras-nlp/pull/1605
* Fix the issue of propagating `training` argument in subclasses by james77777778 in https://github.com/keras-team/keras-nlp/pull/1623
* Pass kwargs to tokenizer when creating preprocessor by SamanehSaadat in https://github.com/keras-team/keras-nlp/pull/1632
* Add phi3 by abuelnasr0 in https://github.com/keras-team/keras-nlp/pull/1597
* Add LLaMA 3 tokenizer and preset by tirthasheshpatel in https://github.com/keras-team/keras-nlp/pull/1584
* Export missing llama 3 symbol by mattdangerw in https://github.com/keras-team/keras-nlp/pull/1633
* PaliGemma by mattdangerw in https://github.com/keras-team/keras-nlp/pull/1636
* Update pali_gemma_presets.py by divyashreepathihalli in https://github.com/keras-team/keras-nlp/pull/1637
* Update version to 0.13.0 for the master branch by mattdangerw in https://github.com/keras-team/keras-nlp/pull/1640
* Update llama3 preset versions by mattdangerw in https://github.com/keras-team/keras-nlp/pull/1641
**Full Changelog**: https://github.com/keras-team/keras-nlp/compare/v0.11.1...v0.12.0