Files
openvino/docs/ops/convolution/BinaryConvolution_1.md
Nikolay Tyukaev ef45b5da8d Doc Migration (master) (#1377)
* Doc Migration from Gitlab (#1289)

* doc migration

* fix

* Update FakeQuantize_1.md

* Update performance_benchmarks.md

* Updates graphs for FPGA

* Update performance_benchmarks.md

* Change DL Workbench structure (#1)

* Changed DL Workbench structure

* Fixed tags

* fixes

* Update ie_docs.xml

* Update performance_benchmarks_faq.md

* Fixes in DL Workbench layout

* Fixes for CVS-31290

* [DL Workbench] Minor correction

* Fix for CVS-30955

* Added nGraph deprecation notice as requested by Zoe

* fix broken links in api doxy layouts

* CVS-31131 fixes

* Additional fixes

* Fixed POT TOC

* Update PAC_Configure.md

PAC DCP 1.2.1 install guide.

* Update inference_engine_intro.md

* fix broken link

* Update opset.md

* fix

* added opset4 to layout

* added new opsets to layout, set labels for them

* Update VisionAcceleratorFPGA_Configure.md

Updated from 2020.3 to 2020.4

Co-authored-by: domi2000 <domi2000@users.noreply.github.com>
2020-07-20 17:36:08 +03:00

1.4 KiB

BinaryConvolution

Versioned name: BinaryConvolution-1

Category: Convolution

Short description: BinaryConvolution convolution with binary weights, binary input and integer output

Attributes:

The operation has the same attributes as a regular Convolution layer and several unique attributes that are listed below:

  • mode

    • Description: mode defines how input tensor 0/1 values and weights 0/1 are interpreted as real numbers and how the result is computed.
    • Range of values:
      • xnor-popcount
    • Type: string
    • Default value: None
    • Required: yes
  • pad_value

    • Description: pad_value is a floating-point value used to fill pad area.
    • Range of values: a floating-point number
    • Type: float
    • Default value: None
    • Required: yes

Inputs:

  • 1: ND tensor with N >= 3, containing integer, float or binary values; filled with 0/1 values of any appropriate type. 0 means -1, 1 means 1 for mode="xnor-popcount". Required.

  • 2: ND tensor with N >= 3 that represents convolutional kernel filled by integer, float or binary values; filled with 0/1 values. 0 means -1, 1 means 1 for mode="xnor-popcount". Required.

Outputs:

  • 1: output tensor containing float values. Required.