Skip to content

Commit

Permalink
Contributing: Fix typo (#4629)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaherJendoubi authored and harishsk committed Jan 6, 2020
1 parent 7c2ee61 commit 6b67a52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Microsoft.ML.Vision/DnnRetrainTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1262,12 +1262,12 @@ internal sealed class Options : TransformInputBase
public float LearningRate = 0.01f;

/// <summary>
/// Name of the input in TensorFlow graph that specifiy the location for saving/restoring models to/from disk.
/// Name of the input in TensorFlow graph that specify the location for saving/restoring models to/from disk.
/// This parameter is set by different kinds of 'Savers' in TensorFlow and users don't have control over this.
/// Therefore, its highly unlikely that this parameter is changed from its default value of 'save/Const'.
/// Please change it cautiously if you need to.
/// </summary>
[Argument(ArgumentType.AtMostOnce, HelpText = "Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.", SortOrder = 13)]
[Argument(ArgumentType.AtMostOnce, HelpText = "Name of the input in TensorFlow graph that specify the location for saving/restoring models from disk.", SortOrder = 13)]
public string SaveLocationOperation = "save/Const";

/// <summary>
Expand All @@ -1276,7 +1276,7 @@ internal sealed class Options : TransformInputBase
/// Therefore, its highly unlikely that this parameter is changed from its default value of 'save/control_dependency'.
/// Please change it cautiously if you need to.
/// </summary>
[Argument(ArgumentType.AtMostOnce, HelpText = "Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.", SortOrder = 14)]
[Argument(ArgumentType.AtMostOnce, HelpText = "Name of the input in TensorFlow graph that specify the location for saving/restoring models from disk.", SortOrder = 14)]
public string SaveOperation = "save/control_dependency";

/// <summary>
Expand Down

0 comments on commit 6b67a52

Please sign in to comment.