How to use Noisy Weights #514
-
After seeing many discussion i saw that people mentioned that they use "Noisy" Weights instead of "Image Net" Weights, how to initialise the noisy weights while creating a model ? for Efficient net Model? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @VpkPrasanna , it has been mentioned in the timm docs here https://rwightman.github.io/pytorch-image-models/models/noisy-student/. These weights have been ported from Google's official tensorflow weights and you could use You could also use |
Beta Was this translation helpful? Give feedback.
Hi @VpkPrasanna , it has been mentioned in the timm docs here https://rwightman.github.io/pytorch-image-models/models/noisy-student/.
These weights have been ported from Google's official tensorflow weights and you could use
tf_efficientnet_b0_ns
-tf_efficientnet_b7_ns
to useb0-b7
weights.You could also use
tf_efficientnet_l2_ns
ortf_efficientnet_l2_ns_475
in model name insidetimm.create_model
to use these pretrained weights.