Instructions to use kerasformers/deberta_v3_base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use kerasformers/deberta_v3_base 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_v3_base") - KerasFormers
How to use kerasformers/deberta_v3_base 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
File size: 845 Bytes
5468908 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | ---
license: mit
library_name: keras
pipeline_tag: feature-extraction
tags:
- keras
- kerasformers
- tf
- jax
- pytorch
- backend-agnostic
- deberta_v3
- feature-extraction
base_model:
- microsoft/deberta-v3-base
---
# DeBERTa-v3 (deberta_v3_base)
A pure [Keras 3](https://keras.io) port of **DeBERTa-v3**, converted from [`microsoft/deberta-v3-base`](https://huggingface.co/microsoft/deberta-v3-base) (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.deberta_v3 import DebertaV3Model
model = DebertaV3Model.from_weights("kerasformers/deberta_v3_base")
```
|