Skip to content

Commit 6f45e69

Browse files
committed
small fixes
1 parent 6524fd3 commit 6f45e69

File tree

5 files changed

+48
-11
lines changed

5 files changed

+48
-11
lines changed

src/Microsoft.ML.StandardLearners/Standard/LogisticRegression/LogisticRegression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ public override ParameterMixingCalibratedPredictor CreatePredictor()
393393
UserName = UserNameValue,
394394
ShortName = ShortName,
395395
XmlInclude = new[] { @"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='doc/members/member[@name=""LBFGS""]/*' />",
396-
@"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='docs/members/example[@name=""LogisticRegressionBinaryClassifier""]/*' />"})]
396+
@"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='doc/members/example[@name=""LogisticRegressionBinaryClassifier""]/*' />"})]
397397

398398
public static CommonOutputs.BinaryClassificationOutput TrainBinary(IHostEnvironment env, Arguments input)
399399
{

src/Microsoft.ML.StandardLearners/Standard/LogisticRegression/MulticlassLogisticRegression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ public partial class LogisticRegression
967967
UserName = MulticlassLogisticRegression.UserNameValue,
968968
ShortName = MulticlassLogisticRegression.ShortName,
969969
XmlInclude = new[] { @"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='doc/members/member[@name=""LBFGS""]/*' />",
970-
@"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='docs/members/example[@name=""LogisticRegressionClassifier""]/*' />" })]
970+
@"<include file='../Microsoft.ML.StandardLearners/Standard/LogisticRegression/doc.xml' path='doc/members/example[@name=""LogisticRegressionClassifier""]/*' />" })]
971971
public static CommonOutputs.MulticlassClassificationOutput TrainMultiClass(IHostEnvironment env, MulticlassLogisticRegression.Arguments input)
972972
{
973973
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.Transforms/CategoricalTransform.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ public static CommonOutputs.TransformOutput CatTransformHash(IHostEnvironment en
278278
[TlcModule.EntryPoint(Name = "Transforms.TextToKeyConverter",
279279
Desc = TermTransform.Summary,
280280
UserName = TermTransform.UserName,
281-
XmlInclude = new[] { @"<include file='../Microsoft.ML.Transforms/doc.xml' path='doc/members/member[@name=""TextToKey""]/*' />",
282-
@"<include file='../Microsoft.ML.Transforms/doc.xml' path='doc/members/example[@name=""TextToKey""]/*' />" })]
281+
XmlInclude = new[] { @"<include file='../Microsoft.ML.Data/Transforms/doc.xml' path='doc/members/member[@name=""TextToKey""]/*' />",
282+
@"<include file='../Microsoft.ML.Data/Transforms/doc.xml' path='doc/members/example[@name=""TextToKey""]/*' />" })]
283283
public static CommonOutputs.TransformOutput TextToKey(IHostEnvironment env, TermTransform.Arguments input)
284284
{
285285
Contracts.CheckValue(env, nameof(env));

src/Microsoft.ML.Transforms/doc.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
</example>
127127
</member>
128128

129-
<member>
129+
<member name="OptionalColumnTransform">
130130
<summary>
131131
If the user wish to create additional columns with a particular type and default values,
132132
or replicated the values from one column to another, changing their type, they can do so using this transform.
@@ -294,7 +294,7 @@
294294
</example>
295295
</member>
296296

297-
<member>
297+
<member name="Ungroup">
298298
<summary>
299299
Un-groups vector columns into sequences of rows, inverse of Group transform.
300300
</summary>
@@ -328,7 +328,7 @@
328328
</para>
329329
</remarks>
330330
</member>
331-
<example name="Ungroup">
331+
<example name="Ungroup">
332332
<example>
333333
<code language="csharp">
334334
pipeline.Add(new Segregator(){ Column = new[]{&quot;Column1&quot; }, Mode = UngroupTransformUngroupMode.First} );

0 commit comments

Comments
 (0)