Instructions to use kerasformers/roberta_large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use kerasformers/roberta_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
- Keras
How to use kerasformers/roberta_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/roberta_large") - Notebooks
- Google Colab
- Kaggle
File size: 3,127 Bytes
dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 dfba44f 0a95d66 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | ---
pipeline_tag: fill-mask
license: mit
base_model: FacebookAI/roberta-large
library_name: kerasformers
tags:
- keras
- kerasformers
- roberta
- fill-mask
- text-encoder
- arxiv:1907.11692
- pytorch
- jax
- tf
---
## ***See [our collection](https://huggingface.co/collections/kerasformers/roberta-6a6e8d9b2f4c9253f4145f65) for all versions of RoBERTa.***
# Run RoBERTa with Keras 3: JAX, PyTorch, or TensorFlow
[](https://github.com/IMvision12/KerasFormers) [](https://imvision12.github.io/KerasFormers/roberta/) [](https://huggingface.co/collections/kerasformers/roberta-6a6e8d9b2f4c9253f4145f65)
# kerasformers/roberta_large
Paper: [RoBERTa: A Robustly Optimized BERT Pretraining Approach (arXiv:1907.11692)](https://arxiv.org/abs/1907.11692) · [HF Papers](https://huggingface.co/papers/1907.11692)
RoBERTa is a robustly optimized BERT encoder: more data/steps, no NSP, dynamic masking, byte-level BPE (mask token `<mask>`), and padding-offset position ids.
For more details on the model, please go to the upstream [model card](https://huggingface.co/FacebookAI/roberta-large).
Pure-**Keras 3** conversion of [`FacebookAI/roberta-large`](https://huggingface.co/FacebookAI/roberta-large) for [kerasformers](https://github.com/IMvision12/KerasFormers). One implementation runs unmodified on **TensorFlow / Torch / JAX**.
This is a **fill-mask / encoder** checkpoint (`RobertaMaskedLM`, large). Task heads load via `hf:` fine-tunes.
## ✨ Quick start (fill-mask)
```python
import os
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
from kerasformers.models.roberta import RobertaMaskedLM, RobertaTokenizer
mlm = RobertaMaskedLM.from_weights("kerasformers/roberta_large")
tokenizer = RobertaTokenizer.from_weights("kerasformers/roberta_large")
inputs = tokenizer("The capital of France is <mask>.")
logits = mlm(inputs) # (1, L, vocab_size)
mask = int((inputs["input_ids"][0] == tokenizer.mask_token_id).argmax())
print(tokenizer.decode([int(logits[0, mask].argmax())]))
```
Load any RoBERTa variant the same way with `from_weights("kerasformers/<variant>")`:
| Variant | Hub |
|---|---|
| `roberta_base` | [`kerasformers/roberta_base`](https://huggingface.co/kerasformers/roberta_base) |
| `roberta_large` | [`kerasformers/roberta_large`](https://huggingface.co/kerasformers/roberta_large) |
## Tips
- Set `KERAS_BACKEND` **before** importing Keras / kerasformers.
- Prefer `RobertaTokenizer.from_weights(...)` so BPE vocab matches.
- Use `<mask>` (not `[MASK]`).
- See [RoBERTa docs](https://imvision12.github.io/KerasFormers/roberta/) and [Loading Weights](https://imvision12.github.io/KerasFormers/loading_weights/).
- Community / upstream safetensors still work via the `hf:` prefix, e.g. `RobertaMaskedLM.from_weights("hf:FacebookAI/roberta-large")`.
## Special Thanks
A huge thank you to the Facebook AI RoBERTa authors for creating and releasing these models.
License: MIT.
|