Monaen's Wiki
Tensorflow Tricks
2016-03-13
Get Info
1
2
3
## get tensor shape information
x.get_shape().as_list()
# print [55000, 28, 28]
Training Tricks
Dropout
should only be introduced during training, not evaluation, otherwise your evaluation results would be stochastic as well.
prev
Home
next
▲