예제 #1
0
func NewEuclidLSH(hashNum int) *EuclidLSH {
	return &EuclidLSH{
		lshs: bit.NewArray(hashNum),

		cosTable: cosTable(hashNum),
	}
}
예제 #2
0
파일: lsh.go 프로젝트: sensorbee/jubatus
func NewLSH(bitNum int) *LSH {
	return &LSH{
		data: bit.NewArray(bitNum),
	}
}
예제 #3
0
func NewMinhash(bitNum int) *Minhash {
	return &Minhash{
		data: bit.NewArray(bitNum),
	}
}