Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BinaryNet implementation in TensorFlow

I recently read a very interesting paper (http://arxiv.org/pdf/1602.02830v3.pdf) suggesting a method for training a CNN with weights and activations constrained to [-1,1]. This is highly beneficial from power/speed perspective.

There are implementations for the method in Torch and Theano publicly available in github: https://github.com/MatthieuCourbariaux/BinaryNet (Theano) https://github.com/itayhubara/BinaryNet (Torch)

I was wondering if the above method can be implemented in TensorFlow ? Has anyone tried implementing this?

like image 484
JonyK Avatar asked Aug 21 '16 12:08

JonyK


1 Answers

Take a look at the TensorFlow GitHub issue #1592. It tracks the progress of the current attempt to add support for binary networks in TensorFlow.

like image 99
Benoit Steiner Avatar answered Nov 12 '22 17:11

Benoit Steiner