Closed ilkarman closed 6 years ago
I Added feature for supporting NCHW. [Support NCHW] Please check if it helps you. Thank you.
This is perfect thank you! Out of interest I compared to training time of Keras(TF) model and this TF-one was 17min10s and Keras was 18min30s for 5 epochs on 4xP100s (with synthetic data).
I just also wanted to test if passing fused=True
to batchnorm would speed up performance
As I know, if possible, slim use "fused batchnorm" by default. If fused parameter is passed as None, slim implementation set it to True. slim batch_norm
Pudae, apologies you mentioned this in another issue but I couldn't get it work.
If I create symbol like so:
densenet.densenet_arg_scope(data_format='NCHW')
I get
If I do this:
Tensorflow just seems to ignore it and use NHWC