I have a string with format "[[Integer1, tag1], [Integer2, tag2]]"
as values in dask Series and want to use df[col] = df[col].apply(ast.literal_eval)
to convert these into normal list values within that dask Series. The len of this list value can vary at different locations in the Series.
But getting the error ValueError('malformed node or string: <_ast.Name object at 0x7f593adfe198>',)
This works with pandas Series but getting this error with dask Series.