Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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