unitxt
unitxt copied to clipboard
Disable nan transformation in loaders.LoadCSV
Currently, we use pd.read_csv() for loading csv file.
It causes that empty cells in a csv file are transformed to nan (which is not suited)
The fix is simple:
pd.read_csv('test.csv', keep_default_na=False)
Makes sense. Can you create a PR?