-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Large images upscaling #185
Comments
I noticed that as well on the photo model. On anime model much less. I could imagine it has to do with the patch sizes used when training. Would be great to know if this can be improved. |
I think the fundamental problem is that there is no detail in the large image... waifu2x's default model(upconv_7) uses 15x15 fixed size filter to upscale. Probably it is too small to handle large detail of large images. resnet_14l in dev branch uses 29x29 filter, it may be improved somewhat. but resnet_14l is 4x slower than upconv_7 so I will not use it on the web service. |
benchmark result can be found at https://github.com/nagadomi/waifu2x/blob/dev/appendix/benchmark.md |
Thanks nagadomi, |
Using TTA option(with |
Will try that and also retraining if necessary. Could you give me some
ideas what I could look into when retraining and what variables play the
most important role in your opinion. How would you approach the problem?
…On 8 Jun 2017 10:56 p.m., "nagadomi" ***@***.***> wrote:
Using TTA option(with -tta 1 -tta_level 8) will improve the quality a
little. See #122 (comment)
<#122 (comment)>.
other ways are required retraining.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#185 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA3E0qo7awkbiOW1eaIs_45OQ9_tL5Qmks5sCF_ggaJpZM4NyVFR>
.
|
@nagadomi but got an error:
Is this model not complete currently ? How can I use this model? |
Sorry, it currently requires cudnn. After installing cudnn, it should work. |
Thanks,
|
Did you install cudnn.torch?
|
I reinstalled |
lua 5.2 issue is probably fixed at #174.
cudnn.torch has a branch for each cuDNN version(R1~R7).
(and cuDNN v4 is old?) |
@nagadomi The effective visual field of a neuron at the last layer should be the sum of half the kernel sizes of all previous neurons (plus its own size) in a regular convolutional neural network. If the network is somewhat deep, this should not be a concern. |
Hi, first of all, great work with waifu2x! It really gives outstanding results compared to other methods. Although, the difference is less obvious for larger images, for example starting at 1024x720 if I run bicubic upscaling and waifu2x, the results look too similar. I tried all the way up to 1920x1080 upscaled at 2x to 3940x2840. Here is what I think so far:
Has anyone encountered the same issue? It would be great if I can contribute to the project by training a new model or providing benchmarks.
The text was updated successfully, but these errors were encountered: