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
I dont really understand why this is happened since the code for this model is basically same with the other versions but using different parameters in width_coefficient,depth_coefficient,default_resolution,dropout_rate
The text was updated successfully, but these errors were encountered:
So I did some digging, and it looks like this is not ready for use yet. First of all, there is an error when calculating the drop_ratehere. The default value of drop_connect_rate will return a drop_rate of 1. You can get around this by calling efficientnetL2 with the parameter drop_connect_rate=0.05. However, there will be new errors when the weights for L2 are downloaded.
In the weights file, there is no key for efficientnet-l2. Checking the reference to the weights download release, you can see that there is indeed no weights for L2.
Basically, EfficientNetL2 does not seem to be implemented, nor are there weights for it yet.
Hello,
it seems that the efficientnetL2 is having problem
i tried to load model but i got an error for both imagenet and noisy student checkpoint
the error message is something like this (i deleted some of them for simplicity)
'ValueError: rate must be a scalar tensor or a float in the range [0, 1), got 1'
You can check the code here
https://colab.research.google.com/drive/1IyKFQut8q23jKeGOgXzSmn4e2qKGTyzl
I dont really understand why this is happened since the code for this model is basically same with the other versions but using different parameters in width_coefficient,depth_coefficient,default_resolution,dropout_rate
The text was updated successfully, but these errors were encountered: