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
/// Convenience constructor for public facing API.
192
+
/// Creates <see cref="IDataTransform"/> using <see cref="TensorFlowTransform"/>.
193
+
/// This convenience method get the model file as input and loads the model internally.
194
+
/// If the model is already loaded please <see cref="TensorFlowTransform.Create(IHostEnvironment, IDataView, TensorFlowModelInfo, string[], string[])"/> to avoid reloading of model.
193
195
/// </summary>
194
196
/// <param name="env">Host Environment.</param>
195
197
/// <param name="input">Input <see cref="IDataView"/>. This is the output from previous transform or loader.</param>
/// Creates <see cref="IDataTransform"/> using <see cref="TensorFlowTransform"/>.
208
+
/// This convenience method avoids reloading of TensorFlow model.
209
+
/// It is useful in a situation where user has already loaded TensorFlow model using <see cref="TensorFlowUtils.LoadTensorFlowModel(IHostEnvironment, string)"/> for inspecting model schema.
210
+
/// </summary>
211
+
/// <param name="env">Host Environment.</param>
212
+
/// <param name="input">Input <see cref="IDataView"/>. This is the output from previous transform or loader.</param>
213
+
/// <param name="tfModelInfo"> <see cref="TensorFlowModelInfo"/> object created with <see cref="TensorFlowUtils.LoadTensorFlowModel(IHostEnvironment, string)"/>.</param>
214
+
/// <param name="names">Name of the output column(s). Keep it same as in the Tensorflow model.</param>
215
+
/// <param name="source">Name of the input column(s). Keep it same as in the Tensorflow model.</param>
0 commit comments