sklearn.utils.murmurhash3_32¶
sklearn.utils.murmurhash3_32()
计算种子密钥的32位murmurhash3。
基本的实现是MurmurHash3_x86_32生成低延迟的32位哈希,适用于实现查找表,Bloom过滤器,最小草图计数或功能哈希。
参数 | 说明 |
---|---|
key | int32, bytes, unicode or ndarray with dtype int32 要哈希的物理对象 |
seed | int, optional default is 0 用于哈希算法的整数种子。 |
positive | boolean, optional default is False True: the results is casted to an unsigned int 从0到2 ** 32-1 |
False | the results is casted to a signed int 从-(2 ** 31)到2 ** 31-1 |