jiandandan001

Results 20 comments of jiandandan001

> 代码是在训练的,我在想会不会是有大量时间在读取训练图片,导致显卡利用率不高。我的训练集就是800张DIV2K,没有LR,请问这正确吗 > […](#) > ---Original--- From: "Jingyun ***@***.***> Date: Sun, Oct 17, 2021 00:58 AM To: ***@***.***>; Cc: ***@***.******@***.***>; Subject: Re: [JingyunLiang/MANet] hello (#9) I didn't have such a...

> I change the dimensions from `1,3,H,W` to `3,1,H,W` because this way the first layer is `1,Cout,k,k rather then `3,Cout,k,k`. The reason this is important is because I want a...

also the parameters for 4x downsampling

> The dataset was generated with some randomness. > You can either take what we generated or generate them yourself but it will not be identical. Thanks. Could you tell...

Thanks. I have solved this problem via revising the 'util.py' as follows. original: sio.savemat(os.path.join(conf.output_dir_path, '%s_kernel_x2.mat' % conf.img_name), {'Kernel': k_2}) revised: dirname1, filename1 = os.path.split(conf.img_name) sio.savemat(os.path.join(conf.output_dir_path, '%s_kernel_x2.mat' % filename1), {'Kernel': k_2})

I have a question about the speed. In my testing, the ZSSR module is very slow. It seems that this part is performed on CPU. How can run it on...

> ZSSR is not my code and it seems to run for me on GPU. > It does take relatively long when it is provided with an estimated kernel (~3-4...

I have the same problem in the testing phase, even i use the '--chop' option. Do you know the reason? I use 1 1080 ti GPU. Thanks

I re-run this code successfully with the Linux system. However, i have another question. For image deblocking, I use the official model provided by you. I found that the results...