Machine-Learning-Collection
Machine-Learning-Collection copied to clipboard
Number Parameters EfficientNet-B0
Hey Aladdin, thanks for the awesome YouTube videos.
I was checking the implementation of EfficientNet that you provided, and I noticed that in the final example, the total number of parameters for EfficientNet-B0 is 14,047,366.
Is this correct? According to Table 2 of the original EfficientNet paper, I thought that Version B0 was supposed to have 5.3M parameters. Thanks in advance,
PS. In order to calculate the total number of parameters, I inserted the following line of code into the test() function:
print(f'Total Number of Parameters: {sum( p.numel() for p in model.parameters() if p.requires_grad ):,}')
Opened a new issue defining why this is happening https://github.com/aladdinpersson/Machine-Learning-Collection/issues/77
@MaxVanDijck Thanks for the feedback.