-
Notifications
You must be signed in to change notification settings - Fork 69
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
Explaining HyperConvFromDense #57
Comments
|
You can think of the HyperConvFromDense layer as a functional equivalent to a regular Conv layer, with the main exception that its internal weights are predicted based on the values of a secondary input (we'll call it 'h'). For example, a normal convolution layer, with input x and output y might be configured like: y = Conv(x) while the corresponding hyper-convolution would be configured like: y = HyperConvFromDense([x, h]) This enables the layer to perform a convolutional operation dependent on h. In HyperMorph, h is the output of a small linear network, conditioned on some input hyperparameter, like lambda. Another way to think about the HyperConvFromDense layer is that it's really doing two steps under the hood - something like: conv = predict_conv_weights(h)
y = conv(x) First it predicts the convolutional kernel and bias weights given h, then it uses those weights to convolve x. |
@ahoopes I have checked the hypernetwork in this notebook From my understanding hypernetwork is a network train the weights and biases in the inference network. Only network weights in the hypernetwork will be updated during backpropagation. During inference the network weights will generated according to user inputs (in hypermorph the input is the regularization lambdas. Theoractically the hypernetwork can be a RNN or CNN to reduce trainable parameters to reduce model size. Would this be possible to use hyperconv values without using dense layer as the final output? I have such concern because for deeper inference networks the number of hypernetwork output would also increase. |
I at least don't have a super full grasp of overfitting in hypernetworks
(@ahoopes might know more?) but @jackyko1991 if you mean because of overfitting concerns,
I don't think there is an overfitting
issue here (Regardless of size) since you won't validate on
hyperparameter values outside the range you use during training.
|
In Hypermoprh they combined a hyper network with voxelmorph for auto-hyperparamter training.
From their source code I have traced that they use "HyperConvFromDense" layer from neurite. Can you explain the concept behind this layer? Thanks.
The text was updated successfully, but these errors were encountered: