在使用类装饰器 @dataclass 的时候,碰到无法hash
自定义hash函数:
@dataclass
class Centroids:xids: np.ndarraydef __hash__(self):x = self.xidsreturn hash(x.data.tobytes())def __eq__(self, other):return hash(self) == hash(other)
ref:
https://stackoverflow.com/questions/16589791/most-efficient-property-to-hash-for-numpy-array