重複輸入 n 次。
用法
tf.keras.layers.RepeatVector(
n, **kwargs
)
參數
-
n
整數,重複因子。
例子:
model = Sequential()
model.add(Dense(32, input_dim=32))
# now:model.output_shape == (None, 32)
# note:`None` is the batch dimension
model.add(RepeatVector(3))
# now:model.output_shape == (None, 3, 32)
輸入形狀:形狀 (num_samples, features)
的二維張量。輸出形狀:形狀 (num_samples, n, features)
的 3D 張量。
相關用法
- Python tf.keras.layers.Reshape用法及代碼示例
- Python tf.keras.layers.ReLU用法及代碼示例
- Python tf.keras.layers.RNN用法及代碼示例
- Python tf.keras.layers.RandomZoom用法及代碼示例
- Python tf.keras.layers.InputLayer用法及代碼示例
- Python tf.keras.layers.serialize用法及代碼示例
- Python tf.keras.layers.Dropout用法及代碼示例
- Python tf.keras.layers.maximum用法及代碼示例
- Python tf.keras.layers.LayerNormalization用法及代碼示例
- Python tf.keras.layers.Conv2D用法及代碼示例
- Python tf.keras.layers.Multiply用法及代碼示例
- Python tf.keras.layers.Activation用法及代碼示例
- Python tf.keras.layers.Conv1D用法及代碼示例
- Python tf.keras.layers.experimental.preprocessing.PreprocessingLayer.adapt用法及代碼示例
- Python tf.keras.layers.CategoryEncoding用法及代碼示例
- Python tf.keras.layers.subtract用法及代碼示例
- Python tf.keras.layers.experimental.preprocessing.HashedCrossing用法及代碼示例
- Python tf.keras.layers.Subtract用法及代碼示例
- Python tf.keras.layers.ZeroPadding3D用法及代碼示例
- Python tf.keras.layers.MaxPool3D用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.layers.RepeatVector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。