about sound recognition.i want to downlod

源代码在线查看: mkclscript.prl

软件大小: 2206 K
上传用户: lwp
关键词: recognition downlod about sound
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/usr/local/bin/perl
				
				#  generate an HHEd script file for state-clustering triphones
				#   
				#  usage: mkclscript.prl command threshold monophone_list
				#
				#  where monophone_list is a HMM list for the phones (not triphones) 
				#        to be clustered
				#
				# Script generates a specified command and threhold for a cluster
				# corresponding to each states of each phone. 
				# The script assumes each model has 3 emitting states.
				#
				# Copyright (c) Phil Woodland, 1993
				# Last Updated 5/9/95
				#
				# convert to perl by TL 7/1998
				#
				
				if ( $#ARGV != 2 ) {
				   die "usage: mkclscript.prl command threshold monophone_list\n";
				}
				
				$command = $ARGV[0];
				$threshold = $ARGV[1];
				
				$hmmlist=$ARGV[2];
				if (! -f $hmmlist) {
				   die "mkclscript: monophone HMM list $hmmlist not found\n";
				}
				
				open(HMMLIST,"				while() {
					chop;
					print "$command $threshold \"ST_$_"."_2_\" {(\"$_\",\"*-$_\+*\",\"$_\+*\",\"*-$_\").state[2]}\n";
				}
				
				open(HMMLIST,"				while() {
					chop;
					print "$command $threshold \"ST_$_"."_3_\" {(\"$_\",\"*-$_\+*\",\"$_\+*\",\"*-$_\").state[3]}\n";
				}
				
				open(HMMLIST,"				while() {
					chop;
					print "$command $threshold \"ST_$_"."_4_\" {(\"$_\",\"*-$_\+*\",\"$_\+*\",\"*-$_\").state[4]}\n";
				}
				
				close (HMMLIST);
							

相关资源