keras-lipschitz-networks
keras-lipschitz-networks copied to clipboard
Can this method be used for Conv3d layer?
Can this method be used for Conv3d layer and enforce Lipschitz Continuity? And how to do it? Thank you very much!
Yes it can. It might be a bit hard to think about how to do it for L1 and L_\infty norms, but for the L2 norm you can just adapt the lines 102-110 of arch/lipschitz.py
and replace the K.conv2d
and K.conv2d_transpose
operations with their conv3d versions.
Thank you very much!