Skip to content

Commit d987294

Browse files
Shahab Moradishauheen
authored andcommitted
fixed typo (#3445)
1 parent d8e0462 commit d987294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.StandardTrainers/Standard/Online/AveragedPerceptron.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace Microsoft.ML.Trainers
5353
/// and by the gradient of some loss function (in the specific case described above, the loss is hinge-loss, whose gradient is 1 when it is non-zero).
5454
///
5555
/// In Averaged Perceptron (aka voted-perceptron), for each iteration, i.e. pass through the training data, a weight vector is calculated as explained above.
56-
/// The final prediction is then calculate by averaging the weighted sum from each weight vector and looking at the sign of the result.
56+
/// The final prediction is then calculated by averaging the weighted sum from each weight vector and looking at the sign of the result.
5757
///
5858
/// For more information see [Wikipedia entry for Perceptron](https://en.wikipedia.org/wiki/Perceptron)
5959
/// or [Large Margin Classification Using the Perceptron Algorithm](https://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.8200).

0 commit comments

Comments
 (0)