Skip to content

Commit

Permalink
fixing comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fruttasecca committed Aug 6, 2018
1 parent cf0b10d commit 6329d37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pycrfsuite/atis_run.py
Expand Up @@ -265,7 +265,7 @@ def sent2tokens(sent):
print("usage is:\n ./atis_run.py train_file test_file, or ./movies_run.py train_file test_file w2v_pickle "
"c2v_pickle w2v embeddings and char embeddings")
print("Train and test files are in 1 word per line format, w2v and c2v are pickles mapping a word or a "
"character to an index")
"character to its google embedding vector or char embedding.")
exit()
train, test = sys.argv[1], sys.argv[2]
use_embeddings = len(sys.argv) == 5
Expand Down
2 changes: 1 addition & 1 deletion src/pycrfsuite/movies_run.py
Expand Up @@ -252,7 +252,7 @@ def sent2tokens(sent):
print("usage is:\n ./movies_run.py train_file test_file, or ./movies_run.py train_file test_file w2v_pickle "
"c2v_pickle w2v embeddings and char embedding)")
print("Train and test files are in 1 word per line format, w2v and c2v are pickles mapping a word or a "
"character to an index")
"character to its google embedding vector or char embedding.")
exit()
train, test = sys.argv[1], sys.argv[2]
use_embeddings = len(sys.argv) == 5
Expand Down

0 comments on commit 6329d37

Please sign in to comment.