Skip to content

Commit

Permalink
Fixing running
Browse files Browse the repository at this point in the history
  • Loading branch information
eldakms committed Jun 13, 2016
1 parent 5cd199d commit 624bbb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Scripts/txt2ctf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# A dictionary contains a single token per line. The zero-based line number becomes the numeric index of the token in the output CNTK text format file.

# Example usage:
# sed -e 's/^/<s> /' -e 's/$/ <\/s>/' < en.txt > en.txt1
# sed -e 's/^/<s> /' -e 's/$/ <\/s>/' < fr.txt > fr.txt1
# paste en.txt1 fr.txt1 | txt2ctf.py --map en.dict,fr.dict > en-fr.ctf
# sed -e 's/^<\/s> //' -e 's/ <\/s>$//' < en.txt > en.txt1
# sed -e 's/^<\/s> //' -e 's/ <\/s>$//' < fr.txt > fr.txt1
# paste en.txt1 fr.txt1 | txt2ctf.py --map en.dict fr.dict > en-fr.ctf
#

import sys
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/ScriptTest/testcases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ dataDir: .

tags:
# running on linux BVT job in 'E' (Examples) leg
- bvt-e (build_sku == 'gpu')
- bvt-e (build_sku == 'gpu') and (device=='cpu') and (flavor=='release')
# running on linux Nightly job in 'E' (Examples) leg
- nightly-e (build_sku == 'gpu')
- nightly-e (build_sku == 'gpu') and (device=='cpu') and (flavor=='release')

testCases:
PyTest run must finish with error code 0 (outputs __COMPLETED__ in that case):
Expand Down

0 comments on commit 624bbb9

Please sign in to comment.