📜  减去层 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:03.145000             🧑  作者: Mango

代码示例1
tf.keras.layers.Subtract(**kwargs)

# Layer that subtracts two inputs.

# It takes as input a list of tensors of size 2
# both of the same shape, and returns a single tensor, (inputs[0] - inputs[1])
# also of the same shape.