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
Hello yinbo,
I have a question about the meaning of data_norm in train configuration file.I guess inp,gt mean input,ground-truth respectively.But what is the meaning of sub:[0.5] and div:[0.5]?
data_norm:
inp: {sub: [0.5], div: [0.5]}
gt: {sub: [0.5], div: [0.5]}
Could you help me?Thank you!
The text was updated successfully, but these errors were encountered:
Those values are used to normalize the inputs, which are ground truths(gt) and low-resolution images(inp), of the model(feature extracter). As you can see, inp: {sub:[0.5], div: [0.5]} means the low-resolution images (which are actually tensors in this case) will be normalized as inp = (inp - sub)/div.
Hello yinbo,
I have a question about the meaning of data_norm in train configuration file.I guess inp,gt mean input,ground-truth respectively.But what is the meaning of sub:[0.5] and div:[0.5]?
data_norm:
inp: {sub: [0.5], div: [0.5]}
gt: {sub: [0.5], div: [0.5]}
Could you help me?Thank you!
The text was updated successfully, but these errors were encountered: