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
|
// Copyright (C) 2002 Samy Bengio (bengio@idiap.ch)
//
//
// This file is part of Torch. Release II.
// [The Ultimate Machine Learning Library]
//
// Torch is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// Torch is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Torch; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "HtkFileDataSet.h"
namespace Torch {
HtkFileDataSet::HtkFileDataSet(char *file, int window_size_, int max_load)
{
window_size = window_size_;
n_files = 1;
htk = (IOHtk**)xalloc(sizeof(IOHtk*)*n_files);
htk[0] = new IOHtk(file,max_load);
n_inputs = window_size*htk[0]->n_cols;
n_targets = n_inputs;
all_inputs = NULL;
all_targets = NULL;
prepareData();
}
HtkFileDataSet::HtkFileDataSet(char **files, int n_files_, int window_size_, int max_load)
{
window_size = window_size_;
n_files = n_files_;
htk = (IOHtk**)xalloc(sizeof(IOHtk*)*n_files);
for (int i=0;i<n_files;i++) {
htk[i] = new IOHtk(files[i],max_load);
}
n_inputs = window_size*htk[0]->n_cols;
n_targets = n_inputs;
all_inputs = NULL;
all_targets = NULL;
prepareData();
}
void HtkFileDataSet::write(char* dir_to_save){
for(int i = 0;i < n_real_examples;i++)
htk[i]->write(dir_to_save);
}
void HtkFileDataSet::prepareData(bool* input_to_keep)
{
// first count the number of examples
n_real_examples = 0;
for (int i=0;i<n_files;i++) {
n_real_examples += htk[i]->n_lines - window_size + 1;
}
// then create all_inputs and all_targets
all_inputs = (real**)xrealloc(all_inputs,sizeof(real*)*n_real_examples);
int k=0;
bool* in_to_keep = input_to_keep;
for (int i=0;i<n_files;i++) {
for (int j=0;j<htk[i]->n_lines - window_size + 1;j++)
if(!input_to_keep || *in_to_keep++)
all_inputs[k++] = &htk[i]->data[j*n_inputs/window_size];
}
n_examples = n_real_examples = k;
//link inputs and targets
all_targets = all_inputs;
}
void HtkFileDataSet::init()
{
DataSet::init();
normalize();
addToList(&inputs, n_inputs, NULL);
}
void HtkFileDataSet::normalize()
{
// we first need to fool the StdDataSet::normalize by modifying
// the number of window_size
if (window_size == 1) {
StdDataSet::normalize();
} else {
int old_n_real_examples = n_real_examples;
int old_n_inputs = n_inputs;
n_inputs = n_inputs/window_size;
n_targets = n_inputs;
n_real_examples = 0;
for (int i=0;i<n_files;i++) {
n_real_examples += htk[i]->n_lines;
}
real** old_all_inputs = all_inputs;
all_inputs = (real**)xalloc(sizeof(real*)*n_real_examples);
int k=0;
for (int i=0;i<n_files;i++) {
for (int j=0;j<htk[i]->n_lines;j++,k++)
all_inputs[k] = &htk[i]->data[j*n_inputs];
}
all_targets = all_inputs;
StdDataSet::normalize();
free(all_inputs);
all_inputs = old_all_inputs;
all_targets = all_inputs;
n_real_examples = old_n_real_examples;
n_inputs = old_n_inputs;
n_targets = n_inputs;
}
}
void HtkFileDataSet::normalizeUsingDataSet(StdDataSet *data_norm)
{
// we first need to fool the StdDataSet::normalize by modifying
// the number of window_size
if (window_size == 1) {
StdDataSet::normalizeUsingDataSet(data_norm);
} else if (data_norm->norm_inputs) {
int old_n_real_examples = n_real_examples;
int old_n_inputs = n_inputs;
n_inputs = n_inputs/window_size;
n_targets = n_inputs;
n_real_examples = 0;
for (int i=0;i<n_files;i++) {
n_real_examples += htk[i]->n_lines;
}
real** old_all_inputs = all_inputs;
all_inputs = (real**)xalloc(sizeof(real*)*n_real_examples);
int k=0;
for (int i=0;i<n_files;i++) {
for (int j=0;j<htk[i]->n_lines;j++,k++)
all_inputs[k] = &htk[i]->data[j*n_inputs];
}
all_targets = all_inputs;
for(int i = 0; i < n_real_examples; i++) {
for(int d = 0; d < n_inputs; d++)
all_inputs[i][d] = (all_inputs[i][d]-data_norm->mean_i[d])/data_norm->stdv_i[d];
}
free(all_inputs);
all_inputs = old_all_inputs;
all_targets = all_inputs;
n_real_examples = old_n_real_examples;
n_inputs = old_n_inputs;
n_targets = n_inputs;
}
}
int HtkFileDataSet::removeUnlikelyFrames(Distribution* likely_distr, Distribution* unlikely_distr,bool* mask){
likely_distr->eMIterInitialize();
unlikely_distr->eMIterInitialize();
unlikely_distr->eMSequenceInitialize(NULL);
likely_distr->eMSequenceInitialize(NULL);
//compute likelihood for each data
real* unlikely_lp = (real*) xalloc(sizeof(real)*n_real_examples);
real* likely_lp = (real*) xalloc(sizeof(real)*n_real_examples);
for(int i=0;i<n_real_examples;i++){
unlikely_lp[i]=unlikely_distr->frameLogProbability(all_inputs[i],NULL,0);
likely_lp[i]=likely_distr->frameLogProbability(all_inputs[i],NULL,0);
}
// range-1 = number of frame before and after the current frame to means
// the decision
// compute inputs to remove
int tot = n_real_examples;
int range = 5;
bool* inputs_to_keep = (bool*)xcalloc(n_real_examples,sizeof(bool));
for(int j=range;j<n_real_examples-range;j++){
real p_unlikely = unlikely_lp[j];
real p_likely = likely_lp[j];
for(int k=1;k<range+1;k++){
p_unlikely += unlikely_lp[j+k] + unlikely_lp[j-k];
p_likely += likely_lp[j+k] + likely_lp[j-k];
}
if(p_likely >= p_unlikely)
inputs_to_keep[j] = true;
}
free(likely_lp);
free(unlikely_lp);
if(mask){
//remove unsued datas ie energy
for(int i=0;i<n_files;i++){
IOHtk* h = htk[i];
real* vect = h->data;
int k=0;
for(int j=0;j<h->n_lines;j++){
for(int l=0;l<h->n_cols;l++)
if(!mask[l]){
vect[k] = vect[l+h->n_cols*j];
k++;
}
}
}
n_inputs = 0;
for(int l=0;l<htk[0]->n_cols;l++)
if(!mask[l]){
n_inputs++;
}
n_inputs = n_inputs * window_size;
}
n_targets = n_inputs;
// reset the all_inputs pointers
prepareData(inputs_to_keep);
free(inputs_to_keep);
return (tot-n_real_examples);
}
void HtkFileDataSet::loadFILE(FILE *file)
{
if(norm_inputs) {
int old_n_real_examples = n_real_examples;
int old_n_inputs = n_inputs;
n_inputs = n_inputs/window_size;
n_targets = n_inputs;
n_real_examples = 0;
for (int i=0;i<n_files;i++) {
n_real_examples += htk[i]->n_lines;
}
real** old_all_inputs = all_inputs;
all_inputs = (real**)xalloc(sizeof(real*)*n_real_examples);
int k=0;
for (int i=0;i<n_files;i++) {
for (int j=0;j<htk[i]->n_lines;j++,k++)
all_inputs[k] = &htk[i]->data[j*n_inputs];
}
all_targets = all_inputs;
for(int i = 0; i < n_real_examples; i++) {
for(int d = 0; d < n_inputs; d++)
all_inputs[i][d] = all_inputs[i][d]*stdv_i[d]+mean_i[d];
}
xfread(mean_i, sizeof(real), n_inputs, file);
xfread(stdv_i, sizeof(real), n_inputs, file);
for(int i = 0; i < n_real_examples; i++) {
for(int d = 0; d < n_inputs; d++)
all_inputs[i][d] = (all_inputs[i][d]-mean_i[d])/stdv_i[d];
}
free(all_inputs);
all_inputs = old_all_inputs;
all_targets = all_inputs;
n_real_examples = old_n_real_examples;
n_inputs = old_n_inputs;
n_targets = n_inputs;
}
}
void HtkFileDataSet::saveFILE(FILE *file)
{
if(norm_inputs) {
xfwrite(mean_i, sizeof(real), n_inputs/window_size, file);
xfwrite(stdv_i, sizeof(real), n_inputs/window_size, file);
}
}
void HtkFileDataSet::createMaskFromParam(bool* mask)
{
htk[0]->createMaskFromParam(mask);
}
HtkFileDataSet::~HtkFileDataSet()
{
for (int i=0;i<n_files;i++)
delete htk[i];
free(htk);
free(all_inputs);
}
}
|