Instructions to use kerasformers/bert_base_uncased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use kerasformers/bert_base_uncased with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://kerasformers/bert_base_uncased") - KerasFormers
How to use kerasformers/bert_base_uncased with KerasFormers:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
| license: apache-2.0 | |
| library_name: keras | |
| pipeline_tag: fill-mask | |
| tags: | |
| - keras | |
| - kerasformers | |
| - tf | |
| - jax | |
| - pytorch | |
| - backend-agnostic | |
| - bert | |
| - fill-mask | |
| base_model: | |
| - google-bert/bert-base-uncased | |
| # BERT (bert_base_uncased) | |
| A pure [Keras 3](https://keras.io) port of **BERT**, converted from [`google-bert/bert-base-uncased`](https://huggingface.co/google-bert/bert-base-uncased) (Hugging Face Transformers). | |
| The weights are **backend-agnostic**: the same checkpoint loads and runs identically under the JAX, TensorFlow, or PyTorch Keras backend (`KERAS_BACKEND=jax|tensorflow|torch`), via [kerasformers](https://github.com/IMvision12/KerasFormers). | |
| ## Usage | |
| ```python | |
| from kerasformers.models.bert import BertModel | |
| model = BertModel.from_weights("kerasformers/bert_base_uncased") | |
| ``` | |