AutoNLP Error for Entity Dataset

Hi,

I wanted to try out AutoNLP for token classification. My csv uploads without an error and the two columns look the same as in the example, i.e., consisting out of samples that are a list of strings for the input and a list of labels (one for each string) as output. However, when I click the training button I receive the following error:

Error
There was a problem while converting your dataset files.

How can I fix this problem?

Here a sample line from my csv. I tried with the label entry being integers and strings, both leading to errors.

[‘On’, ‘property’, ‘,’, ‘he’, ‘is’, ‘blunt’, ‘.’] [1, 0, 0, 0, 0, 1, 0]

or

[‘On’, ‘property’, ‘,’, ‘he’, ‘is’, ‘blunt’, ‘.’] [‘m’, ‘l’, ‘l’, ‘l’, ‘l’, ‘’, ‘l’]