CalliReader: Contextualizing Chinese Calligraphy via an Embedding-Aligned Vision-Language Model
Paper • 2503.06472 • Published • 8
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
CalliBench is aimed to comprehensively evaluate VLMs' performance on the recognition and understanding of Chinese calligraphy.
Samples: 3,192 image–annotation pairs
Tasks: Full-page recognition and Contextual VQA (choice of author/layout/style, bilingual interpretation, and intent analysis).
Annotations:
All .parqeut files of different tiers can be found in the sub-folders of data. Pandas can be used to parse and further process those files.
For example, to load a sample and convert its image into a .jpg file:
import pandas as pd
import io
from PIL import Image
df = pd.read_parquet('./full_page_ocr/hard/hard.parquet')
image_data = df.iloc[0]['image']
image = Image.open(io.BytesIO(image_data['bytes']))
image.save('output_image.jpg')
Apache 2.0 – open for research and commercial use.