Skip to content

Commit 294a1b5

Browse files
init
1 parent 505b9e4 commit 294a1b5

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

exp/inference/inference.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os
77
import sys
88
from collections import OrderedDict
9-
sys.path.append('../../')
9+
sys.path.append('./')
1010
# PyTorch includes
1111
import torch
1212
from torch.autograd import Variable

inference.sh

+1
Original file line numberDiff line numberDiff line change
@@ -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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .deeplab_xception import *
2+
from .deeplab_xception_transfer import *
3+
from .deeplab_xception_universal import *

0 commit comments

Comments
 (0)