From cea81b764f91d50d091d11293e0d3d4efa89a64c Mon Sep 17 00:00:00 2001 From: bvenn Date: Fri, 23 Feb 2024 14:23:14 +0100 Subject: [PATCH] fix KNN XML docu (< > tags within description) --- src/FSharp.Stats/ML/Unsupervised/KNN.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FSharp.Stats/ML/Unsupervised/KNN.fs b/src/FSharp.Stats/ML/Unsupervised/KNN.fs index 3e242354..a29f30e0 100644 --- a/src/FSharp.Stats/ML/Unsupervised/KNN.fs +++ b/src/FSharp.Stats/ML/Unsupervised/KNN.fs @@ -46,7 +46,7 @@ module KNN = |> fst Some label - + module Seq = /// @@ -183,7 +183,7 @@ module KNN = /// /// Fit the constructed `KNN.Classifier`, i.e. provide the points with their labels, used for the prediction. /// - /// the array of classified (or labeled) points [in the format "Map"], + /// the array of classified (or labeled) points [in the format "Map<label, point array>"], /// used for the classification /// ///