1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
|
void get_line(FILE* f, char* line, int n)
{
char* r = fgets(line,n,f);
if (r != NULL && (int)strlen(r) == n-1)
error("the string is too long!");
}
void initializeThreshold(DataSet* data,real* thresh, real threshold)
{
MeanVarNorm norm(data);
real* ptr = norm.inputs_stdv;
real* p_var = thresh;
for(int i=0;i<data->n_inputs;i++)
*p_var++ = *ptr * *ptr++ * threshold;
}
void read_phonemes(const char* filename, char*** phonemes_, int *n_phonemes, Allocator* allocator)
{
DiskXFile f(filename, "r");
*n_phonemes = 0;
char bidon[10000];
do {
f.gets(bidon,10000);
*n_phonemes += 1;
} while (!f.eof());
*n_phonemes -= 1;
f.rewind();
char** phonemes = (char**)allocator->alloc(sizeof(char*)* *n_phonemes);
char word[100];
for (int i=0;i< *n_phonemes;i++) {
f.scanf("%s",word);
phonemes[i] = (char*)allocator->alloc(sizeof(char)*(strlen(word)+1));
strcpy(phonemes[i],word);
}
message("%d phonemes detected", *n_phonemes);
*phonemes_ = phonemes;
}
int* read_states(const char* filename, int n_phonemes, int n_states, int pause_index, Allocator* allocator)
{
int* states = (int*)allocator->alloc(sizeof(int)*n_phonemes);
if (strcmp(filename,"")==0) {
for (int i=0;i<n_phonemes;i++)
states[i] = n_states;
if (pause_index>=0)
states[pause_index] = 3;
} else {
DiskXFile f(filename, "r");
for (int i=0;i< n_phonemes;i++) {
f.scanf("%d",&states[i]);
}
}
return states;
}
// this function saves in HTK format a given SpeechHMM
void save_htk_model(char* filename, SpeechHMM* shmm, char**phonemes)
{
FILE* f=fopen(filename,"w");
if (!f)
error("file %s cannot be opened",filename);
fprintf(f,"~o\n");
fprintf(f,"<STREAMINFO> 1 %d\n",shmm->n_inputs);
fprintf(f,"<VECSIZE> %d<NULLD><MFCC_D_A_O>\n",shmm->n_inputs);
for (int i=0;i<shmm->n_models;i++) {
HMM* hmm = shmm->models[i];
fprintf(f,"~h \"%s\"\n",phonemes[i]);
fprintf(f,"<BEGINHMM>\n");
fprintf(f,"<NUMSTATES> %d\n",hmm->n_states);
for (int j=1;j<hmm->n_states-1;j++) {
DiagonalGMM* gmm = (DiagonalGMM*)hmm->states[j];
fprintf(f,"<STATE> %d\n",j+1);
fprintf(f,"<NUMMIXES> %d\n",gmm->n_gaussians);
for (int k=0;k<gmm->n_gaussians;k++) {
fprintf(f,"<MIXTURE> %d %12.10e\n",k+1,exp(gmm->log_weights[k]));
fprintf(f,"<MEAN> %d\n",gmm->n_inputs);
for (int l=0;l<gmm->n_inputs;l++) {
fprintf(f,"%12.10e ",gmm->means[k][l]);
}
fprintf(f,"\n");
fprintf(f,"<VARIANCE> %d\n",gmm->n_inputs);
for (int l=0;l<gmm->n_inputs;l++) {
fprintf(f,"%12.10e ",gmm->var[k][l]);
}
fprintf(f,"\n");
}
}
fprintf(f,"<TRANSP> %d\n",hmm->n_states);
for (int j=0;j<hmm->n_states;j++) {
for (int k=0;k<hmm->n_states;k++) {
fprintf(f,"%12.10e ",hmm->log_transitions[k][j] != LOG_ZERO ? exp(hmm->log_transitions[k][j]) : 0);
}
fprintf(f,"\n");
}
fprintf(f,"<ENDHMM>\n");
}
fclose(f);
}
// load a SpeechHMM that was saved in the HTK format
// assumes that it uses DiagonalGMMs
void load_htk_model(char* filename, SpeechHMM* shmm)
{
char line[10000];
char* values[10000];
int n;
FILE* f=fopen(filename,"r");
if (!f)
error("file %s cannot be opened",filename);
// initialization
for (int i=0;i<shmm->n_models;i++) {
HMM* hmm = shmm->models[i];
for (int j=1;j<hmm->n_states-1;j++) {
DiagonalGMM* gmm = (DiagonalGMM*)hmm->states[j];
for (int k=0;k<gmm->n_gaussians;k++) {
gmm->log_weights[k] = LOG_ZERO;
for (int l=0;l<gmm->n_inputs;l++) {
gmm->means[k][l] = 0;
gmm->var[k][l] = 1;
}
}
}
for (int j=0;j<hmm->n_states;j++) {
for (int k=0;k<hmm->n_states;k++) {
hmm->log_transitions[k][j] = LOG_ZERO;
}
}
}
// reading the model
int model = -1;
int state = 0;
int mixture = 0;
real w;
HMM* hmm = NULL;
DiagonalGMM* gmm = NULL;
get_line(f,line,10000);
while (!feof(f)) {
if (strstr(line,"~h")) {
model++;
hmm = shmm->models[model];
} else if (strstr(line,"<STATE>")) {
sscanf(line,"%*s %d",&state);
gmm = (DiagonalGMM*)hmm->states[state-1];
} else if (strstr(line,"<MIXTURE>")) {
#ifdef USE_DOUBLE
sscanf(line,"%*s %d %lf",&mixture,&w);
#else
sscanf(line,"%*s %d %f",&mixture,&w);
#endif
gmm->log_weights[mixture-1] = log(w);
} else if (strstr(line,"<MEAN>")) {
get_line(f,line,10000);
values[0] = strtok(line," ");
for (n=1;(values[n]=strtok(NULL," "));n++);
for (int l=0;l<gmm->n_inputs;l++) {
gmm->means[mixture-1][l] = (real)atof(values[l]);;
}
} else if (strstr(line,"<VARIANCE>")) {
get_line(f,line,10000);
values[0] = strtok(line," ");
for (n=1;(values[n]=strtok(NULL," "));n++);
for (int l=0;l<gmm->n_inputs;l++) {
gmm->var[mixture-1][l] = (real)atof(values[l]);;
}
} else if (strstr(line,"<TRANSP>")) {
for (int j=0;j<hmm->n_states;j++) {
get_line(f,line,10000);
values[0] = strtok(line," ");
for (n=1;(values[n]=strtok(NULL," "));n++);
for (int k=0;k<hmm->n_states;k++) {
w = atof(values[k]);
hmm->log_transitions[k][j] = w == 0 ? LOG_ZERO : log(w);
}
}
}
get_line(f,line,10000);
}
fclose(f);
}
void setTransitions(real** transitions, int phoneme_n_states, int current_phoneme, int sp_phoneme, int silence_phoneme, bool full_connect)
{
for (int j=0;j<phoneme_n_states;j++) {
for (int k=0;k<phoneme_n_states;k++)
transitions[j][k] = 0;
}
if (full_connect) {
for (int i=1;i<phoneme_n_states-1;i++) {
transitions[i][0] = 1./(phoneme_n_states-2);
for (int j=1;j<phoneme_n_states;j++) {
transitions[j][i] = 1./(phoneme_n_states-1);
}
}
} else {
transitions[1][0] = 1;
for (int j=1;j<phoneme_n_states-1;j++) {
transitions[j][j] = 0.5;
transitions[j+1][j] = 0.5;
}
}
// the short pause is special
if (current_phoneme == sp_phoneme) {
for (int j=0;j<phoneme_n_states;j++) {
for (int k=0;k<phoneme_n_states;k++)
transitions[j][k] = 0;
}
transitions[1][0] = 0.5;
transitions[2][0] = 0.5;
}
// the silence model is special
if (current_phoneme == silence_phoneme && !full_connect) {
for (int j=1;j<phoneme_n_states-2;j++) {
transitions[j+2][j] = 1./3.;
transitions[j+1][j] = 1./3.;
transitions[j][j] = 1./3.;
}
}
}
SpeechHMM* newSpeechHMM(int* states, int n_gaussians, int n_models, int n_inputs, LexiconInfo* lex, real* thresh, real prior, Allocator* allocator)
{
DiagonalGMM*** gmms = (DiagonalGMM ***)allocator->alloc(sizeof(DiagonalGMM**)*n_models);
HMM** hmm = (HMM**)allocator->alloc(sizeof(HMM*)*n_models);
real*** transitions = (real***)allocator->alloc(n_models*sizeof(real**));
for (int i=0;i<n_models;i++) {
gmms[i] = (DiagonalGMM**)allocator->alloc(sizeof(DiagonalGMM*)*states[i]);
for (int j=1;j<states[i]-1;j++) {
DiagonalGMM* gmm = new(allocator)DiagonalGMM(n_inputs,n_gaussians);
// set the training options
if (thresh)
gmm->setVarThreshold(thresh);
if (prior>0)
gmm->setROption("prior weights",prior);
gmms[i][j] = gmm;
}
gmms[i][0] = NULL;
gmms[i][states[i]-1] = NULL;
// the transition table probability: left-right topology
transitions[i] = (real**)allocator->alloc(states[i]*sizeof(real*));
for (int j=0;j<states[i];j++) {
transitions[i][j] = (real*)allocator->alloc(states[i]*sizeof(real));
}
setTransitions(transitions[i], states[i], i, lex->phone_info->pause_index,
lex->phone_info->sil_index,false);
hmm[i] = new (allocator)HMM(states[i],(Distribution**)gmms[i],transitions[i]);
hmm[i]->setROption("prior transitions",prior);
hmm[i]->setBOption("initialize", false);
}
SpeechHMM* shmm = new(allocator) SpeechHMM(n_models,hmm,lex);
shmm->setBOption("initialize", false);
return shmm;
}
SpeechHMM* newSpeechHMMFromTorch(char* file, LexiconInfo* lex, real* thresh, real prior, Allocator* allocator, CmdLine* cmd)
{
int n_gaussians;
int n_phonemes;
int n_inputs;
DiskXFile f(file,"r");
cmd->loadXFile(&f);
f.taggedRead(&n_gaussians, sizeof(int), 1, "n_gaussians");
f.taggedRead(&n_phonemes, sizeof(int), 1, "n_phonemes");
int* states = (int*)allocator->alloc(sizeof(int)*n_phonemes);
f.taggedRead(states, sizeof(int), n_phonemes, "n_states");
f.taggedRead(&n_inputs, sizeof(int), 1, "n_inputs");
SpeechHMM* shmm = newSpeechHMM(states, n_gaussians, n_phonemes, n_inputs,
lex, thresh, prior, allocator);
shmm->loadXFile(&f);
return shmm;
}
SpeechHMM* newSpeechHMMFromHTK(char* file, LexiconInfo* lex, real* thresh, real prior, Allocator* allocator)
{
DiskXFile* f = new(allocator) DiskXFile(file,"r");
int n_gaussians = 0;
int n_phonemes = 0;
int n_inputs = 0;
int* states = NULL;
char line[10000];
char* values[10000];
f->gets(line,10000);
while (!f->eof()) {
if (strstr(line,"~h")) {
n_phonemes++;
states = (int*)allocator->realloc(states,sizeof(int)*n_phonemes);
} else if (strstr(line,"<NUMSTATES>")) {
values[0] = strtok(line," ");
values[1] = strtok(NULL," ");
states[n_phonemes-1] = atoi(values[1]);
} else if (strstr(line,"<NUMMIXES>")) {
values[0] = strtok(line," ");
values[1] = strtok(NULL," ");
n_gaussians = atoi(values[1]);
} else if (strstr(line,"<MEAN>")) {
values[0] = strtok(line," ");
values[1] = strtok(NULL," ");
n_inputs = atoi(values[1]);
}
f->gets(line,10000);
}
allocator->free(f);
SpeechHMM* shmm = newSpeechHMM(states, n_gaussians, n_phonemes, n_inputs,
lex, thresh, prior, allocator);
load_htk_model(file, shmm);
return shmm;
}
HMM* extend_HMM_to_min_duration(HMM* hmm,int min_duration, Allocator* allocator)
{
// how many states should I add
int n_states_to_add = min_duration - (hmm->n_states - 2);
if (n_states_to_add <= 0) {
warning("no added state");
return hmm;
}
// the solution can not work if there are already shared states
if (hmm->n_shared_states > 0)
error("cannot add states since n_shared_states = %d",hmm->n_shared_states);
// let's duplicate the last real state
// we first need to create shared states
int n_shared_states = hmm->n_states - 2;
Distribution** shared_states = (Distribution**)allocator->alloc(sizeof(Distribution*)*n_shared_states);
for (int i=0;i<n_shared_states;i++)
shared_states[i] = hmm->states[i+1];
// then redo the states themselves
int new_n_states = hmm->n_states + n_states_to_add;
Distribution** states = (Distribution**)allocator->alloc(sizeof(Distribution*)*new_n_states);
states[0] = NULL;
states[new_n_states-1] = NULL;
for (int i=1;i<hmm->n_states-1;i++)
states[i] = shared_states[i-1];
for (int i=0;i<n_states_to_add;i++)
states[i+hmm->n_states-1] = shared_states[n_shared_states-1];
// then the transitions
real** transitions = (real**)allocator->alloc(sizeof(real*)*new_n_states);
for (int i=0;i<new_n_states;i++) {
transitions[i] = (real*)allocator->alloc(sizeof(real)*new_n_states);
for (int j=0;j<new_n_states;j++) {
transitions[i][j] = 0;
}
}
// copy old transitions
for (int i=0;i<hmm->n_states;i++) {
for (int j=0;j<hmm->n_states;j++) {
if (hmm->log_transitions[i][j] != LOG_ZERO) {
transitions[i][j] = exp(hmm->log_transitions[i][j]);
}
}
}
// add new transitions based on the old last state transitions
// (assume left-right transitions!)
int last_s = hmm->n_states-2;
for (int i=0;i<n_states_to_add;i++) {
int s = i+hmm->n_states-1;
transitions[s][s] = exp(hmm->log_transitions[last_s][last_s]);
transitions[s+1][s] = exp(hmm->log_transitions[last_s+1][last_s]);
}
HMM* n_hmm = new(allocator) HMM(new_n_states,states,transitions,n_shared_states,shared_states);
n_hmm->initialize = hmm->initialize;
n_hmm->linear_segmentation = hmm->linear_segmentation;
n_hmm->prior_transitions = hmm->prior_transitions;
for (int i=0;i<n_hmm->n_states;i++) {
real *p = n_hmm->transitions[i];
real *lp = n_hmm->log_transitions[i];
for (int j=0;j<n_hmm->n_states;j++,lp++,p++) {
if (*p > 0)
*lp = log(*p);
else
*lp = LOG_ZERO;
}
}
return n_hmm;
}
SpeechHMM* extend_SpeechHMM_to_min_duration(SpeechHMM* shmm,int min_duration, Allocator* allocator, int silence_model)
{
LexiconInfo* lex = shmm->lexicon;
EMTrainer** mtrainer = shmm->model_trainer;
int n_models = shmm->n_models;
HMM** models = (HMM**)allocator->alloc(sizeof(HMM*)*n_models);
for (int i=0;i<n_models;i++) {
if (i == silence_model)
models[i] = shmm->models[i];
else
models[i] = extend_HMM_to_min_duration(shmm->models[i],min_duration,allocator);
}
SpeechHMM* new_shmm = new(allocator) SpeechHMM(n_models,models,lex,mtrainer);
new_shmm->prior_transitions = shmm->prior_transitions;
new_shmm->phoneme_targets = shmm->phoneme_targets;
return new_shmm;
}
|