Instructions to use laxmareddyp/gemma-2b-finetune with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasHub
How to use laxmareddyp/gemma-2b-finetune with KerasHub:
import keras_hub # Load CausalLM model (optional: use half precision for inference) causal_lm = keras_hub.models.CausalLM.from_preset("hf://laxmareddyp/gemma-2b-finetune", dtype="bfloat16") causal_lm.compile(sampler="greedy") # (optional) specify a sampler # Generate text causal_lm.generate("Keras: deep learning for", max_length=64)import keras_hub # Create a Backbone model unspecialized for any task backbone = keras_hub.models.Backbone.from_preset("hf://laxmareddyp/gemma-2b-finetune") - Keras
How to use laxmareddyp/gemma-2b-finetune with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://laxmareddyp/gemma-2b-finetune") - Notebooks
- Google Colab
- Kaggle
| { | |
| "module": "keras_hub.src.models.gemma.gemma_causal_lm_preprocessor", | |
| "class_name": "GemmaCausalLMPreprocessor", | |
| "config": { | |
| "name": "gemma_causal_lm_preprocessor", | |
| "trainable": true, | |
| "dtype": { | |
| "module": "keras", | |
| "class_name": "DTypePolicy", | |
| "config": { | |
| "name": "bfloat16" | |
| }, | |
| "registered_name": null | |
| }, | |
| "tokenizer": { | |
| "module": "keras_hub.src.models.gemma.gemma_tokenizer", | |
| "class_name": "GemmaTokenizer", | |
| "config": { | |
| "name": "gemma_tokenizer", | |
| "trainable": true, | |
| "dtype": { | |
| "module": "keras", | |
| "class_name": "DTypePolicy", | |
| "config": { | |
| "name": "int32" | |
| }, | |
| "registered_name": null | |
| }, | |
| "config_file": "tokenizer.json", | |
| "proto": null, | |
| "sequence_length": null, | |
| "add_bos": false, | |
| "add_eos": false | |
| }, | |
| "registered_name": "keras_hub>GemmaTokenizer" | |
| }, | |
| "config_file": "preprocessor.json", | |
| "sequence_length": 1024, | |
| "add_start_token": true, | |
| "add_end_token": true | |
| }, | |
| "registered_name": "keras_hub>GemmaCausalLMPreprocessor" | |
| } |