File size: 323 Bytes
9a71cb6 | 1 2 3 4 5 6 7 8 9 | import pandas as pd
df = pd.read_parquet('d:/Research/Rl4Phyx/ZeroSearch/One-Shot-RLVR/data/train/physics_vlm/metaphyx_all.parquet')
print(f'Rows: {len(df)}')
print(f'Columns: {df.columns.tolist()}')
print(f'First answer: {df.iloc[0]["answer"]}')
print(f'\nSample prompt:')
print(df.iloc[0]['prompt'][0]['content'][:300])
|