Unverified Commit 2dcac825 authored by wi's avatar wi Committed by GitHub
Browse files

Fix incorrect model name that breaks semantic segmentation demo (#284)

parent c9d4a46a
...@@ -2,7 +2,7 @@ import torch ...@@ -2,7 +2,7 @@ import torch
import encoding import encoding
# Get the model # Get the model
model = encoding.models.get_model('fcn_resnet50_ade', pretrained=True).cuda() model = encoding.models.get_model('fcn_resnet50s_ade', pretrained=True).cuda()
model.eval() model.eval()
# Prepare the image # Prepare the image
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment