Eddie Huang
Eddie Huang
rather than optimizing over the pixel values, add a wrapper for edits such as contrast, brightness, etc
- Sharpness - Color scheme - Saturation - Brightness - Contrast
Hi in the Conv2d with WS, you computed the mean as `weight_mean = weight.mean(dim=1, keepdim=True).mean(dim=2, keepdim=True).mean(dim=3, keepdim=True)` why don't you do something like `weight_mean = weight.view(weight.shape[0], -1).mean(dim=1).view(-1, 1, 1, 1)`...
For CS 225, students may say something like "segfault" or "code does not run". This violates our policy of having topic specific descriptions and proof of nontrivial work put into...