bryandlee / animegan2-pytorch

PyTorch implementation of AnimeGANv2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Changing model params?

bhughesshelton opened this issue · comments

Is there any way to change the parameters (kernel width, step size, padding), of the NN blocks defined in model.py?

Most of the parameters are fixed and hard coded, but you can still modify them on the source level if you want.

Thanks for the reply. Could you give me some details about how to edit those params on the source level? I tried to change several different of them (for example passing kernel_size=7 instead of kernel_size=3 into the ConvNormLReLU class), but all changes resulted in an error that the model was expecting the original value specifically.