1
私は、コサイン距離クラスのapacheコモンズを使用しようとしています。しかし、常に1.0を返します。私は見逃していますか?apache.commons.textコサイン距離
public class ComputeDistance {
public static void main(String[] args)throws Exception{
CosineDistance dist = new CosineDistance();
CharSequence c1 = "example text1";
CharSequence c2 = "another file";
System.out.println(dist.apply(c1,c2));
}
}