Skip to content

Commit 64cdb80

Browse files
committed
PR feedback.
1 parent 8ef9b3f commit 64cdb80

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

src/Microsoft.ML.Data/Commands/DataCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public abstract class ArgumentsBase
2626
[Argument(ArgumentType.AtMostOnce, IsInputFileName = true, HelpText = "The data file", ShortName = "data", SortOrder = 0)]
2727
public string DataFile;
2828

29-
[Argument(ArgumentType.AtMostOnce, HelpText = "Model file to save", ShortName = "out")]
29+
[Argument(ArgumentType.AtMostOnce, Visibility = ArgumentAttribute.VisibilityType.CmdLineOnly, HelpText = "Model file to save", ShortName = "out")]
3030
public string OutputModelFile;
3131

3232
[Argument(ArgumentType.AtMostOnce, IsInputFileName = true, HelpText = "Model file to load", ShortName = "in", SortOrder = 90)]

src/Microsoft.ML/CSharpApi.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2799,11 +2799,6 @@ public sealed partial class OnnxConverter
27992799
/// </summary>
28002800
public string DataFile { get; set; }
28012801

2802-
/// <summary>
2803-
/// Model file to save
2804-
/// </summary>
2805-
public string OutputModelFile { get; set; }
2806-
28072802
/// <summary>
28082803
/// Model file to load
28092804
/// </summary>

test/BaselineOutput/Common/EntryPoints/core_manifest.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2177,18 +2177,6 @@
21772177
"IsNullable": true,
21782178
"Default": null
21792179
},
2180-
{
2181-
"Name": "OutputModelFile",
2182-
"Type": "String",
2183-
"Desc": "Model file to save",
2184-
"Aliases": [
2185-
"out"
2186-
],
2187-
"Required": false,
2188-
"SortOrder": 150.0,
2189-
"IsNullable": false,
2190-
"Default": null
2191-
},
21922180
{
21932181
"Name": "Verbose",
21942182
"Type": "Bool",

0 commit comments

Comments
 (0)