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
In the 166th line of train_search.py,
you used 6 arguments for NetworkCIFAR like
-> model = NetworkCIFAR(36, CIFAR_CLASSES, 20, True, model.genotype(), args.drop_path_prob)
It makes an error because NetworkCIFAR takes only 5 arguments except self.
So, I think an argument should be added at NetworkCIFAR to define self.drop_path_prob (also at NetworkImageNet)
The text was updated successfully, but these errors were encountered:
In the 166th line of train_search.py,
you used 6 arguments for NetworkCIFAR like
-> model = NetworkCIFAR(36, CIFAR_CLASSES, 20, True, model.genotype(), args.drop_path_prob)
It makes an error because NetworkCIFAR takes only 5 arguments except self.
So, I think an argument should be added at NetworkCIFAR to define self.drop_path_prob (also at NetworkImageNet)
The text was updated successfully, but these errors were encountered: