Vuong02011996

Results 2 issues of Vuong02011996

` `img` = Image.open("/home/vuong/Downloads/worlds-largest-selfie.jpg") img = img.resize((640, 480), Image.BILINEAR) img_data = np.array(img) img_data = np.transpose(img_data, [2, 0, 1]) img_data = np.expand_dims(img_data, 0) mean_vec = np.array([0.485, 0.456, 0.406]) stddev_vec = np.array([0.229,...

Thannks Vladimir Iglovikov! Great works, but I only predict with single image by using `model.predict_jsons(image)`, how to use batch size in there?