PurePolyglot / dump_restored_igbo.py
github-actions[bot]
Automated deployment to Hugging Face
160aacb
Raw
History Blame Contribute Delete
177 Bytes
import pandas as pd
import codecs
df = pd.read_csv('restored_Asusu_Igbo.csv')
with codecs.open('restored_igbo_out_utf8.txt', 'w', 'utf-8') as f:
f.write(str(df.to_dict()))