Zekun Li

Results 3 comments of Zekun Li

I have the same question. However when I do `x/128. - 1.` on the sample data, the result doesn't match with the given `.npy`

@egg347 That dimension corresponds to batch size.

It's RGB, not BGR. You can verify it by displaying the sample data via matplotlib.pyplot ``` import numpy as np data = np.load('v_CricketShot_g04_c01_rgb.npy') data = data[0] print data.shape print np.min(data)...