but it gave TypeError: __init__() got an unexpected keyword argument 'model_size' error. I commented out the model_size parameter, but now it gives RuntimeError: Given groups=1, weight of size [96, 116, 1, 1], expected input[32, 32, 28, 28] to have 116 channels, but got 32 channels instead.
What is right way to train the model with MobileNetV2 or GhostNet?
Tried using #6, but it gives RuntimeError: The size of tensor a (1029) must match the size of tensor b (1045) at non-singleton dimension 1 error.
I have modified a config file to train the model with
MobileNetV2
backbone asbut it gave
TypeError: __init__() got an unexpected keyword argument 'model_size'
error. I commented out themodel_size
parameter, but now it givesRuntimeError: Given groups=1, weight of size [96, 116, 1, 1], expected input[32, 32, 28, 28] to have 116 channels, but got 32 channels instead
.What is right way to train the model with
MobileNetV2
orGhostNet
?Tried using #6, but it gives
RuntimeError: The size of tensor a (1029) must match the size of tensor b (1045) at non-singleton dimension 1
error.Full config file: