--- license: apache-2.0 task_categories: - image-to-text language: - en tags: - scene-text-recognition - STR - OCR - artistic-text - wordart - synthetic-data - lmdb size_categories: - 1M raw image bytes # label-000000001 -> ground-truth text img_buf = txn.get(b"image-000000001") label = txn.get(b"label-000000001").decode("utf-8") print(num_samples, label) ``` For training and evaluation, we recommend using the official framework [OpenOCR-WATERec](https://github.com/YesianRohn/OpenOCR-WATERec), which consumes these LMDB databases directly. To download the dataset: ```bash # Requires: pip install -U "huggingface_hub[cli]" hf download Yesianrohn/WATER-Data --repo-type dataset --local-dir ./WATER-Data ``` --- ## Intended Use WATER-Data is intended for **research** on scene text recognition, especially artistic / WordArt text. Typical uses include: training and benchmarking STR models, studying synthetic-data strategies (tool-based vs. generative), and evaluating general / OCR-specialized VLMs on challenging stylized text. --- ## License Released under the **Apache 2.0** license. The dataset is built upon publicly available STR data sources (Union14M-L, WordArt, WAS-R) and synthetic content; please also respect the original licenses of these underlying datasets. --- ## Citation If you use WATER-Data in your research, please cite our paper: ```bibtex @inproceedings{water2026eccv, title = {Advancing WordArt-Oriented Scene Text Recognition: Datasets and Methods}, author = {Ye, Xingsong and Du, Yongkun and Zhang, Jiaxin and Zhang, Haojie and Sun, Chong and Li, Chen and Lyu, Jing and Chen, Zhineng}, booktitle = {European Conference on Computer Vision (ECCV)}, year = {2026} } ```