具有用戶指定頭部的 TensorFlow RNN 模型的 Estimator。
警告:不建議將估算器用於新代碼。估算器運行tf.compat.v1.Session-style 代碼更難正確編寫,並且可能出現意外行為,尤其是與 TF 2 代碼結合使用時。估算器確實屬於我們的兼容性保證,但不會收到除安全漏洞以外的任何修複。見遷移指南詳情。
繼承自:Estimator
用法
tf.estimator.experimental.RNNEstimator(
head, sequence_feature_columns, context_feature_columns=None, units=None,
cell_type=USE_DEFAULT, rnn_cell_fn=None, return_sequences=False, model_dir=None,
optimizer='Adagrad', config=None
)
參數
-
head
Head
實例。這指定要優化的模型的輸出和損失函數。 -
sequence_feature_columns
包含表示順序輸入的FeatureColumn
的可迭代對象。集合中的所有項目都應該是序列列(例如sequence_numeric_column
)或從一個列構造(例如embedding_column
與sequence_categorical_column_*
作為輸入)。 -
context_feature_columns
包含用於上下文輸入的FeatureColumn
的迭代。這些列表示的數據將在每個時間步被複製並提供給 RNN。這些列必須是派生自DenseColumn
的類的實例,例如numeric_column
,而不是順序變體。 -
units
每個 RNN 層的整數個隱藏單元的迭代。如果設置,還必須指定cell_type
並且rnn_cell_fn
必須是None
。 -
cell_type
生成 RNN 單元的類或指定單元類型的字符串。支持的字符串是:'simple_rnn'
,'lstm'
和'gru'
。如果設置,還必須指定units
並且rnn_cell_fn
必須是None
。 -
rnn_cell_fn
一個返回 RNN 單元實例的函數,該實例將用於構造 RNN。如果設置,則無法設置units
和cell_type
。這適用於需要在units
和cell_type
之外進行額外自定義的高級用戶。請注意,堆疊 RNN 需要tf.keras.layers.StackedRNNCells
。 -
return_sequences
一個布爾值,指示是返回輸出序列中的最後一個輸出,還是返回完整序列。 -
model_dir
保存模型參數、圖形等的目錄。這也可用於將檢查點從目錄加載到估計器中,以繼續訓練先前保存的模型。 -
optimizer
tf.Optimizer
的實例或指定優化器類型的字符串。默認為 Adagrad 優化器。 -
config
RunConfig
對象來配置運行時設置。
拋出
-
ValueError
如果units
,cell_type
和rnn_cell_fn
不兼容。
屬性
-
config
-
model_dir
-
model_fn
返回綁定到self.params
的model_fn
。 -
params
例子:
token_sequence = sequence_categorical_column_with_hash_bucket(...)
token_emb = embedding_column(categorical_column=token_sequence, ...)
estimator = RNNEstimator(
head=tf.estimator.RegressionHead(),
sequence_feature_columns=[token_emb],
units=[32, 16], cell_type='lstm')
# Or with custom RNN cell:
def rnn_cell_fn(_):
cells = [ tf.keras.layers.LSTMCell(size) for size in [32, 16] ]
return tf.keras.layers.StackedRNNCells(cells)
estimator = RNNEstimator(
head=tf.estimator.RegressionHead(),
sequence_feature_columns=[token_emb],
rnn_cell_fn=rnn_cell_fn)
# Input builders
def input_fn_train:# returns x, y
pass
estimator.train(input_fn=input_fn_train, steps=100)
def input_fn_eval:# returns x, y
pass
metrics = estimator.evaluate(input_fn=input_fn_eval, steps=10)
def input_fn_predict:# returns x, None
pass
predictions = estimator.predict(input_fn=input_fn_predict)
train
和 evaluate
的輸入應具有以下特征,否則會出現 KeyError
:
- 如果頭部的
weight_column
不是None
,則具有key=weight_column
的特征,其值為Tensor
。 - 對於每個
column
在sequence_feature_columns
:- 具有
key=column.name
的函數,其value
是SparseTensor
。
- 具有
- 對於每個
column
在context_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.experimental.RNNClassifier用法及代碼示例
- Python tf.estimator.experimental.stop_if_lower_hook用法及代碼示例
- Python tf.estimator.experimental.stop_if_no_increase_hook用法及代碼示例
- Python tf.estimator.experimental.LinearSDCA用法及代碼示例
- Python tf.estimator.experimental.make_early_stopping_hook用法及代碼示例
- Python tf.estimator.experimental.stop_if_higher_hook用法及代碼示例
- Python tf.estimator.experimental.InMemoryEvaluatorHook用法及代碼示例
- Python tf.estimator.experimental.stop_if_no_decrease_hook用法及代碼示例
- Python tf.estimator.TrainSpec用法及代碼示例
- Python tf.estimator.LogisticRegressionHead用法及代碼示例
- Python tf.estimator.MultiHead用法及代碼示例
- Python tf.estimator.PoissonRegressionHead用法及代碼示例
- Python tf.estimator.WarmStartSettings用法及代碼示例
- Python tf.estimator.RunConfig用法及代碼示例
- Python tf.estimator.MultiLabelHead用法及代碼示例
- Python tf.estimator.BaselineEstimator用法及代碼示例
- Python tf.estimator.DNNLinearCombinedEstimator用法及代碼示例
- Python tf.estimator.Estimator用法及代碼示例
- Python tf.estimator.LinearRegressor用法及代碼示例
- Python tf.estimator.LinearEstimator用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.estimator.experimental.RNNEstimator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。