Atwaman
Results
2
issues of
Atwaman
First of all, in load_dataset in data.py I have to make this change, coords = [(q, r) for q in range(coords_x) for r in range(coords_y)] to coords = [ (q,r)...
To avoid this error: in utils.py in modcrop(img, scale =3): add np.mod: if len(img.shape) ==3: h, w, _ = img.shape h = h - np.mod(h,scale) w = w - np.mod(w,...