I reviewed DQN implementation code (https://github.com/devsisters/DQN-tensorflow) and found out this code generate CNN
network with NCHW
format when using GPU
, NHWC
otherwise.
I wonder whether this is mendatory... I mean, is it ok to generate CNN
network with NHWC
format even if I used GPU?