You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the data loading stage, your image normalization is img = (img/255.)*2 - 1 instead of img = img/255.. This maps the value to [-1; 1] range. Is there a reason you want to achieve this?
The text was updated successfully, but these errors were encountered:
In the data loading stage, your image normalization is
img = (img/255.)*2 - 1
instead ofimg = img/255.
. This maps the value to [-1; 1] range. Is there a reason you want to achieve this?The text was updated successfully, but these errors were encountered: