@jeremy a little bit stuck. How do I look at the bounding predicted bounded boxes after using learn.fit? Also, how do I pass in an individual image using this method.
Tried this method that worked on the classification task, but didn’t seem to work here.
trn_tfms, val_tfms = tfms_from_model(arch, sz)
img = Image.open(PATH+fn)
im = trn_tfms(np.array(img))
preds = learn.predict_array(im[None])
y = np.argmax(preds)
data.classes[y]
