YinZ-510

Results 3 comments of YinZ-510

@pavan4 Hi, I also want to train this network on on my own dataset, my input picuture size is 720x1280, but when I modify the mpii_datagen.py I don't know how...

Before using deform_conv_2d(),convert the input format to NCHW:tf.transpose(img, [0, 3, 1, 2]); And convert the function output to NHWC:tf.transpose(img, [0, 2, 3, 1]).

@wqz960 Hi, I also want to train this network on on my own dataset, my input picuture size is 720x1280, but I don't know how to set the scale and...