You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.9 KiB
87 lines
2.9 KiB
3 years ago
|
#!/usr/bin/env perl
|
||
|
# Copyright 2010-2012 Microsoft Corporation
|
||
|
# Johns Hopkins University (author: Daniel Povey)
|
||
|
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||
|
# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||
|
# WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||
|
# MERCHANTABLITY OR NON-INFRINGEMENT.
|
||
|
# See the Apache 2 License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
|
||
|
# This script takes a list of utterance-ids or any file whose first field
|
||
|
# of each line is an utterance-id, and filters an scp
|
||
|
# file (or any file whose "n-th" field is an utterance id), printing
|
||
|
# out only those lines whose "n-th" field is in id_list. The index of
|
||
|
# the "n-th" field is 1, by default, but can be changed by using
|
||
|
# the -f <n> switch
|
||
|
|
||
|
$exclude = 0;
|
||
|
$field = 1;
|
||
|
$shifted = 0;
|
||
|
|
||
|
do {
|
||
|
$shifted=0;
|
||
|
if ($ARGV[0] eq "--exclude") {
|
||
|
$exclude = 1;
|
||
|
shift @ARGV;
|
||
|
$shifted=1;
|
||
|
}
|
||
|
if ($ARGV[0] eq "-f") {
|
||
|
$field = $ARGV[1];
|
||
|
shift @ARGV; shift @ARGV;
|
||
|
$shifted=1
|
||
|
}
|
||
|
} while ($shifted);
|
||
|
|
||
|
if(@ARGV < 1 || @ARGV > 2) {
|
||
|
die "Usage: filter_scp.pl [--exclude] [-f <field-to-filter-on>] id_list [in.scp] > out.scp \n" .
|
||
|
"Prints only the input lines whose f'th field (default: first) is in 'id_list'.\n" .
|
||
|
"Note: only the first field of each line in id_list matters. With --exclude, prints\n" .
|
||
|
"only the lines that were *not* in id_list.\n" .
|
||
|
"Caution: previously, the -f option was interpreted as a zero-based field index.\n" .
|
||
|
"If your older scripts (written before Oct 2014) stopped working and you used the\n" .
|
||
|
"-f option, add 1 to the argument.\n" .
|
||
|
"See also: utils/filter_scp.pl .\n";
|
||
|
}
|
||
|
|
||
|
|
||
|
$idlist = shift @ARGV;
|
||
|
open(F, "<$idlist") || die "Could not open id-list file $idlist";
|
||
|
while(<F>) {
|
||
|
@A = split;
|
||
|
@A>=1 || die "Invalid id-list file line $_";
|
||
|
$seen{$A[0]} = 1;
|
||
|
}
|
||
|
|
||
|
if ($field == 1) { # Treat this as special case, since it is common.
|
||
|
while(<>) {
|
||
|
$_ =~ m/\s*(\S+)\s*/ || die "Bad line $_, could not get first field.";
|
||
|
# $1 is what we filter on.
|
||
|
if ((!$exclude && $seen{$1}) || ($exclude && !defined $seen{$1})) {
|
||
|
print $_;
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
while(<>) {
|
||
|
@A = split;
|
||
|
@A > 0 || die "Invalid scp file line $_";
|
||
|
@A >= $field || die "Invalid scp file line $_";
|
||
|
if ((!$exclude && $seen{$A[$field-1]}) || ($exclude && !defined $seen{$A[$field-1]})) {
|
||
|
print $_;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# tests:
|
||
|
# the following should print "foo 1"
|
||
|
# ( echo foo 1; echo bar 2 ) | utils/filter_scp.pl <(echo foo)
|
||
|
# the following should print "bar 2".
|
||
|
# ( echo foo 1; echo bar 2 ) | utils/filter_scp.pl -f 2 <(echo 2)
|