forked from ppwwyyxx/speaker-recognition
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python2 | ||
# -*- coding: UTF-8 -*- | ||
# File: speaker-recognition.py | ||
# Date: Tue Jun 10 17:08:13 2014 +0800 | ||
# Date: Wed Jun 11 11:15:00 2014 +0800 | ||
# Author: Yuxin Wu <[email protected]> | ||
|
||
import argparse | ||
|
@@ -20,7 +20,8 @@ | |
def get_args(): | ||
desc = "Speaker Recognition Command Line Tool" | ||
epilog = """ | ||
Note that wildcard inputs should be *quoted*, and they will be sent to glob | ||
Wav files in each input directory will be labeled as the basename of the directory. | ||
Note that wildcard inputs should be *quoted*, and they will be sent to glob module. | ||
Examples: | ||
Train: | ||
|
@@ -33,7 +34,7 @@ def get_args(): | |
formatter_class=argparse.RawDescriptionHelpFormatter) | ||
|
||
parser.add_argument('-t', '--task', | ||
help='Task to do. Either "enroll", "predict"', | ||
help='Task to do. Either "enroll" or "predict"', | ||
required=True) | ||
|
||
parser.add_argument('-i', '--input', | ||
|