Hello all, I am new to machine learning and really liked the sound of this challenge. The fact that there's a starter notebook helped as well. I'm trying to expand my model so that it looks at multiple pixels rather than just one sampled pixel from each image, but I'm struggling with this. Does anyone have any advice? I'm a beginner in this and am just getting my feet wet.
in function process_im
I chabged 2 lines
vs = arr[idxs, 20, 20] # Sample the im at the center point - here expand 20 to range
for bn, v in zip(bns, vs[0]): # and from vs extract necessury value (mean, max etc)
Thanks, this is a good idea!