具有用户指定头部的 TensorFlow DNN 模型的估计器。
警告:不建议将估算器用于新代码。估算器运行tf.compat.v1.Session-style 代码更难正确编写,并且可能出现意外行为,尤其是与 TF 2 代码结合使用时。估算器确实属于我们的兼容性保证,但不会收到除安全漏洞以外的任何修复。见迁移指南详情。
用法
tf.estimator.DNNEstimator(
head, hidden_units, feature_columns, model_dir=None,
optimizer='Adagrad', activation_fn=tf.nn.relu, dropout=None,
config=None, warm_start_from=None, batch_norm=False
)
参数
-
head
使用tf.contrib.estimator.multi_label_head
等方法构造的_Head
实例。 -
hidden_units
每层可迭代的隐藏单元数。所有层都是完全连接的。前任。[64, 32]
表示第一层有 64 个节点,第二层有 32 个。 -
feature_columns
一个包含模型使用的所有特征列的迭代。集合中的所有项目都应该是派生自_FeatureColumn
的类的实例。 -
model_dir
保存模型参数、图形等的目录。这也可用于将检查点从目录加载到估计器中,以继续训练先前保存的模型。 -
optimizer
tf.keras.optimizers.*
的实例用于训练模型。也可以是字符串('Adagrad'、'Adam'、'Ftrl'、'RMSProp'、SGD'之一)或可调用的。默认为 Adagrad 优化器。 -
activation_fn
应用于每一层的激活函数。如果None
,将使用tf.nn.relu
。 -
dropout
当不是None
时,我们将丢弃给定坐标的概率。 -
config
RunConfig
对象来配置运行时设置。 -
warm_start_from
检查点的字符串文件路径以进行热启动,或WarmStartSettings
对象以完全配置热启动。如果提供了字符串文件路径而不是WarmStartSettings
,则所有权重都是热启动的,并且假定词汇表和张量名称未更改。 -
batch_norm
是否在每个隐藏层之后使用批量归一化。
属性
-
config
-
export_savedmodel
-
model_dir
-
model_fn
返回绑定到self.params
的model_fn
。 -
params
例子:
sparse_feature_a = sparse_column_with_hash_bucket(...)
sparse_feature_b = sparse_column_with_hash_bucket(...)
sparse_feature_a_emb = embedding_column(sparse_id_column=sparse_feature_a,
...)
sparse_feature_b_emb = embedding_column(sparse_id_column=sparse_feature_b,
...)
estimator = tf.estimator.DNNEstimator(
head=tf.estimator.MultiLabelHead(n_classes=3),
feature_columns=[sparse_feature_a_emb, sparse_feature_b_emb],
hidden_units=[1024, 512, 256])
# Or estimator using the ProximalAdagradOptimizer optimizer with
# regularization.
estimator = tf.estimator.DNNEstimator(
head=tf.estimator.MultiLabelHead(n_classes=3),
feature_columns=[sparse_feature_a_emb, sparse_feature_b_emb],
hidden_units=[1024, 512, 256],
optimizer=tf.compat.v1.train.ProximalAdagradOptimizer(
learning_rate=0.1,
l1_regularization_strength=0.001
))
# Or estimator using an optimizer with a learning rate decay.
estimator = tf.estimator.DNNEstimator(
head=tf.estimator.MultiLabelHead(n_classes=3),
feature_columns=[sparse_feature_a_emb, sparse_feature_b_emb],
hidden_units=[1024, 512, 256],
optimizer=lambda:tf.keras.optimizers.Adam(
learning_rate=tf.compat.v1.train.exponential_decay(
learning_rate=0.1,
global_step=tf.compat.v1.train.get_global_step(),
decay_steps=10000,
decay_rate=0.96))
# Or estimator with warm-starting from a previous checkpoint.
estimator = tf.estimator.DNNEstimator(
head=tf.estimator.MultiLabelHead(n_classes=3),
feature_columns=[sparse_feature_a_emb, sparse_feature_b_emb],
hidden_units=[1024, 512, 256],
warm_start_from="/path/to/checkpoint/dir")
# Input builders
def input_fn_train:
# Returns tf.data.Dataset of (x, y) tuple where y represents label's class
# index.
pass
def input_fn_eval:
# Returns tf.data.Dataset of (x, y) tuple where y represents label's class
# index.
pass
def input_fn_predict:
# Returns tf.data.Dataset of (x, None) tuple.
pass
estimator.train(input_fn=input_fn_train)
metrics = estimator.evaluate(input_fn=input_fn_eval)
predictions = estimator.predict(input_fn=input_fn_predict)
train
和 evaluate
的输入应具有以下特征,否则会出现 KeyError
:
- 如果
weight_column
不是None
,则具有key=weight_column
的特征,其值为Tensor
。 - 对于每个
column
在feature_columns
:- 如果
column
是CategoricalColumn
,则具有key=column.name
的特征,其value
是SparseTensor
。 - 如果
column
是WeightedCategoricalColumn
,则有两个特征:第一个具有key
id 列名,第二个具有key
权重列名。两个函数的value
必须是SparseTensor
。 - 如果
column
是DenseColumn
,则具有key=column.name
的特征,其value
是Tensor
。
- 如果
损失和预测输出由指定的头部确定。
相关用法
- Python tf.estimator.DNNLinearCombinedEstimator用法及代码示例
- Python tf.estimator.DNNClassifier用法及代码示例
- Python tf.estimator.DNNLinearCombinedClassifier用法及代码示例
- Python tf.estimator.DNNLinearCombinedRegressor用法及代码示例
- Python tf.estimator.DNNRegressor用法及代码示例
- Python tf.estimator.TrainSpec用法及代码示例
- Python tf.estimator.LogisticRegressionHead用法及代码示例
- Python tf.estimator.MultiHead用法及代码示例
- Python tf.estimator.PoissonRegressionHead用法及代码示例
- Python tf.estimator.WarmStartSettings用法及代码示例
- Python tf.estimator.experimental.stop_if_lower_hook用法及代码示例
- Python tf.estimator.RunConfig用法及代码示例
- Python tf.estimator.MultiLabelHead用法及代码示例
- Python tf.estimator.experimental.stop_if_no_increase_hook用法及代码示例
- Python tf.estimator.BaselineEstimator用法及代码示例
- Python tf.estimator.Estimator用法及代码示例
- Python tf.estimator.experimental.LinearSDCA用法及代码示例
- Python tf.estimator.experimental.RNNClassifier用法及代码示例
- Python tf.estimator.experimental.make_early_stopping_hook用法及代码示例
- Python tf.estimator.LinearRegressor用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.estimator.DNNEstimator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。