Skip to content

Commit 8e8b5ff

Browse files
committed
Examples/SequenceClassification/SimpleExample/Python/SequenceClassification.py: fix sys.path.append()
1 parent 32a135b commit 8e8b5ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Examples/SequenceClassification/SimpleExample/Python/SequenceClassification.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from cntk.ops import input_variable, cross_entropy_with_softmax, classification_error, sequence
1414

1515
abs_path = os.path.dirname(os.path.abspath(__file__))
16-
sys.path.append(os.path.join(abs_path, "..", "..", "..", "_PyTests", "common"))
16+
sys.path.append(os.path.join(abs_path, "..", "..", "..", "common"))
1717
from nn import LSTMP_component_with_self_stabilization, embedding, linear_layer, print_training_progress
1818

1919
# Creates the reader

0 commit comments

Comments
 (0)