ThinkLite-VL
Collection
5 items • Updated • 4
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.
The dataset can be loaded with the following codes.
import pandas as pd
import io
from PIL import Image
df = pd.read_parquet('ThinkLite-VL-Hard-11k.parquet', engine='pyarrow') # Your path of dataset
datas = df.to_dict(orient='records')
image = Image.open(io.BytesIO(datas[0]['image']))