Instructions to use kerasformers/deberta_large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use kerasformers/deberta_large 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/deberta_large") - KerasFormers
How to use kerasformers/deberta_large 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
metadata
license: mit
library_name: keras
pipeline_tag: fill-mask
tags:
- keras
- kerasformers
- tf
- jax
- pytorch
- backend-agnostic
- deberta
- fill-mask
base_model:
- microsoft/deberta-large
DeBERTa (deberta_large)
A pure Keras 3 port of DeBERTa, converted from microsoft/deberta-large (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.
Usage
from kerasformers.models.deberta import DebertaModel
model = DebertaModel.from_weights("kerasformers/deberta_large")