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
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]])
The text was updated successfully, but these errors were encountered:
zhu0619
added
the
feature
Annotates any PR that adds new features; Used in the release process
label
Jul 17, 2024
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 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]])
The text was updated successfully, but these errors were encountered: