Is your feature request related to a problem? Please describe.
Dataset uses pandas.util.hash_pandas_object to compute the checksum.
However, there are cases, the data type of pandas series is a list or a numpy array.
Such as pd.Series([[1], [2], [3]])) produces error TypeError: unhashable type: 'list'
Describe the solution you'd like
A solution to be able to compute the hash for data like pd.Series([[1], [2], [3]])
Is your feature request related to a problem? Please describe.
Dataset uses
pandas.util.hash_pandas_object
to compute the checksum. However, there are cases, the data type of pandas series is a list or a numpy array. Such aspd.Series([[1], [2], [3]]))
produces errorTypeError: unhashable type: 'list'
Describe the solution you'd like
A solution to be able to compute the hash for data like
pd.Series([[1], [2], [3]])