Learn R Programming

keras (version 0.3.5)

layer_concatenate: Layer that concatenates a list of inputs.

Description

It takes as input a list of tensors, all of the same shape expect for the concatenation axis, and returns a single tensor, the concatenation of all inputs.

Usage

layer_concatenate(inputs, axis = -1L)

Arguments

inputs

A list of input tensors (at least 2).

axis

Concatenation axis.

Value

A tensor, the concatenation of the inputs alongside axis axis.

See Also

Other merge layers: layer_add, layer_average, layer_dot, layer_maximum, layer_multiply