deberta_v3_large / README.md
IMvision12's picture
Upload folder using huggingface_hub
e4abb2e verified
|
Raw
History Blame Contribute Delete
850 Bytes
---
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-large
---
# DeBERTa-v3 (deberta_v3_large)
A pure [Keras 3](https://keras.io) port of **DeBERTa-v3**, converted from [`microsoft/deberta-v3-large`](https://huggingface.co/microsoft/deberta-v3-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](https://github.com/IMvision12/KerasFormers).
## Usage
```python
from kerasformers.models.deberta_v3 import DebertaV3Model
model = DebertaV3Model.from_weights("kerasformers/deberta_v3_large")
```