Spaces:
Runtime error
Runtime error
changed to efficientnet_b0
Browse files- 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.
|
| 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 |
|