kritsg commited on
Commit
8b4019a
·
1 Parent(s): 37cf7da

changed to efficientnet_b0

Browse files
Files changed (1) hide show
  1. bayes/models.py +1 -1
bayes/models.py CHANGED
@@ -40,7 +40,7 @@ def get_xtrain(segs):
40
  def process_imagenet_get_model(data):
41
  """Gets wrapped imagenet model."""
42
  # Get the vgg16 model, used in the experiments
43
- model = models.efficientnet_b1(pretrained=True)
44
  model.eval()
45
  # model.cuda()
46
 
 
40
  def process_imagenet_get_model(data):
41
  """Gets wrapped imagenet model."""
42
  # Get the vgg16 model, used in the experiments
43
+ model = models.efficientnet_b0(pretrained=True)
44
  model.eval()
45
  # model.cuda()
46