We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 372a99c commit 18b02a1Copy full SHA for 18b02a1
1 file changed
UMAP/Umap.cs
@@ -691,13 +691,13 @@ public Umap(
691
692
}
693
694
- /// <inheritdoc cref="NearestNeighbors(T[], Umap{RawVectorArrayUmapDataPoint}.ProgressReporter)(float[][])"/>
+ /// <inheritdoc cref="Umap{T}.NearestNeighbors(T[], Umap{T}.ProgressReporter)"/>
695
public (int[][] knnIndices, float[][] knnDistances) NearestNeighbors(float[][] x, ProgressReporter progressReporter)
696
{
697
return base.NearestNeighbors(x.Select(c => new RawVectorArrayUmapDataPoint(c)).ToArray(), progressReporter);
698
699
700
- /// <inheritdoc cref="InitializeFit(float[][])"/>
+ /// <inheritdoc cref="Umap{T}.InitializeFit(T[])"/>
701
public int InitializeFit(float[][] a) => base.InitializeFit(a.Select(x => new RawVectorArrayUmapDataPoint(x)).ToArray());
702
703
0 commit comments