Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 703 Bytes

EqualLayer.md

File metadata and controls

35 lines (21 loc) · 703 Bytes

CEqualLayer Class

This class implements a layer that implements elentwise comparison between 2 inputs

equal[i] = first_input[i] == second_input[i] ? 1 : 0;

Settings

The layer has no settings.

Trainable parameters

The layer has no trainable parameters.

Inputs

Layer accepts any pair of blobs of the same size and data type.

Outputs

The single output returns an integer blob of the same size where each element contains the result of the comparison of 2 input blobs.