Skip to content

Commit 5f52db8

Browse files
committed
file name should be vanilla
1 parent 6854c9a commit 5f52db8

35 files changed

+77
-77
lines changed

src/Microsoft.ML.FastTree/FastTreeArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public interface IFastTreeTrainerFactory : IComponentFactory<ITrainer>
2020
{
2121
}
2222

23-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastTree"]/*' />
23+
/// <include file='./doc.xml' path='docs/members/member[@name="FastTree"]/*' />
2424
public sealed partial class FastTreeBinaryClassificationTrainer
2525
{
2626
[TlcModule.Component(Name = LoadNameValue, FriendlyName = UserNameValue, Desc = Summary)]

src/Microsoft.ML.FastTree/FastTreeClassification.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static IPredictorProducing<Float> Create(IHostEnvironment env, ModelLoadC
100100
public override PredictionKind PredictionKind { get { return PredictionKind.BinaryClassification; } }
101101
}
102102

103-
/// <include file = './XMLDoc.xml' path='docs/members/member[@name="FastTree"]/*' />
103+
/// <include file = './doc.xml' path='docs/members/member[@name="FastTree"]/*' />
104104
public sealed partial class FastTreeBinaryClassificationTrainer :
105105
BoostingFastTreeTrainerBase<FastTreeBinaryClassificationTrainer.Arguments, IPredictorWithFeatureWeights<Float>>
106106
{
@@ -346,7 +346,7 @@ public static partial class FastTree
346346
Desc = FastTreeBinaryClassificationTrainer.Summary,
347347
UserName = FastTreeBinaryClassificationTrainer.UserNameValue,
348348
ShortName = FastTreeBinaryClassificationTrainer.ShortName,
349-
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
349+
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
350350
public static CommonOutputs.BinaryClassificationOutput TrainBinary(IHostEnvironment env, FastTreeBinaryClassificationTrainer.Arguments input)
351351
{
352352
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/FastTreeRanking.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
namespace Microsoft.ML.Runtime.FastTree
4040
{
41-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastTree"]/*' />
41+
/// <include file='./doc.xml' path='docs/members/member[@name="FastTree"]/*' />
4242
public sealed partial class FastTreeRankingTrainer : BoostingFastTreeTrainerBase<FastTreeRankingTrainer.Arguments, FastTreeRankingPredictor>,
4343
IHasLabelGains
4444
{
@@ -1101,7 +1101,7 @@ public static partial class FastTree
11011101
Desc = FastTreeRankingTrainer.Summary,
11021102
UserName = FastTreeRankingTrainer.UserNameValue,
11031103
ShortName = FastTreeRankingTrainer.ShortName,
1104-
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
1104+
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
11051105
public static CommonOutputs.RankingOutput TrainRanking(IHostEnvironment env, FastTreeRankingTrainer.Arguments input)
11061106
{
11071107
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/FastTreeRegression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
namespace Microsoft.ML.Runtime.FastTree
3333
{
34-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastTree"]/*' />
34+
/// <include file='./doc.xml' path='docs/members/member[@name="FastTree"]/*' />
3535
public sealed partial class FastTreeRegressionTrainer : BoostingFastTreeTrainerBase<FastTreeRegressionTrainer.Arguments, FastTreeRegressionPredictor>
3636
{
3737
public const string LoadNameValue = "FastTreeRegression";
@@ -453,7 +453,7 @@ public static partial class FastTree
453453
Desc = FastTreeRegressionTrainer.Summary,
454454
UserName = FastTreeRegressionTrainer.UserNameValue,
455455
ShortName = FastTreeRegressionTrainer.ShortName,
456-
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
456+
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastTree""]/*' />" })]
457457
public static CommonOutputs.RegressionOutput TrainRegression(IHostEnvironment env, FastTreeRegressionTrainer.Arguments input)
458458
{
459459
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/FastTreeTweedie.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Microsoft.ML.Runtime.FastTree
3030
// The Tweedie boosting model follows the mathematics established in:
3131
// Yang, Quan, and Zou. "Insurance Premium Prediction via Gradient Tree-Boosted Tweedie Compound Poisson Models."
3232
// https://arxiv.org/pdf/1508.06378.pdf
33-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastTreeTweedieRegression"]/*' />
33+
/// <include file='./doc.xml' path='docs/members/member[@name="FastTreeTweedieRegression"]/*' />
3434
public sealed partial class FastTreeTweedieTrainer : BoostingFastTreeTrainerBase<FastTreeTweedieTrainer.Arguments, FastTreeTweediePredictor>
3535
{
3636
public const string LoadNameValue = "FastTreeTweedieRegression";
@@ -461,7 +461,7 @@ public static partial class FastTree
461461
Desc = FastTreeTweedieTrainer.Summary,
462462
UserName = FastTreeTweedieTrainer.UserNameValue,
463463
ShortName = FastTreeTweedieTrainer.ShortName,
464-
XmlInclude = new [] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastTreeTweedieRegression""]/*' />" })]
464+
XmlInclude = new [] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastTreeTweedieRegression""]/*' />" })]
465465
public static CommonOutputs.RegressionOutput TrainTweedieRegression(IHostEnvironment env, FastTreeTweedieTrainer.Arguments input)
466466
{
467467
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/RandomForestClassification.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static IPredictorProducing<Float> Create(IHostEnvironment env, ModelLoadC
106106
}
107107
}
108108

109-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastForest"]/*' />
109+
/// <include file='./doc.xml' path='docs/members/member[@name="FastForest"]/*' />
110110
public sealed partial class FastForestClassification :
111111
RandomForestTrainerBase<FastForestClassification.Arguments, IPredictorWithFeatureWeights<Float>>
112112
{
@@ -213,7 +213,7 @@ public static partial class FastForest
213213
Desc = FastForestClassification.Summary,
214214
UserName = FastForestClassification.UserNameValue,
215215
ShortName = FastForestClassification.ShortName,
216-
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastForest""]/*' />" })]
216+
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastForest""]/*' />" })]
217217
public static CommonOutputs.BinaryClassificationOutput TrainBinary(IHostEnvironment env, FastForestClassification.Arguments input)
218218
{
219219
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/RandomForestRegression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public ISchemaBindableMapper CreateMapper(Double[] quantiles)
137137
}
138138
}
139139

140-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="FastForest"]/*' />
140+
/// <include file='./doc.xml' path='docs/members/member[@name="FastForest"]/*' />
141141
public sealed partial class FastForestRegression : RandomForestTrainerBase<FastForestRegression.Arguments, FastForestRegressionPredictor>
142142
{
143143
public sealed class Arguments : FastForestArgumentsBase
@@ -285,7 +285,7 @@ public static partial class FastForest
285285
Desc = FastForestRegression.Summary,
286286
UserName = FastForestRegression.LoadNameValue,
287287
ShortName = FastForestRegression.ShortName,
288-
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/XMLDoc.xml' path='docs/members/member[@name=""FastForest""]/*' />" })]
288+
XmlInclude = new[] { @"<include file='../Microsoft.ML.FastTree/doc.xml' path='docs/members/member[@name=""FastForest""]/*' />" })]
289289
public static CommonOutputs.RegressionOutput TrainRegression(IHostEnvironment env, FastForestRegression.Arguments input)
290290
{
291291
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.FastTree/XMLDoc.xml renamed to src/Microsoft.ML.FastTree/doc.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</summary>
99
<remarks>
1010
<para>
11-
FastTrees is an efficient implementation of the <a href='https://arxiv.org/abs/1505.01866'>MART</a> gradient boosting algorithm.
11+
FastTree is an efficient implementation of the <a href='https://arxiv.org/abs/1505.01866'>MART</a> gradient boosting algorithm.
1212
Gradient boosting is a machine learning technique for regression problems.
1313
It builds each regression tree in a step-wise fashion, using a predefined loss function to measure the error for each step and corrects for it in the next.
1414
So this prediction model is actually an ensemble of weaker prediction models. In regression problems, boosting builds a series of of such trees in a step-wise fashion and then selects the optimal tree using an arbitrary differentiable loss function.

src/Microsoft.ML.KMeansClustering/KMeansPlusPlusTrainer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
namespace Microsoft.ML.Runtime.KMeans
3030
{
31-
/// <include file='./XMLDoc.xml' path='docs/members/member[@name="KMeans++"]/*' />
31+
/// <include file='./doc.xml' path='docs/members/member[@name="KMeans++"]/*' />
3232
public class KMeansPlusPlusTrainer : TrainerBase<RoleMappedData, KMeansPredictor>
3333
{
3434
public const string LoadNameValue = "KMeansPlusPlus";
@@ -213,7 +213,7 @@ private static int ComputeNumThreads(IHost host, int? argNumThreads)
213213
Desc = Summary,
214214
UserName = UserNameValue,
215215
ShortName = ShortName,
216-
XmlInclude = new[] { @"<include file='../Microsoft.ML.KMeansClustering/XMLDoc.xml' path='docs/members/member[@name=""KMeans++""]/*' />" })]
216+
XmlInclude = new[] { @"<include file='../Microsoft.ML.KMeansClustering/doc.xml' path='docs/members/member[@name=""KMeans++""]/*' />" })]
217217
public static CommonOutputs.ClusteringOutput TrainKMeans(IHostEnvironment env, Arguments input)
218218
{
219219
Contracts.CheckValue(env, nameof(env));

0 commit comments

Comments
 (0)