hash

paddle.fluid.layers. hash ( input, hash_size, num_hash=1, name=None ) [源代码]

该OP将输入 hash 成为一个整数,该数的值小于给定的 hash_size仅支持输入为LoDTensor

该OP使用的哈希算法是:xxHash - Extremely fast hash algorithm

参数:

  • input (Variable) - 输入是一个 二维 LoDTensor输入维数必须为2。数据类型为:int32、int64。仅支持LoDTensor

  • hash_size (int) - 哈希算法的空间大小。输出值将保持在

    hash - 图1

    范围内。

  • num_hash (int) - 哈希次数。默认值为1。

  • name (str,可选) – 具体用法请参见 Name ,一般无需设置,默认值为None。

返回:LoDTensor

返回类型:Variable

代码示例:

  1. import paddle.fluid as fluid
  2. import numpy as np
  3. place = fluid.core.CPUPlace()
  4. # 构建网络
  5. x = fluid.data(name="x", shape=[2, 2], dtype="int32", lod_level=1)
  6. res = fluid.layers.hash(name="res", input=x, hash_size=1000, num_hash=4)
  7. # 创建CPU执行器
  8. exe = fluid.Executor(place)
  9. exe.run(fluid.default_startup_program())
  10. in1 = np.array([[1,2],[3,4]]).astype("int32")
  11. print(in1)
  12. x_i = fluid.create_lod_tensor(in1, [[0, 2]], place)
  13. res = exe.run(fluid.default_main_program(), feed={'x':x_i}, fetch_list=[res], return_numpy=False)
  14. print(np.array(res[0]))
  15. # [[[722]
  16. # [407]
  17. # [337]
  18. # [395]]
  19. # [[603]
  20. # [590]
  21. # [386]
  22. # [901]]]