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
/// Enable post-training pruning to avoid overfitting. (a validation set is required).
@@ -732,24 +733,27 @@ public enum OptimizationAlgorithmType { GradientDescent, AcceleratedGradientDesc
732
733
/// <summary>
733
734
/// Freeform defining the scores that should be used as the baseline ranker.
734
735
/// </summary>
736
+
[BestFriend]
735
737
[Argument(ArgumentType.LastOccurenceWins,HelpText="Freeform defining the scores that should be used as the baseline ranker",ShortName="basescores",Hide=true)]
736
738
[TGUI(NotGui=true)]
737
-
publicstringBaselineScoresFormula;
739
+
internalstringBaselineScoresFormula;
738
740
739
741
/// <summary>
740
742
/// Baseline alpha for tradeoffs of risk (0 is normal training).
741
743
/// </summary>
744
+
[BestFriend]
742
745
[Argument(ArgumentType.LastOccurenceWins,HelpText="Baseline alpha for tradeoffs of risk (0 is normal training)",ShortName="basealpha",Hide=true)]
743
746
[TGUI(NotGui=true)]
744
-
publicstringBaselineAlphaRisk;
747
+
internalstringBaselineAlphaRisk;
745
748
746
749
/// <summary>
747
750
/// The discount freeform which specifies the per position discounts of examples in a query (uses a single variable P for position where P=0 is first position).
748
751
/// </summary>
752
+
[BestFriend]
749
753
[Argument(ArgumentType.LastOccurenceWins,HelpText="The discount freeform which specifies the per position discounts of examples in a query (uses a single variable P for position where P=0 is first position)",
750
754
ShortName="pdff",Hide=true)]
751
755
[TGUI(NotGui=true)]
752
-
publicstringPositionDiscountFreeform;
756
+
internalstringPositionDiscountFreeform;
753
757
754
758
#if !NO_STORE
755
759
[Argument(ArgumentType.LastOccurenceWins,HelpText="Offload feature bins to a file store",ShortName="fbsopt",Hide=true)]
0 commit comments