tensorflow-vgg icon indicating copy to clipboard operation
tensorflow-vgg copied to clipboard

bug fixed on tf1.5

Open fortunechen opened this issue 6 years ago • 0 comments

1. tf.pack ---> tf.stack 2. tf.softmax_cross_entropy_with_logits(logits, onehot_labels, name='xentropy') ---> tf.softmax_cross_entropy_with_logits(logits=logits, labels=onehot_labels, name='xentropy') 3. add conv3_3 : net = L.conv(net, name="conv3_3", kh=3, kw=3, n_out=256)

fortunechen avatar Oct 12 '18 12:10 fortunechen