Skip to content

Commit d0ce0db

Browse files
committed
(fix) path check code addition
1 parent b4ab748 commit d0ce0db

7 files changed

+10
-6
lines changed

testcodes/test_deconv_modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828
import tensorflow as tf
2929

testcodes/test_inceptionv2_tfslim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828

2929
import tensorflow as tf

testcodes/test_inverted_bottleneck_tfslim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828
import tensorflow as tf
2929

testcodes/test_linear_bottleneck_tfslim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828
import tensorflow as tf
2929

testcodes/test_residual_tfslim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828

2929
import tensorflow as tf

testcodes/test_separable_conv2d_tfslim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from os import getcwd
2424
import sys
2525
sys.path.insert(0,getcwd())
26-
sys.path.insert(0,getcwd()+'/testcodes')
26+
print ('getcwd() = %s' % getcwd())
2727

2828

2929
import tensorflow as tf

testcodes/test_util.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
from __future__ import division
1717
from __future__ import print_function
1818

19+
# from os import getcwd
20+
# import sys
21+
# sys.path.insert(0,getcwd())
22+
# print ('getcwd() at test_util.py = %s' % getcwd())
1923

2024
import numpy as np
2125
import tensorflow as tf

0 commit comments

Comments
 (0)