You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Name of the operation in TensorFlow graph that is used for optimizing parameters in the graph.
70
76
/// Usually it is the name specified in the minimize method of optimizer in python
71
77
/// e.g. optimizer = tf.train.GradientDescentOptimizer(learning_rate).minimize(cost, name = "SGDOptimizer").
72
78
/// </summary>
73
-
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the optimization operation in the TensorFlow graph.",ShortName="OptimizationOp",SortOrder=4)]
79
+
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the optimization operation in the TensorFlow graph.",ShortName="OptimizationOp",SortOrder=6)]
74
80
publicstringOptimizationOperation;
75
81
76
82
/// <summary>
77
83
/// The name of the operation in the TensorFlow graph to compute training loss (Optional).
78
84
/// </summary>
79
-
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph to compute training loss (Optional)",ShortName="LossOp",SortOrder=5)]
85
+
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph to compute training loss (Optional)",ShortName="LossOp",SortOrder=7)]
80
86
publicstringLossOperation;
81
87
82
88
/// <summary>
83
89
/// The name of the operation in the TensorFlow graph to compute performance metric during training (Optional).
84
90
/// </summary>
85
-
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph to compute performance metric during training (Optional)",ShortName="MetricOp",SortOrder=6)]
91
+
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph to compute performance metric during training (Optional)",ShortName="MetricOp",SortOrder=8)]
86
92
publicstringMetricOperation;
87
93
88
94
/// <summary>
89
95
/// Number of samples to use for mini-batch training.
90
96
/// </summary>
91
-
[Argument(ArgumentType.AtMostOnce,HelpText="Number of samples to use for mini-batch training.",SortOrder=7)]
97
+
[Argument(ArgumentType.AtMostOnce,HelpText="Number of samples to use for mini-batch training.",SortOrder=9)]
92
98
publicintBatchSize=64;
93
99
94
100
/// <summary>
95
101
/// Number of training iterations.
96
102
/// </summary>
97
-
[Argument(ArgumentType.AtMostOnce,HelpText="Number of training iterations.",SortOrder=8)]
103
+
[Argument(ArgumentType.AtMostOnce,HelpText="Number of training iterations.",SortOrder=10)]
98
104
publicintEpoch=5;
99
105
100
106
/// <summary>
101
107
/// The name of the operation in the TensorFlow graph which sets optimizer learning rate (Optional).
102
108
/// </summary>
103
-
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph which sets optimizer learning rate (Optional).",SortOrder=9)]
109
+
[Argument(ArgumentType.AtMostOnce,HelpText="The name of the operation in the TensorFlow graph which sets optimizer learning rate (Optional).",SortOrder=11)]
104
110
publicstringLearningRateOperation;
105
111
106
112
/// <summary>
107
113
/// Learning rate to use during optimization.
108
114
/// </summary>
109
-
[Argument(ArgumentType.AtMostOnce,HelpText="Learning rate to use during optimization.",SortOrder=10)]
115
+
[Argument(ArgumentType.AtMostOnce,HelpText="Learning rate to use during optimization.",SortOrder=12)]
110
116
publicfloatLearningRate=0.01f;
111
117
112
118
/// <summary>
113
119
/// Shuffle training data on each iteration?
114
120
/// </summary>
115
-
[Argument(ArgumentType.AtMostOnce,HelpText="Shuffle data before each iteration.",SortOrder=11)]
121
+
[Argument(ArgumentType.AtMostOnce,HelpText="Shuffle data before each iteration.",SortOrder=13)]
116
122
publicboolShuffle=true;
117
123
118
124
/// <summary>
@@ -121,7 +127,7 @@ public sealed class Arguments : TransformInputBase
121
127
/// Therefore, its highly unlikely that this parameter is changed from its default value of 'save/Const'.
122
128
/// Please change it cautiously if you need to.
123
129
/// </summary>
124
-
[Argument(ArgumentType.AtMostOnce,HelpText="Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.",SortOrder=12)]
130
+
[Argument(ArgumentType.AtMostOnce,HelpText="Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.",SortOrder=14)]
125
131
publicstringSaveLocationOperation="save/Const";
126
132
127
133
/// <summary>
@@ -130,13 +136,13 @@ public sealed class Arguments : TransformInputBase
130
136
/// Therefore, its highly unlikely that this parameter is changed from its default value of 'save/control_dependency'.
131
137
/// Please change it cautiously if you need to.
132
138
/// </summary>
133
-
[Argument(ArgumentType.AtMostOnce,HelpText="Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.",SortOrder=13)]
139
+
[Argument(ArgumentType.AtMostOnce,HelpText="Name of the input in TensorFlow graph that specifiy the location for saving/restoring models from disk.",SortOrder=15)]
0 commit comments