We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 505b9e4 commit 294a1b5Copy full SHA for 294a1b5
exp/inference/inference.py
@@ -6,7 +6,7 @@
6
import os
7
import sys
8
from collections import OrderedDict
9
-sys.path.append('../../')
+sys.path.append('./')
10
# PyTorch includes
11
import torch
12
from torch.autograd import Variable
inference.sh
@@ -0,0 +1 @@
1
+python exp/inference/inference.py --loadmodel ./data/pretrained_model/inference.pth --img_path ./img/messi.jpg --output_path ./img/ --output_name /output_file_name
networks/__init__.py
@@ -0,0 +1,3 @@
+from .deeplab_xception import *
2
+from .deeplab_xception_transfer import *
3
+from .deeplab_xception_universal import *
0 commit comments