Update README.md
Browse files
README.md
CHANGED
|
@@ -22,12 +22,30 @@ dataset_info:
|
|
| 22 |
|
| 23 |
# CharBench - Character-level benchmark and analysis suite for LLMs.
|
| 24 |
|
| 25 |
-
Code is available in the [GitHub Repo](https://github.com/omriuz/CharBench/)
|
| 26 |
|
| 27 |
-
CharBench is a large-scale benchmark for studying tokenization and character-level behavior in modern language models.
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Usage
|
| 30 |
|
| 31 |
```python
|
| 32 |
from datasets import load_dataset
|
| 33 |
-
ds = load_dataset("omriuz/CharBench")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
# CharBench - Character-level benchmark and analysis suite for LLMs.
|
| 24 |
|
| 25 |
+
Code is available in the [GitHub Repo.](https://github.com/omriuz/CharBench/)
|
| 26 |
|
| 27 |
+
CharBench is a large-scale benchmark for studying tokenization and character-level behavior in modern language models.
|
| 28 |
+
|
| 29 |
+
For complete details on data curation and evaluation, see the [paper](https://arxiv.org/abs/2508.02591).
|
| 30 |
|
| 31 |
## Usage
|
| 32 |
|
| 33 |
```python
|
| 34 |
from datasets import load_dataset
|
| 35 |
+
ds = load_dataset("omriuz/CharBench")
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
If you use CharBench, please cite:
|
| 41 |
+
```
|
| 42 |
+
@misc{uzan2025charbenchevaluatingroletokenization,
|
| 43 |
+
title={CharBench: Evaluating the Role of Tokenization in Character-Level Tasks},
|
| 44 |
+
author={Omri Uzan and Yuval Pinter},
|
| 45 |
+
year={2025},
|
| 46 |
+
eprint={2508.02591},
|
| 47 |
+
archivePrefix={arXiv},
|
| 48 |
+
primaryClass={cs.CL},
|
| 49 |
+
url={https://arxiv.org/abs/2508.02591},
|
| 50 |
+
}
|
| 51 |
+
```
|