Skip to content

Commit

Permalink
Update evaluation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
neccam committed Dec 13, 2017
1 parent 8658f4e commit 2d652eb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions evaluation.py
Expand Up @@ -6,15 +6,21 @@
import tensorflow as tf
import utils
import time

from deephand import DeepHand
import sys
import platform

# Define Code and Data Path
# code_path: where the classify.py resides
# data_path: where the images folder of eval set resides
code_path = '<ABSOLUTE_PATH_OF_THE_CODE>'
data_path = '<ABSOLUTE_PATH_OF_THE_DATA>'

# For Windows
if platform.system() == 'Windows':
sys.path.append(code_path+'deephand')

from deephand import DeepHand

# Define Batch Size
batch_size = 8;

Expand Down

0 comments on commit 2d652eb

Please sign in to comment.