You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Some csv files will have rows that only have one " character, causing issues with reading the dataset. pandas has the option to treat quote characters as regular characters but autolabel does not expose this option to the user in any way.
To Reproduce
Create a new csv with a single quote starting in a row and another single quote ending in a proceeding row. For example:
example
label
sure
"yes
maybe
no"
ok
yes
Without the quoting option, autolabel should read this csv as
example
label
sure
"yes\nmaybe,no"
ok
yes
Expected behavior
We should expose this option to the user (probably in the dataset section of the config file) and be able to read csv files that have this issue.
The text was updated successfully, but these errors were encountered:
Describe the bug
Some csv files will have rows that only have one
"
character, causing issues with reading the dataset.pandas
has the option to treat quote characters as regular characters but autolabel does not expose this option to the user in any way.To Reproduce
Create a new csv with a single quote starting in a row and another single quote ending in a proceeding row. For example:
Without the quoting option, autolabel should read this csv as
Expected behavior
We should expose this option to the user (probably in the dataset section of the config file) and be able to read csv files that have this issue.
The text was updated successfully, but these errors were encountered: