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']))