Skip to content

Commit 18b02a1

Browse files
author
amaidniazi
committed
fixed doc reference on the umap class.
1 parent 372a99c commit 18b02a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

UMAP/Umap.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -691,13 +691,13 @@ public Umap(
691691

692692
}
693693

694-
/// <inheritdoc cref="NearestNeighbors(T[], Umap{RawVectorArrayUmapDataPoint}.ProgressReporter)(float[][])"/>
694+
/// <inheritdoc cref="Umap{T}.NearestNeighbors(T[], Umap{T}.ProgressReporter)"/>
695695
public (int[][] knnIndices, float[][] knnDistances) NearestNeighbors(float[][] x, ProgressReporter progressReporter)
696696
{
697697
return base.NearestNeighbors(x.Select(c => new RawVectorArrayUmapDataPoint(c)).ToArray(), progressReporter);
698698
}
699699

700-
/// <inheritdoc cref="InitializeFit(float[][])"/>
700+
/// <inheritdoc cref="Umap{T}.InitializeFit(T[])"/>
701701
public int InitializeFit(float[][] a) => base.InitializeFit(a.Select(x => new RawVectorArrayUmapDataPoint(x)).ToArray());
702702

703703
}

0 commit comments

Comments
 (0)