PureVersation / read_pending.py
github-actions[bot]
Automated deployment to Hugging Face
963d10b
Raw
History Blame Contribute Delete
239 Bytes
import pandas as pd
df = pd.read_csv('hf://datasets/toecm/PureChain_Dataset/pending_approvals.csv')
with open('pending_dump.txt', 'w', encoding='utf-8') as f:
f.write(df[['Dialect', 'Utterance', 'Clarification']].tail(10).to_string())