You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="samplingKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="samplingKeyColumnName"/>,
237
+
/// <param name="partitionKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="partitionKeyColumnName"/>,
238
238
/// they are guaranteed to appear in the same subset (train or test). This can be used to ensure no label leakage from the train to the test set.
239
239
/// If <see langword="null"/> no row grouping will be performed.</param>
240
240
/// <param name="seed">Seed for the random number generator used to select rows for cross-validation folds.</param>
/// <param name="samplingKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="samplingKeyColumnName"/>,
261
+
/// <param name="partitionKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="partitionKeyColumnName"/>,
262
262
/// they are guaranteed to appear in the same subset (train or test). This can be used to ensure no label leakage from the train to the test set.
263
263
/// If <see langword="null"/> no row grouping will be performed.</param>
264
264
/// <param name="seed">Seed for the random number generator used to select rows for cross-validation folds.</param>
@@ -431,23 +431,23 @@ public ClusteringMetrics Evaluate(IDataView data,
431
431
432
432
/// <summary>
433
433
/// Run cross-validation over <paramref name="numberOfFolds"/> folds of <paramref name="data"/>, by fitting <paramref name="estimator"/>,
434
-
/// and respecting <paramref name="samplingKeyColumnName"/> if provided.
434
+
/// and respecting <paramref name="partitionKeyColumnName"/> if provided.
435
435
/// Then evaluate each sub-model against <paramref name="labelColumnName"/> and return metrics.
436
436
/// </summary>
437
437
/// <param name="data">The data to run cross-validation on.</param>
438
438
/// <param name="estimator">The estimator to fit.</param>
439
439
/// <param name="numberOfFolds">Number of cross-validation folds.</param>
440
440
/// <param name="labelColumnName">Optional label column for evaluation (clustering tasks may not always have a label).</param>
441
441
/// <param name="featuresColumnName">Optional features column for evaluation (needed for calculating Dbi metric)</param>
442
-
/// <param name="samplingKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="samplingKeyColumnName"/>,
442
+
/// <param name="partitionKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="partitionKeyColumnName"/>,
443
443
/// they are guaranteed to appear in the same subset (train or test). This can be used to ensure no label leakage from the train to the test set.
444
444
/// If <see langword="null"/> no row grouping will be performed.</param>
445
445
/// <param name="seed">Seed for the random number generator used to select rows for cross-validation folds.</param>
/// <param name="samplingKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="samplingKeyColumnName"/>,
515
+
/// <param name="partitionKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="partitionKeyColumnName"/>,
516
516
/// they are guaranteed to appear in the same subset (train or test). This can be used to ensure no label leakage from the train to the test set.
517
517
/// If <see langword="null"/> no row grouping will be performed.</param>
518
518
/// <param name="seed">Seed for the random number generator used to select rows for cross-validation folds.</param>
/// <param name="samplingKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="samplingKeyColumnName"/>,
582
+
/// <param name="partitionKeyColumnName">Name of a column to use for grouping rows. If two examples share the same value of the <paramref name="partitionKeyColumnName"/>,
583
583
/// they are guaranteed to appear in the same subset (train or test). This can be used to ensure no label leakage from the train to the test set.
584
584
/// If <see langword="null"/> no row grouping will be performed.</param>
585
585
/// <param name="seed">Seed for the random number generator used to select rows for cross-validation folds.</param>
/// <param name="labelColumnName">The name of the label column in <paramref name="data"/>.</param>
674
674
/// <param name="scoreColumnName">The name of the score column in <paramref name="data"/>.</param>
675
675
/// <param name="predictedLabelColumnName">The name of the predicted label column in <paramref name="data"/>.</param>
676
-
/// <param name="k">The number of false positives to compute the <see cref="AnomalyDetectionMetrics.DetectionRateAtKFalsePositives"/> metric. </param>
676
+
/// <param name="falsePositiveCount">The number of false positives to compute the <see cref="AnomalyDetectionMetrics.DetectionRateAtKFalsePositives"/> metric. </param>
0 commit comments