Skip to content

Commit

Permalink
Examples/SequenceClassification/SimpleExample/Python/SequenceClassifi…
Browse files Browse the repository at this point in the history
…cation.py: fix sys.path.append()
  • Loading branch information
mahilleb-msft committed Dec 22, 2016
1 parent 32a135b commit 8e8b5ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from cntk.ops import input_variable, cross_entropy_with_softmax, classification_error, sequence

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

# Creates the reader
Expand Down

0 comments on commit 8e8b5ff

Please sign in to comment.