-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1509 from qingen/cluster
[vec] add clustering of vectors
- Loading branch information
Showing
4 changed files
with
1,083 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,8 @@ | |
Download: http://groups.inf.ed.ac.uk/ami/download/ | ||
Prepares metadata files (JSON) from manual annotations "segments/" using RTTM format (Oracle VAD). | ||
Authors | ||
* [email protected] (Qingen ZHAO) 2022 | ||
""" | ||
|
||
import argparse | ||
import glob | ||
import json | ||
|
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 |
---|---|---|
|
@@ -15,10 +15,6 @@ | |
AMI corpus contained 100 hours of meeting recording. | ||
This script returns the standard train, dev and eval split for AMI corpus. | ||
For more information on dataset please refer to http://groups.inf.ed.ac.uk/ami/corpus/datasets.shtml | ||
Authors | ||
* [email protected] (Qingen ZHAO) 2022 | ||
""" | ||
|
||
ALLOWED_OPTIONS = ["scenario_only", "full_corpus", "full_corpus_asr"] | ||
|
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 |
---|---|---|
|
@@ -13,10 +13,6 @@ | |
# limitations under the License. | ||
""" | ||
Data reading and writing. | ||
Authors | ||
* [email protected] (Qingen ZHAO) 2022 | ||
""" | ||
import os | ||
import pickle | ||
|
Oops, something went wrong.