-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于测试的困惑 #26
Comments
Hi, for rgb2ycbcr function in Matlab, if the input is uint8 (0~255), YCBCR will be uint8, while if the input is a double, YCBCR will be double. The 255.0 division is just for 0,1 normalization, you can do without it. |
可是作normalization和不作nomalization的得到结果不一样呀,我做过测试,相差很多。 |
训练的时候input的数据必须是normalized,范围是0~1 不然输入的distribution差别太大 |
For super-resolution problem, batch_norm is not recommended because it normalizes the intensity level across samples in each batch. |
hi,Why did I encounter this problem? May I ask how did you do it in the test? I have consulted some solutions, but they are still useless. |
Hi,
对于下面的代码片段比较困惑,为什么在将rgb图片转换为ycbcr时要先除以255,最后为了得到y通道还要乘以255呢?
我不明白这有什么意义,按照矩阵运算,除以255然后乘以255.应该没差别才对。
但是事实是,您的做法似乎保证了非负。
打扰了。
The text was updated successfully, but these errors were encountered: