-
Notifications
You must be signed in to change notification settings - Fork 8
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
is this model can be used to do image deburing ? #1
Comments
没问题,效果也是很好的。
…----------
该邮件从移动设备发送
--------------原始邮件--------------
发件人:"sun ***@***.***>;
发送时间:2024年2月18日(星期天) 上午9:59
收件人:"zzr-idam/UVM-Net" ***@***.***>;
抄送:"Subscribed ***@***.***>;
主题:[zzr-idam/UVM-Net] is this model can be used to do image deburing ? (Issue #1)
-----------------------------------
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
HI,how to test with my custom blurry image? |
We provide the training code, first this model should be trained on your customized dataset and then tested. |
There is no need to reduce the number of layers in the UNet, my basic module has three SSMs, you can remove the one that is the most computationally intensive (after reshaping); besides, you can conduct a ReLU or Sigmoid on the output of the UNet and do a residual or multiplication operation with the original input image. output = nn.ReLU()(UNet(x)) output = output * x - output + 1 // AODNet equation return output |
No description provided.
The text was updated successfully, but these errors were encountered: