(w, (nh, nw), save_path=None)
| 24 | return img |
| 25 | |
| 26 | def grayscale_weight_grid_vis(w, (nh, nw), save_path=None): |
| 27 | w = (w+w.min())/(w.max()-w.min()) |
| 28 | return grayscale_grid_vis(w, (nh, nw), save_path=save_path) |
nothing calls this directly
no test coverage detected