Skip to content

Commit 6aeb7cc

Browse files
author
Pete Luferenko
committed
Fixed whitespaces
1 parent 5088ab4 commit 6aeb7cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Microsoft.ML.Core/Data/IEstimator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public Column FindColumn(string name)
9595
}
9696

9797
// REVIEW: I think we should have an IsCompatible method to check if it's OK to use one schema shape
98-
// as an input to another schema shape. I started writing, but realized that there's more than one way to check for
98+
// as an input to another schema shape. I started writing, but realized that there's more than one way to check for
9999
// the 'compatibility': as in, 'CAN be compatible' vs. 'WILL be compatible'.
100100
}
101101

@@ -125,7 +125,7 @@ public interface IDataReaderEstimator<in TSource>
125125
{
126126
/// <summary>
127127
/// Train and return a transformer.
128-
///
128+
///
129129
/// REVIEW: you could consider the transformer to take a different <typeparamref name="TSource"/>, but we don't have such components
130130
/// yet, so why complicate matters?
131131
/// </summary>
@@ -148,7 +148,7 @@ public interface IDataReaderEstimator<in TSource, out TReader> : IDataReaderEsti
148148
}
149149

150150
/// <summary>
151-
/// The transformer is a component that transforms data.
151+
/// The transformer is a component that transforms data.
152152
/// It also supports 'schema propagation' to answer the question of 'how the data with this schema look after you transform it?'.
153153
/// </summary>
154154
public interface ITransformer
@@ -166,7 +166,7 @@ public interface ITransformer
166166
/// </summary>
167167
IDataView Transform(IDataView input);
168168
}
169-
169+
170170
/// <summary>
171171
/// The estimator (in Spark terminology) is an 'untrained transformer'. It needs to 'fit' on the data to manufacture
172172
/// a transformer.

0 commit comments

Comments
 (0)