Open kurnianggoro opened 4 years ago
Maybe related to this one #117
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_rate
here. 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.
What's the error involving drop_rate
? Has it been fixed?
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