用法
get_weights()
返回
- 將值加權為 NumPy 數組的列表。
返回層的當前權重,作為 NumPy 數組。
層的權重表示層的狀態。此函數將與該層關聯的可訓練和不可訓練權重值作為 NumPy 數組列表返回,該數組又可用於將狀態加載到類似參數化的層中。
例如,Dense
層返回兩個值的列表:內核矩陣和偏置向量。這些可用於設置另一個 Dense
層的權重:
layer_a = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(1.))
a_out = layer_a(tf.convert_to_tensor([[1., 2., 3.]]))
layer_a.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
layer_b = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(2.))
b_out = layer_b(tf.convert_to_tensor([[10., 20., 30.]]))
layer_b.get_weights()
[array([[2.],
[2.],
[2.]], dtype=float32), array([0.], dtype=float32)]
layer_b.set_weights(layer_a.get_weights())
layer_b.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
相關用法
- Python tf.nn.RNNCellDropoutWrapper.set_weights用法及代碼示例
- Python tf.nn.RNNCellDropoutWrapper.add_metric用法及代碼示例
- Python tf.nn.RNNCellDropoutWrapper.add_loss用法及代碼示例
- Python tf.nn.RNNCellDropoutWrapper用法及代碼示例
- Python tf.nn.RNNCellDeviceWrapper.set_weights用法及代碼示例
- Python tf.nn.RNNCellDeviceWrapper.get_weights用法及代碼示例
- Python tf.nn.RNNCellDeviceWrapper用法及代碼示例
- Python tf.nn.RNNCellDeviceWrapper.add_loss用法及代碼示例
- Python tf.nn.RNNCellDeviceWrapper.add_metric用法及代碼示例
- Python tf.nn.RNNCellResidualWrapper.set_weights用法及代碼示例
- Python tf.nn.RNNCellResidualWrapper.add_loss用法及代碼示例
- Python tf.nn.RNNCellResidualWrapper.get_weights用法及代碼示例
- Python tf.nn.RNNCellResidualWrapper.add_metric用法及代碼示例
- Python tf.nn.RNNCellResidualWrapper用法及代碼示例
- Python tf.nn.embedding_lookup_sparse用法及代碼示例
- Python tf.nn.dropout用法及代碼示例
- Python tf.nn.gelu用法及代碼示例
- Python tf.nn.embedding_lookup用法及代碼示例
- Python tf.nn.local_response_normalization用法及代碼示例
- Python tf.nn.scale_regularization_loss用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.nn.RNNCellDropoutWrapper.get_weights。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。