Update README.md
Browse files
README.md
CHANGED
|
@@ -34,3 +34,45 @@ configs:
|
|
| 34 |
- split: train
|
| 35 |
path: data/train-*
|
| 36 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
- split: train
|
| 35 |
path: data/train-*
|
| 36 |
---
|
| 37 |
+
|
| 38 |
+
# TextPecker-1.5M: A Dataset for Training and evaluating TextPecker
|
| 39 |
+
|
| 40 |
+
This repository contains the **TextPecker** dataset, a new benchmark proposed in the paper "[TextPecker: Rewarding Structural Anomaly Quantification for Enhancing Visual Text Rendering](https://arxiv.org/abs/2602.xxxxx)".
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
## Code and Project Page
|
| 44 |
+
|
| 45 |
+
The official implementation and project details for the TextPecker and TextPecker-1.5M dataset can be found on the GitHub repository:
|
| 46 |
+
[https://github.com/CIawevy/TextPecker](https://github.com/CIawevy/TextPecker)
|
| 47 |
+
|
| 48 |
+
## Sample Usage
|
| 49 |
+
|
| 50 |
+
You can easily load the TextPecker-1.5M dataset using the Hugging Face `datasets` library. The dataset is provided in two configurations: `train` and `test`
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from datasets import load_dataset
|
| 54 |
+
|
| 55 |
+
# Load the full TextPecker-1.5M dataset (includes train and test splits)
|
| 56 |
+
dataset = load_dataset("CIawevy/TextPecker-1.5M", "default")
|
| 57 |
+
train_data = dataset["train"]
|
| 58 |
+
test_data = dataset["test"]
|
| 59 |
+
|
| 60 |
+
# Load specific split directly (more efficient for practical usage)
|
| 61 |
+
train_data = load_dataset("CIawevy/TextPecker-1.5M", "default", split="train")
|
| 62 |
+
test_data = load_dataset("CIawevy/TextPecker-1.5M", "default", split="test")
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
For detailed instructions on installation, model download, evaluation, and running demos with the FreeFine framework, please refer to the [GitHub repository](https://github.com/CIawevy/FreeFine).
|
| 66 |
+
|
| 67 |
+
## Citation
|
| 68 |
+
|
| 69 |
+
If you find this dataset useful for your research, please cite the accompanying paper:
|
| 70 |
+
|
| 71 |
+
```bibtex
|
| 72 |
+
@article{zhu2026TextPecker,
|
| 73 |
+
title = {TextPecker: Rewarding Structural Anomaly Quantification for Enhancing Visual Text Rendering},
|
| 74 |
+
author = {Zhu, Hanshen and Liu, Yuliang and Wu, Xuecheng and Wang, An-Lan and Feng, Hao and Yang, Dingkang and Feng, Chao and Huang, Can and Tang, Jingqun and Bai, Xiang},
|
| 75 |
+
journal = {arXiv preprint arXiv:xxxxx},
|
| 76 |
+
year = {2026}
|
| 77 |
+
}
|
| 78 |
+
```
|