接口 LSHParams<T>
-
- 类型参数:
T- The class type of this instance.
- 所有超级接口:
org.apache.flink.ml.common.param.HasInputCol<T>,org.apache.flink.ml.common.param.HasOutputCol<T>,LSHModelParams<T>,org.apache.flink.ml.param.WithParams<T>
- 所有已知子接口:
MinHashLSHParams<T>
- 所有已知实现类:
MinHashLSH
public interface LSHParams<T> extends LSHModelParams<T>
Params forLSH.
-
-
字段概要
字段 修饰符和类型 字段 说明 static org.apache.flink.ml.param.Param<Integer>NUM_HASH_FUNCTIONS_PER_TABLEParam for the number of hash functions per hash table used in LSH AND-amplification.static org.apache.flink.ml.param.Param<Integer>NUM_HASH_TABLESParam for the number of hash tables used in LSH OR-amplification.
-
方法概要
所有方法 实例方法 默认方法 修饰符和类型 方法 说明 default intgetNumHashFunctionsPerTable()default intgetNumHashTables()default TsetNumHashFunctionsPerTable(Integer value)default TsetNumHashTables(Integer value)
-
-
-
字段详细资料
-
NUM_HASH_TABLES
static final org.apache.flink.ml.param.Param<Integer> NUM_HASH_TABLES
Param for the number of hash tables used in LSH OR-amplification.OR-amplification can be used to reduce the false negative rate. Higher values of this param lead to a reduced false negative rate, at the expense of added computational complexity.
-
NUM_HASH_FUNCTIONS_PER_TABLE
static final org.apache.flink.ml.param.Param<Integer> NUM_HASH_FUNCTIONS_PER_TABLE
Param for the number of hash functions per hash table used in LSH AND-amplification.AND-amplification can be used to reduce the false positive rate. Higher values of this param lead to a reduced false positive rate, at the expense of added computational complexity.
-
-