You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Hello All, I'm having issues in defining the input size for fully connected layer after a choice of two convolution layers like the code bellow shows:
The convlution block:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello All, I'm having issues in defining the input size for fully connected layer after a choice of two convolution layers like the code bellow shows:
The convlution block:
self.pool2 =LayerChoice([
nn.AvgPool2d(kernel_size=2, stride=2),
nn.AvgPool2d(kernel_size=4, stride=2)
], label='pool2')
the layer block
feature = nni.choice('feature', [64, 128, 256])
self.fc1 = MutableLinear(50176, feature)
so the issue is defining the inputs of the mutable linear, since the inputs changes after every trail based on the search space.
Beta Was this translation helpful? Give feedback.
All reactions