TensorFlowModel Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This class holds the information related to TensorFlow model and session. It provides some convenient methods to query model schema as well as creation of TensorFlowEstimator object.
public sealed class TensorFlowModel : IDisposable
public sealed class TensorFlowModel
type TensorFlowModel = class
interface IDisposable
type TensorFlowModel = class
Public NotInheritable Class TensorFlowModel
Implements IDisposable
Public NotInheritable Class TensorFlowModel
- Inheritance
-
TensorFlowModel
- Implements
Methods
Dispose() | |
GetInputSchema() |
Get DataViewSchema for only those nodes which are marked "Placeholder" in the TensorFlow model. This method is convenient for exploring the model input(s) in case TensorFlow graph is very large. |
GetModelSchema() |
Get DataViewSchema for complete model. Every node in the TensorFlow model will be included in the DataViewSchema object. |
ScoreTensorFlowModel(String, String, Boolean) |
Scores a dataset using a pre-trained TensorFlow model. |
ScoreTensorFlowModel(String[], String[], Boolean) |
Scores a dataset using a pre-trained TensorFlow model. |