Skip to content

Commit ef4cb45

Browse files
authored
Replace dcoumentation with link.: (dotnet#3453)
1 parent 2357980 commit ef4cb45

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/Microsoft.ML.StandardTrainers/Standard/SdcaBinary.cs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,17 +1651,7 @@ private protected override SchemaShape.Column[] ComputeSdcaBinaryClassifierSchem
16511651
/// | Is caching required? | No |
16521652
/// | Required NuGet in addition to Microsoft.ML | None |
16531653
///
1654-
/// ### Training Algorithm Details
1655-
/// This trainer is based on the Stochastic Dual Coordinate Ascent (SDCA) method, a state-of-the-art optimization technique for convex objective functions.
1656-
/// The algorithm can be scaled for use on large out-of-memory data sets due to a semi-asynchronized implementation that supports multi-threading.
1657-
/// Convergence is underwritten by periodically enforcing synchronization between primal and dual updates in a separate thread.
1658-
/// Several choices of loss functions are also provided.The SDCA method combines several of the best properties and capabilities of logistic regression and SVM algorithms.
1659-
/// Note that SDCA is a stochastic and streaming optimization algorithm. The results depends on the order of the training data.
1660-
/// For reproducible results, it is recommended that one sets 'Shuffle' to False and 'NumThreads' to 1.
1661-
/// Elastic net regularization can be specified by the 'L2Const' and 'L1Threshold' parameters. Note that the 'L2Const' has an effect on the rate of convergence.
1662-
/// In general, the larger the 'L2Const', the faster SDCA converges.
1663-
/// For more information, see: [Scaling Up Stochastic Dual Coordinate Ascent](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/06/main-3.pdf ) and
1664-
/// [Stochastic Dual Coordinate Ascent Methods for Regularized Loss Minimization](http://www.jmlr.org/papers/volume14/shalev-shwartz13a/shalev-shwartz13a.pdf).
1654+
/// [!include[algorithm](~/../docs/samples/docs/api-reference/algo-details-sdca.md)].
16651655
/// ]]>
16661656
/// </format>
16671657
/// </remarks>

src/Microsoft.ML.StandardTrainers/StandardTrainersCatalog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public static SdcaNonCalibratedBinaryTrainer SdcaNonCalibrated(
268268
}
269269

270270
/// <summary>
271-
/// Create <see cref="SdcaNonCalibratedBinaryTrainer"/> using advanced options, which predicts a target using a linear classification model trained over boolean label data.
271+
/// Create <see cref="SdcaNonCalibratedBinaryTrainer"/> with advanced options, which predicts a target using a linear classification model trained over boolean label data.
272272
/// </summary>
273273
/// <param name="catalog">The binary classification catalog trainer object.</param>
274274
/// <param name="options">Trainer options.</param>

0 commit comments

Comments
 (0)