layer_subtract: Layer that subtracts two inputs.

View source: R/layers-merge.R

layer_subtractR Documentation

Layer that subtracts two inputs.

Description

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

Usage

layer_subtract(inputs, ...)

Arguments

inputs

A input tensor, or list of two input tensors. Can be missing.

...

Unnamed args are treated as additional inputs. Named arguments are passed on as standard layer arguments.

Value

A tensor, the difference of the inputs. If inputs is missing, a keras layer instance is returned.

See Also

Other merge layers: layer_average(), layer_concatenate(), layer_dot(), layer_maximum(), layer_minimum(), layer_multiply()


keras documentation built on Aug. 16, 2023, 1:07 a.m.