Skip to content

Commit

Permalink
Add backwards compatibility of command line args from preceding commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Lambert committed Jul 30, 2017
1 parent d29fd0a commit 0dbc861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asr_evaluation/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_parser():
help='Print all individual sentences that contain errors.')
parser.add_argument('--head-ids', action='store_true',
help='Hypothesis and reference files have ids in the first token? (Kaldi format)')
parser.add_argument('--tail-ids', action='store_true',
parser.add_argument('-id', '--tail-ids', '--has-ids', action='store_true',
help='Hypothesis and reference files have ids in the last token? (Sphinx format)')
parser.add_argument('-c', '--confusions', action='store_true', help='Print tables of which words were confused.')
parser.add_argument('-p', '--print-wer-vs-length', action='store_true',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

version='2.0.0'
version='2.0.1'

setup(
name='asr_evaluation',
Expand Down

0 comments on commit 0dbc861

Please sign in to comment.