uuleon

Results 3 comments of uuleon

update: reshape the tensor before BN seems working

`fc2 = tf.nn.dropout(xnor_gemm(fc1, Wb_2), self.keep_prob) fc2 = tf.reshape(fc2, [-1, self.n_hidden])` That is what i do to make it work. And i meet another problem, when matrix m * n multiply...

I have realized that some detail of your code match this paper, http://ai2-website.s3.amazonaws.com/publications/XNOR-Net.pdf. Am i right?