Open Fish08042 opened 3 years ago
same question ,have you solved it ?
same question ,have you solved it ?
i havent~
Same problem here... @calmevtime Are there any missing files for the training code?
The block_composition function is obsolete. Please comment out the line and it should be fine.
Sent from my iPhone
On Dec 9, 2020, at 5:18 AM, Luyuan Wang notifications@github.com wrote:
Same problem here... @calmevtime Are there any missing files for the training code?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
The block_composition function is obsolete. Please comment out the line and it should be fine. …
Thank you for your kindly reply. However, there are multiple places require datasets.dct_resize
. For example, in cvfunctional.py
line 19:
from datasets.dct_resize.resize_dct_opencv import resize_dct
It seems that this function is necessary. What should I do to fix that?
same problem
class UpsampleDCT(object): def init(self, L=1, M=1, N=8, T=None, debug=False): self.L, self.M = L, M self.T = T self.N = N self.debug = debug
self.A1 = block_composition(L, N)
self.A2 = block_composition(M, N)
是否可以重新上传datasets.dct_resize文件,万分感谢
@calmevtime it seems the function "block_composition" is necessary in UpsampleDCT. would you please upload the dct_resize.py file, and also clarify the meaning of L, M, and N?
Has anyone figured out their own implementation of dct_resize?
hello! i find your code have this "from datasets.dct_resize.block_composition import block_composition",but i cant find "dct_resize"in datasets