TensorFlowModel 类

定义

此类包含与 TensorFlow 模型和会话相关的信息。 它提供了一些方便的方法来查询模型架构以及创建 TensorFlowEstimator 对象。

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
继承
TensorFlowModel
实现

方法

Dispose()

此类包含与 TensorFlow 模型和会话相关的信息。 它提供了一些方便的方法来查询模型架构以及创建 TensorFlowEstimator 对象。

GetInputSchema()

DataViewSchema仅获取那些在 TensorFlow 模型中标记为“占位符”的节点。 在 TensorFlow 图形非常大的情况下,此方法可用于浏览模型输入 () 。

GetModelSchema()

获取 DataViewSchema 完整的模型。 TensorFlow 模型中的每个节点都将包含在对象中 DataViewSchema

ScoreTensorFlowModel(String, String, Boolean)

使用预先训练的 TensorFlow 模型为数据集评分。

ScoreTensorFlowModel(String[], String[], Boolean)

使用预先训练的 TensorFlow 模型为数据集评分。

适用于