dataset.cpp 32.9 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <LightGBM/dataset.h>

#include <LightGBM/feature.h>
#include <LightGBM/network.h>

#include <omp.h>

#include <cstdio>
#include <unordered_map>
#include <limits>
#include <vector>
#include <utility>
#include <string>
Guolin Ke's avatar
Guolin Ke committed
14
#include <sstream>
Guolin Ke's avatar
Guolin Ke committed
15
16
17
18

namespace LightGBM {

Dataset::Dataset(const char* data_filename, const char* init_score_filename,
Guolin Ke's avatar
Guolin Ke committed
19
20
21
  const IOConfig& io_config, const PredictFunction& predict_fun)
  :data_filename_(data_filename), random_(io_config.data_random_seed),
  max_bin_(io_config.max_bin), is_enable_sparse_(io_config.is_enable_sparse), predict_fun_(predict_fun) {
Guolin Ke's avatar
Guolin Ke committed
22
23
24

  CheckCanLoadFromBin();
  if (is_loading_from_binfile_ && predict_fun != nullptr) {
25
    Log::Info("Cannot performing initialization of prediction by using binary file, using text file instead");
Guolin Ke's avatar
Guolin Ke committed
26
27
28
29
30
31
    is_loading_from_binfile_ = false;
  }

  if (!is_loading_from_binfile_) {
    // load weight, query information and initilize score
    metadata_.Init(data_filename, init_score_filename);
Guolin Ke's avatar
Guolin Ke committed
32
33
34
35
36
37
38
39
    // create text reader
    text_reader_ = new TextReader<data_size_t>(data_filename, io_config.has_header);

    std::unordered_map<std::string, int> name2idx;
    // get column names
    if (io_config.has_header) {
      std::string first_line = text_reader_->first_line();
      feature_names_ = Common::Split(first_line.c_str(), "\t ,");
Guolin Ke's avatar
Guolin Ke committed
40
41
      for (size_t i = 0; i < feature_names_.size(); ++i) {
        name2idx[feature_names_[i]] = static_cast<int>(i);
Guolin Ke's avatar
Guolin Ke committed
42
43
44
45
46
47
48
49
50
51
      }
    }
    std::string name_prefix("name:");

    // load label idx
    if (io_config.label_column.size() > 0) {
      if (Common::StartsWith(io_config.label_column, name_prefix)) {
        std::string name = io_config.label_column.substr(name_prefix.size());
        if (name2idx.count(name) > 0) {
          label_idx_ = name2idx[name];
Guolin Ke's avatar
Guolin Ke committed
52
          Log::Info("use %s column as label", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
53
54
55
56
        } else {
          Log::Fatal("cannot find label column: %s in data file", name.c_str());
        }
      } else {
57
        if (!Common::AtoiAndCheck(io_config.label_column.c_str(), &label_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
58
59
60
61
62
          Log::Fatal("label_column is not a number, \
                      if you want to use column name, \
                      please add prefix \"name:\" before column name");
        }
        Log::Info("use %d-th column as label", label_idx_);
Guolin Ke's avatar
Guolin Ke committed
63
64
      }
    }
Guolin Ke's avatar
Guolin Ke committed
65
66
67
68
    if (feature_names_.size() > 0) {
      // erase label column name
      feature_names_.erase(feature_names_.begin() + label_idx_);
    }
Guolin Ke's avatar
Guolin Ke committed
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
    // load ignore columns
    if (io_config.ignore_column.size() > 0) {
      if (Common::StartsWith(io_config.ignore_column, name_prefix)) {
        std::string names = io_config.ignore_column.substr(name_prefix.size());
        for (auto name : Common::Split(names.c_str(), ',')) {
          if (name2idx.count(name) > 0) {
            int tmp = name2idx[name];
            // skip for label column
            if (tmp > label_idx_) { tmp -= 1; }
            ignore_features_.emplace(tmp);
          } else {
            Log::Fatal("cannot find column: %s in data file", name.c_str());
          }
        }
      } else {
        for (auto token : Common::Split(io_config.ignore_column.c_str(), ',')) {
85
86
          int tmp = 0;
          if (!Common::AtoiAndCheck(token.c_str(), &tmp)) {
Guolin Ke's avatar
Guolin Ke committed
87
88
89
90
            Log::Fatal("ignore_column is not a number, \
                      if you want to use column name, \
                      please add prefix \"name:\" before column name");
          }
Guolin Ke's avatar
Guolin Ke committed
91
92
93
94
95
96
97
98
99
100
101
102
103
104
          // skip for label column
          if (tmp > label_idx_) { tmp -= 1; }
          ignore_features_.emplace(tmp);
        }
      }

    }

    // load weight idx
    if (io_config.weight_column.size() > 0) {
      if (Common::StartsWith(io_config.weight_column, name_prefix)) {
        std::string name = io_config.weight_column.substr(name_prefix.size());
        if (name2idx.count(name) > 0) {
          weight_idx_ = name2idx[name];
Guolin Ke's avatar
Guolin Ke committed
105
          Log::Info("use %s column as weight", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
106
107
108
109
        } else {
          Log::Fatal("cannot find weight column: %s in data file", name.c_str());
        }
      } else {
110
        if (!Common::AtoiAndCheck(io_config.weight_column.c_str(), &weight_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
111
112
113
114
115
          Log::Fatal("weight_column is not a number, \
                      if you want to use column name, \
                      please add prefix \"name:\" before column name");
        }
        Log::Info("use %d-th column as weight", weight_idx_);
Guolin Ke's avatar
Guolin Ke committed
116
117
118
119
120
121
122
123
124
125
126
127
128
      }
      // skip for label column
      if (weight_idx_ > label_idx_) {
        weight_idx_ -= 1;
      }
      ignore_features_.emplace(weight_idx_);
    }

    if (io_config.group_column.size() > 0) {
      if (Common::StartsWith(io_config.group_column, name_prefix)) {
        std::string name = io_config.group_column.substr(name_prefix.size());
        if (name2idx.count(name) > 0) {
          group_idx_ = name2idx[name];
Guolin Ke's avatar
Guolin Ke committed
129
          Log::Info("use %s column as group/query id", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
130
131
132
133
        } else {
          Log::Fatal("cannot find group/query column: %s in data file", name.c_str());
        }
      } else {
134
        if (!Common::AtoiAndCheck(io_config.group_column.c_str(), &group_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
135
136
137
138
139
          Log::Fatal("group_column is not a number, \
                      if you want to use column name, \
                      please add prefix \"name:\" before column name");
        }
        Log::Info("use %d-th column as group/query id", group_idx_);
Guolin Ke's avatar
Guolin Ke committed
140
141
142
143
144
145
146
147
      }
      // skip for label column
      if (group_idx_ > label_idx_) {
        group_idx_ -= 1;
      }
      ignore_features_.emplace(group_idx_);
    }

Guolin Ke's avatar
Guolin Ke committed
148
    // create text parser
Guolin Ke's avatar
Guolin Ke committed
149
    parser_ = Parser::CreateParser(data_filename_, io_config.has_header, 0, label_idx_);
Guolin Ke's avatar
Guolin Ke committed
150
    if (parser_ == nullptr) {
Qiwei Ye's avatar
Qiwei Ye committed
151
      Log::Fatal("Cannot recognising input data format, filename: %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
152
153
    }
  } else {
Hui Xue's avatar
Hui Xue committed
154
    // only need to load initilize score, other meta data will be loaded from bin flie
Guolin Ke's avatar
Guolin Ke committed
155
    metadata_.Init(init_score_filename);
156
    Log::Info("Loading data set from binary file");
Guolin Ke's avatar
Guolin Ke committed
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
    parser_ = nullptr;
    text_reader_ = nullptr;
  }

}

Dataset::~Dataset() {
  if (parser_ != nullptr) { delete parser_; }
  if (text_reader_ != nullptr) { delete text_reader_; }
  for (auto& feature : features_) {
    delete feature;
  }
  features_.clear();
}

void Dataset::LoadDataToMemory(int rank, int num_machines, bool is_pre_partition) {
  used_data_indices_.clear();
  if (num_machines == 1 || is_pre_partition) {
    // read all lines
    num_data_ = text_reader_->ReadAllLines();
    global_num_data_ = num_data_;
  } else {  // need partition data
    // get query data
    const data_size_t* query_boundaries = metadata_.query_boundaries();

    if (query_boundaries == nullptr) {
      // if not contain query data, minimal sample unit is one record
      global_num_data_ = text_reader_->ReadAndFilterLines([this, rank, num_machines](data_size_t) {
        if (random_.NextInt(0, num_machines) == rank) {
          return true;
        } else {
          return false;
        }
      }, &used_data_indices_);
    } else {
      // if contain query data, minimal sample unit is one query
      data_size_t num_queries = metadata_.num_queries();
      data_size_t qid = -1;
      bool is_query_used = false;
      global_num_data_ = text_reader_->ReadAndFilterLines(
        [this, rank, num_machines, &qid, &query_boundaries, &is_query_used, num_queries]
      (data_size_t line_idx) {
        if (qid >= num_queries) {
Qiwei Ye's avatar
fix log  
Qiwei Ye committed
200
201
          Log::Fatal("Current query exceed the range of query file, \
                      please ensure your query file is correct");
Guolin Ke's avatar
Guolin Ke committed
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
        }
        if (line_idx >= query_boundaries[qid + 1]) {
          // if is new query
          is_query_used = false;
          if (random_.NextInt(0, num_machines) == rank) {
            is_query_used = true;
          }
          ++qid;
        }
        return is_query_used;
      }, &used_data_indices_);
    }
    // set number of data
    num_data_ = static_cast<data_size_t>(used_data_indices_.size());
  }
}

void Dataset::SampleDataFromMemory(std::vector<std::string>* out_data) {
  const size_t sample_cnt = static_cast<size_t>(num_data_ < 50000 ? num_data_ : 50000);
  std::vector<size_t> sample_indices = random_.Sample(num_data_, sample_cnt);
  out_data->clear();
  for (size_t i = 0; i < sample_indices.size(); ++i) {
    const size_t idx = sample_indices[i];
    out_data->push_back(text_reader_->Lines()[idx]);
  }
}

void Dataset::SampleDataFromFile(int rank, int num_machines, bool is_pre_partition,
                                             std::vector<std::string>* out_data) {
  used_data_indices_.clear();
  const size_t sample_cnt = 50000;
  if (num_machines == 1 || is_pre_partition) {
    num_data_ = static_cast<data_size_t>(text_reader_->SampleFromFile(random_, sample_cnt, out_data));
    global_num_data_ = num_data_;
  } else {  // need partition data
    // get query data
    const data_size_t* query_boundaries = metadata_.query_boundaries();
    if (query_boundaries == nullptr) {
      // if not contain query file, minimal sample unit is one record
      global_num_data_ = text_reader_->SampleAndFilterFromFile([this, rank, num_machines]
      (data_size_t) {
        if (random_.NextInt(0, num_machines) == rank) {
          return true;
        } else {
          return false;
        }
      }, &used_data_indices_, random_, sample_cnt, out_data);
    } else {
      // if contain query file, minimal sample unit is one query
      data_size_t num_queries = metadata_.num_queries();
      data_size_t qid = -1;
      bool is_query_used = false;
      global_num_data_ = text_reader_->SampleAndFilterFromFile(
        [this, rank, num_machines, &qid, &query_boundaries, &is_query_used, num_queries]
      (data_size_t line_idx) {
        if (qid >= num_queries) {
Qiwei Ye's avatar
Qiwei Ye committed
258
          Log::Fatal("Query id is exceed the range of query file, \
Guolin Ke's avatar
Guolin Ke committed
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
                             please ensure your query file is correct");
        }
        if (line_idx >= query_boundaries[qid + 1]) {
          // if is new query
          is_query_used = false;
          if (random_.NextInt(0, num_machines) == rank) {
            is_query_used = true;
          }
          ++qid;
        }
        return is_query_used;
      }, &used_data_indices_, random_, sample_cnt, out_data);
    }
    num_data_ = static_cast<data_size_t>(used_data_indices_.size());
  }
}

void Dataset::ConstructBinMappers(int rank, int num_machines, const std::vector<std::string>& sample_data) {
  // sample_values[i][j], means the value of j-th sample on i-th feature
278
  std::vector<std::vector<double>> sample_values;
Guolin Ke's avatar
Guolin Ke committed
279
  // temp buffer for one line features and label
280
281
  std::vector<std::pair<int, double>> oneline_features;
  double label;
Guolin Ke's avatar
Guolin Ke committed
282
283
284
285
286
287
288
289
  for (size_t i = 0; i < sample_data.size(); ++i) {
    oneline_features.clear();
    // parse features
    parser_->ParseOneLine(sample_data[i].c_str(), &oneline_features, &label);
    // push 0 first, then edit the value according existing feature values
    for (auto& feature_values : sample_values) {
      feature_values.push_back(0.0);
    }
290
    for (std::pair<int, double>& inner_data : oneline_features) {
Guolin Ke's avatar
Guolin Ke committed
291
292
293
294
295
      if (static_cast<size_t>(inner_data.first) >= sample_values.size()) {
        // if need expand feature set
        size_t need_size = inner_data.first - sample_values.size() + 1;
        for (size_t j = 0; j < need_size; ++j) {
          // push i+1 0
296
          sample_values.emplace_back(i + 1, 0.0f);
Guolin Ke's avatar
Guolin Ke committed
297
298
299
300
301
302
303
304
305
306
307
        }
      }
      // edit the feature value
      sample_values[inner_data.first][i] = inner_data.second;
    }
  }

  features_.clear();

  // -1 means doesn't use this feature
  used_feature_map_ = std::vector<int>(sample_values.size(), -1);
Guolin Ke's avatar
Guolin Ke committed
308
  num_total_features_ = static_cast<int>(sample_values.size());
Guolin Ke's avatar
Guolin Ke committed
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323

  // check the range of label_idx, weight_idx and group_idx
  CHECK(label_idx_ >= 0 && label_idx_ <= num_total_features_);
  CHECK(weight_idx_ < 0 || weight_idx_ < num_total_features_);
  CHECK(group_idx_ < 0 || group_idx_ < num_total_features_);

  // fill feature_names_ if not header
  if (feature_names_.size() <= 0) {
    for (int i = 0; i < num_total_features_; ++i) {
      std::stringstream str_buf;
      str_buf << "Column_" << i;
      feature_names_.push_back(str_buf.str());
    }
  }

Guolin Ke's avatar
Guolin Ke committed
324
325
326
327
328
329
  // start find bins
  if (num_machines == 1) {
    std::vector<BinMapper*> bin_mappers(sample_values.size());
    // if only 1 machines, find bin locally
    #pragma omp parallel for schedule(guided)
    for (int i = 0; i < static_cast<int>(sample_values.size()); ++i) {
Guolin Ke's avatar
Guolin Ke committed
330
331
332
333
      if (ignore_features_.count(i) > 0) {
        bin_mappers[i] = nullptr;
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
334
335
336
337
338
      bin_mappers[i] = new BinMapper();
      bin_mappers[i]->FindBin(&sample_values[i], max_bin_);
    }

    for (size_t i = 0; i < sample_values.size(); ++i) {
Guolin Ke's avatar
Guolin Ke committed
339
      if (bin_mappers[i] == nullptr) {
Qiwei Ye's avatar
Qiwei Ye committed
340
        Log::Warning("Ignore Feature %s ", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
341
342
      }
      else if (!bin_mappers[i]->is_trival()) {
Guolin Ke's avatar
Guolin Ke committed
343
344
345
346
347
348
349
        // map real feature index to used feature index
        used_feature_map_[i] = static_cast<int>(features_.size());
        // push new feature
        features_.push_back(new Feature(static_cast<int>(i), bin_mappers[i],
                                             num_data_, is_enable_sparse_));
      } else {
        // if feature is trival(only 1 bin), free spaces
Qiwei Ye's avatar
Qiwei Ye committed
350
        Log::Warning("Feature %s only contains one value, will be ignored", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
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
        delete bin_mappers[i];
      }
    }
  } else {
    // if have multi-machines, need find bin distributed
    // different machines will find bin for different features

    // start and len will store the process feature indices for different machines
    // machine i will find bins for features in [ strat[i], start[i] + len[i] )
    int* start = new int[num_machines];
    int* len = new int[num_machines];
    int total_num_feature = static_cast<int>(sample_values.size());
    int step = (total_num_feature + num_machines - 1) / num_machines;
    if (step < 1) { step = 1; }

    start[0] = 0;
    for (int i = 0; i < num_machines - 1; ++i) {
      len[i] = Common::Min<int>(step, total_num_feature - start[i]);
      start[i + 1] = start[i] + len[i];
    }
    len[num_machines - 1] = total_num_feature - start[num_machines - 1];
    // get size of bin mapper with max_bin_ size
    int type_size = BinMapper::SizeForSpecificBin(max_bin_);
    // since sizes of different feature may not be same, we expand all bin mapper to type_size 
    int buffer_size = type_size * total_num_feature;
    char* input_buffer = new char[buffer_size];
    char* output_buffer = new char[buffer_size];

    // find local feature bins and copy to buffer
    #pragma omp parallel for schedule(guided)
    for (int i = 0; i < len[rank]; ++i) {
      BinMapper* bin_mapper = new BinMapper();
      bin_mapper->FindBin(&sample_values[start[rank] + i], max_bin_);
      bin_mapper->CopyTo(input_buffer + i * type_size);
      // don't need this any more
      delete bin_mapper;
    }
    // convert to binary size
    for (int i = 0; i < num_machines; ++i) {
      start[i] *= type_size;
      len[i] *= type_size;
    }
    // gather global feature bin mappers
    Network::Allgather(input_buffer, buffer_size, start, len, output_buffer);
    // restore features bins from buffer
    for (int i = 0; i < total_num_feature; ++i) {
Guolin Ke's avatar
Guolin Ke committed
397
      if (ignore_features_.count(i) > 0) {
Qiwei Ye's avatar
Qiwei Ye committed
398
        Log::Warning("Ignore Feature %s ", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
399
400
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
401
402
403
404
405
406
      BinMapper* bin_mapper = new BinMapper();
      bin_mapper->CopyFrom(output_buffer + i * type_size);
      if (!bin_mapper->is_trival()) {
        used_feature_map_[i] = static_cast<int>(features_.size());
        features_.push_back(new Feature(static_cast<int>(i), bin_mapper, num_data_, is_enable_sparse_));
      } else {
Qiwei Ye's avatar
Qiwei Ye committed
407
        Log::Warning("Feature %s only contains one value, will be ignored", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
408
409
410
411
412
413
414
415
416
417
418
419
420
421
        delete bin_mapper;
      }
    }
    // free buffer
    delete[] start;
    delete[] len;
    delete[] input_buffer;
    delete[] output_buffer;
  }
  num_features_ = static_cast<int>(features_.size());
}


void Dataset::LoadTrainData(int rank, int num_machines, bool is_pre_partition, bool use_two_round_loading) {
Guolin Ke's avatar
Guolin Ke committed
422
  // don't support query id in data file when training in parallel
Guolin Ke's avatar
Guolin Ke committed
423
424
425
426
427
428
  if (num_machines > 1 && !is_pre_partition) {
    if (group_idx_ > 0) {
      Log::Fatal("Don't support query id in data file when training parallel without pre-partition. \
                  Please use an additional query file or pre-partition your data");
    }
  }
Guolin Ke's avatar
Guolin Ke committed
429
430
431
432
433
434
435
436
437
438
439
  used_data_indices_.clear();
  if (!is_loading_from_binfile_ ) {
    if (!use_two_round_loading) {
      // read data to memory
      LoadDataToMemory(rank, num_machines, is_pre_partition);
      std::vector<std::string> sample_data;
      // sample data
      SampleDataFromMemory(&sample_data);
      // construct feature bin mappers
      ConstructBinMappers(rank, num_machines, sample_data);
      // initialize label
Guolin Ke's avatar
Guolin Ke committed
440
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
441
442
443
444
445
446
447
448
449
      // extract features
      ExtractFeaturesFromMemory();
    } else {
      std::vector<std::string> sample_data;
      // sample data from file
      SampleDataFromFile(rank, num_machines, is_pre_partition, &sample_data);
      // construct feature bin mappers
      ConstructBinMappers(rank, num_machines, sample_data);
      // initialize label
Guolin Ke's avatar
Guolin Ke committed
450
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474

      // extract features
      ExtractFeaturesFromFile();
    }
  } else {
    // load data from binary file
    LoadDataFromBinFile(rank, num_machines, is_pre_partition);
  }
  // check meta data
  metadata_.CheckOrPartition(static_cast<data_size_t>(global_num_data_), used_data_indices_);
  // free memory
  used_data_indices_.clear();
  used_data_indices_.shrink_to_fit();
  // need to check training data
  CheckDataset();
}

void Dataset::LoadValidationData(const Dataset* train_set, bool use_two_round_loading) {
  used_data_indices_.clear();
  if (!is_loading_from_binfile_ ) {
    if (!use_two_round_loading) {
      // read data in memory
      LoadDataToMemory(0, 1, false);
      // initialize label
Guolin Ke's avatar
Guolin Ke committed
475
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
476
477
478
479
480
481
482
      features_.clear();
      // copy feature bin mapper data
      for (Feature* feature : train_set->features_) {
        features_.push_back(new Feature(feature->feature_index(), new BinMapper(*feature->bin_mapper()), num_data_, is_enable_sparse_));
      }
      used_feature_map_ = train_set->used_feature_map_;
      num_features_ = static_cast<int>(features_.size());
483
484
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
485
486
487
488
489
490
      // extract features
      ExtractFeaturesFromMemory();
    } else {
      // Get number of lines of data file
      num_data_ = static_cast<data_size_t>(text_reader_->CountLine());
      // initialize label
Guolin Ke's avatar
Guolin Ke committed
491
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
492
493
494
495
496
497
498
      features_.clear();
      // copy feature bin mapper data
      for (Feature* feature : train_set->features_) {
        features_.push_back(new Feature(feature->feature_index(), new BinMapper(*feature->bin_mapper()), num_data_, is_enable_sparse_));
      }
      used_feature_map_ = train_set->used_feature_map_;
      num_features_ = static_cast<int>(features_.size());
499
500
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
501
502
503
504
505
506
507
508
509
510
511
512
513
514
      // extract features
      ExtractFeaturesFromFile();
    }
  } else {
    // load from binary file
    LoadDataFromBinFile(0, 1, false);
  }
  // not need to check validation data
  // check meta data
  metadata_.CheckOrPartition(static_cast<data_size_t>(global_num_data_), used_data_indices_);
  // CheckDataset();
}

void Dataset::ExtractFeaturesFromMemory() {
515
516
  std::vector<std::pair<int, double>> oneline_features;
  double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
517
518
519
520
521
522
523
524
525
  if (predict_fun_ == nullptr) {
    // if doesn't need to prediction with initial model
    #pragma omp parallel for schedule(guided) private(oneline_features) firstprivate(tmp_label)
    for (data_size_t i = 0; i < num_data_; ++i) {
      const int tid = omp_get_thread_num();
      oneline_features.clear();
      // parser
      parser_->ParseOneLine(text_reader_->Lines()[i].c_str(), &oneline_features, &tmp_label);
      // set label
526
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
527
528
529
530
531
532
533
534
535
536
537
      // free processed line:
      text_reader_->Lines()[i].clear();
      // shrink_to_fit will be very slow in linux, and seems not free memory, disable for now
      // text_reader_->Lines()[i].shrink_to_fit();
      // push data
      for (auto& inner_data : oneline_features) {
        int feature_idx = used_feature_map_[inner_data.first];
        if (feature_idx >= 0) {
          // if is used feature
          features_[feature_idx]->PushData(tid, i, inner_data.second);
        }
Guolin Ke's avatar
Guolin Ke committed
538
539
        else {
          if (inner_data.first == weight_idx_) {
540
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
541
          } else if (inner_data.first == group_idx_) {
542
            metadata_.SetQueryAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
543
544
          }
        }
Guolin Ke's avatar
Guolin Ke committed
545
546
547
548
      }
    }
  } else {
    // if need to prediction with initial model
Guolin Ke's avatar
Guolin Ke committed
549
    float* init_score = new float[num_data_];
Guolin Ke's avatar
Guolin Ke committed
550
551
552
553
554
555
556
    #pragma omp parallel for schedule(guided) private(oneline_features) firstprivate(tmp_label)
    for (data_size_t i = 0; i < num_data_; ++i) {
      const int tid = omp_get_thread_num();
      oneline_features.clear();
      // parser
      parser_->ParseOneLine(text_reader_->Lines()[i].c_str(), &oneline_features, &tmp_label);
      // set initial score
Guolin Ke's avatar
Guolin Ke committed
557
      init_score[i] = static_cast<float>(predict_fun_(oneline_features));
Guolin Ke's avatar
Guolin Ke committed
558
      // set label
559
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
560
561
562
563
564
565
566
567
568
569
570
      // free processed line:
      text_reader_->Lines()[i].clear();
      // shrink_to_fit will be very slow in linux, and seems not free memory, disable for now
      // text_reader_->Lines()[i].shrink_to_fit();
      // push data
      for (auto& inner_data : oneline_features) {
        int feature_idx = used_feature_map_[inner_data.first];
        if (feature_idx >= 0) {
          // if is used feature
          features_[feature_idx]->PushData(tid, i, inner_data.second);
        }
Guolin Ke's avatar
Guolin Ke committed
571
572
        else {
          if (inner_data.first == weight_idx_) {
573
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
574
          } else if (inner_data.first == group_idx_) {
575
            metadata_.SetQueryAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
576
577
          }
        }
Guolin Ke's avatar
Guolin Ke committed
578
579
580
      }
    }
    // metadata_ will manage space of init_score
Guolin Ke's avatar
Guolin Ke committed
581
582
    metadata_.SetInitScore(init_score, num_data_);
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
583
584
585
  }

  #pragma omp parallel for schedule(guided)
586
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
587
588
589
590
591
592
593
594
    features_[i]->FinishLoad();
  }
  // text data can be free after loaded feature values
  text_reader_->Clear();
}


void Dataset::ExtractFeaturesFromFile() {
Guolin Ke's avatar
Guolin Ke committed
595
  float* init_score = nullptr;
Guolin Ke's avatar
Guolin Ke committed
596
  if (predict_fun_ != nullptr) {
Guolin Ke's avatar
Guolin Ke committed
597
    init_score = new float[num_data_];
Guolin Ke's avatar
Guolin Ke committed
598
599
600
601
  }
  std::function<void(data_size_t, const std::vector<std::string>&)> process_fun =
    [this, &init_score]
  (data_size_t start_idx, const std::vector<std::string>& lines) {
602
603
    std::vector<std::pair<int, double>> oneline_features;
    double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
604
    #pragma omp parallel for schedule(static) private(oneline_features) firstprivate(tmp_label)
605
    for (data_size_t i = 0; i < static_cast<data_size_t>(lines.size()); ++i) {
Guolin Ke's avatar
Guolin Ke committed
606
607
608
609
610
611
      const int tid = omp_get_thread_num();
      oneline_features.clear();
      // parser
      parser_->ParseOneLine(lines[i].c_str(), &oneline_features, &tmp_label);
      // set initial score
      if (init_score != nullptr) {
Guolin Ke's avatar
Guolin Ke committed
612
        init_score[start_idx + i] = static_cast<float>(predict_fun_(oneline_features));
Guolin Ke's avatar
Guolin Ke committed
613
614
      }
      // set label
615
      metadata_.SetLabelAt(start_idx + i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
616
617
618
619
620
621
622
      // push data
      for (auto& inner_data : oneline_features) {
        int feature_idx = used_feature_map_[inner_data.first];
        if (feature_idx >= 0) {
          // if is used feature
          features_[feature_idx]->PushData(tid, start_idx + i, inner_data.second);
        }
Guolin Ke's avatar
Guolin Ke committed
623
624
        else {
          if (inner_data.first == weight_idx_) {
625
            metadata_.SetWeightAt(start_idx + i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
626
          } else if (inner_data.first == group_idx_) {
627
            metadata_.SetQueryAt(start_idx + i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
628
629
          }
        }
Guolin Ke's avatar
Guolin Ke committed
630
631
632
633
634
635
636
637
638
639
640
641
642
643
      }
    }
  };

  if (used_data_indices_.size() > 0) {
    // only need part of data
    text_reader_->ReadPartAndProcessParallel(used_data_indices_, process_fun);
  } else {
    // need full data
    text_reader_->ReadAllAndProcessParallel(process_fun);
  }

  // metadata_ will manage space of init_score
  if (init_score != nullptr) {
Guolin Ke's avatar
Guolin Ke committed
644
645
    metadata_.SetInitScore(init_score, num_data_);
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
646
647
648
  }

  #pragma omp parallel for schedule(guided)
649
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
    features_[i]->FinishLoad();
  }
}

void Dataset::SaveBinaryFile() {
  // if is loaded from binary file, not need to save 
  if (!is_loading_from_binfile_) {
    std::string bin_filename(data_filename_);
    bin_filename.append(".bin");
    FILE* file;
    #ifdef _MSC_VER
    fopen_s(&file, bin_filename.c_str(), "wb");
    #else
    file = fopen(bin_filename.c_str(), "wb");
    #endif
    if (file == NULL) {
Qiwei Ye's avatar
Qiwei Ye committed
666
      Log::Fatal("Cannot write binary data to %s ", bin_filename.c_str());
Guolin Ke's avatar
Guolin Ke committed
667
668
    }

669
    Log::Info("Saving data to binary file: %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
670
671
672

    // get size of header
    size_t size_of_header = sizeof(global_num_data_) + sizeof(is_enable_sparse_)
673
674
675
676
677
      + sizeof(max_bin_) + sizeof(num_data_) + sizeof(num_features_) + sizeof(num_total_features_) +sizeof(size_t) + sizeof(int) * used_feature_map_.size();
    // size of feature names
    for (int i = 0; i < num_total_features_; ++i) {
      size_of_header += feature_names_[i].size() + sizeof(int);
    }
Guolin Ke's avatar
Guolin Ke committed
678
679
680
681
682
683
684
    fwrite(&size_of_header, sizeof(size_of_header), 1, file);
    // write header
    fwrite(&global_num_data_, sizeof(global_num_data_), 1, file);
    fwrite(&is_enable_sparse_, sizeof(is_enable_sparse_), 1, file);
    fwrite(&max_bin_, sizeof(max_bin_), 1, file);
    fwrite(&num_data_, sizeof(num_data_), 1, file);
    fwrite(&num_features_, sizeof(num_features_), 1, file);
685
    fwrite(&num_total_features_, sizeof(num_features_), 1, file);
Guolin Ke's avatar
Guolin Ke committed
686
687
688
689
    size_t num_used_feature_map = used_feature_map_.size();
    fwrite(&num_used_feature_map, sizeof(num_used_feature_map), 1, file);
    fwrite(used_feature_map_.data(), sizeof(int), num_used_feature_map, file);

690
691
692
693
694
695
696
697
    // write feature names
    for (int i = 0; i < num_total_features_; ++i) {
      int str_len = static_cast<int>(feature_names_[i].size());
      fwrite(&str_len, sizeof(int), 1, file);
      const char* c_str = feature_names_[i].c_str();
      fwrite(c_str, sizeof(char), str_len, file);
    }

Guolin Ke's avatar
Guolin Ke committed
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
    // get size of meta data
    size_t size_of_metadata = metadata_.SizesInByte();
    fwrite(&size_of_metadata, sizeof(size_of_metadata), 1, file);
    // write meta data
    metadata_.SaveBinaryToFile(file);

    // write feature data
    for (int i = 0; i < num_features_; ++i) {
      // get size of feature
      size_t size_of_feature = features_[i]->SizesInByte();
      fwrite(&size_of_feature, sizeof(size_of_feature), 1, file);
      // write feature
      features_[i]->SaveBinaryToFile(file);
    }
    fclose(file);
  }
}

void Dataset::CheckCanLoadFromBin() {
  std::string bin_filename(data_filename_);
  bin_filename.append(".bin");

  FILE* file;

  #ifdef _MSC_VER
  fopen_s(&file, bin_filename.c_str(), "rb");
  #else
  file = fopen(bin_filename.c_str(), "rb");
  #endif

  if (file == NULL) {
    is_loading_from_binfile_ = false;
  } else {
    is_loading_from_binfile_ = true;
    fclose(file);
  }
}

void Dataset::LoadDataFromBinFile(int rank, int num_machines, bool is_pre_partition) {
  std::string bin_filename(data_filename_);
  bin_filename.append(".bin");

  FILE* file;

  #ifdef _MSC_VER
  fopen_s(&file, bin_filename.c_str(), "rb");
  #else
  file = fopen(bin_filename.c_str(), "rb");
  #endif

  if (file == NULL) {
Qiwei Ye's avatar
Qiwei Ye committed
749
    Log::Fatal("Cannot read binary data from %s", bin_filename.c_str());
Guolin Ke's avatar
Guolin Ke committed
750
751
752
753
754
755
756
757
758
759
  }

  // buffer to read binary file
  size_t buffer_size = 16 * 1024 * 1024;
  char* buffer = new char[buffer_size];

  // read size of header
  size_t read_cnt = fread(buffer, sizeof(size_t), 1, file);

  if (read_cnt != 1) {
Qiwei Ye's avatar
Qiwei Ye committed
760
    Log::Fatal("Binary file format error at header size");
Guolin Ke's avatar
Guolin Ke committed
761
762
763
764
765
766
767
768
769
770
771
772
773
774
  }

  size_t size_of_head = *(reinterpret_cast<size_t*>(buffer));

  // re-allocmate space if not enough
  if (size_of_head > buffer_size) {
    delete[] buffer;
    buffer_size = size_of_head;
    buffer = new char[buffer_size];
  }
  // read header
  read_cnt = fread(buffer, 1, size_of_head, file);

  if (read_cnt != size_of_head) {
Qiwei Ye's avatar
Qiwei Ye committed
775
    Log::Fatal("Binary file format error at header");
Guolin Ke's avatar
Guolin Ke committed
776
777
778
779
780
781
782
783
784
785
786
787
788
  }
  // get header 
  const char* mem_ptr = buffer;
  global_num_data_ = *(reinterpret_cast<const size_t*>(mem_ptr));
  mem_ptr += sizeof(global_num_data_);
  is_enable_sparse_ = *(reinterpret_cast<const bool*>(mem_ptr));
  mem_ptr += sizeof(is_enable_sparse_);
  max_bin_ = *(reinterpret_cast<const int*>(mem_ptr));
  mem_ptr += sizeof(max_bin_);
  num_data_ = *(reinterpret_cast<const data_size_t*>(mem_ptr));
  mem_ptr += sizeof(num_data_);
  num_features_ = *(reinterpret_cast<const int*>(mem_ptr));
  mem_ptr += sizeof(num_features_);
789
790
  num_total_features_ = *(reinterpret_cast<const int*>(mem_ptr));
  mem_ptr += sizeof(num_total_features_);
Guolin Ke's avatar
Guolin Ke committed
791
792
793
794
795
796
797
  size_t num_used_feature_map = *(reinterpret_cast<const size_t*>(mem_ptr));
  mem_ptr += sizeof(num_used_feature_map);
  const int* tmp_feature_map = reinterpret_cast<const int*>(mem_ptr);
  used_feature_map_.clear();
  for (size_t i = 0; i < num_used_feature_map; ++i) {
    used_feature_map_.push_back(tmp_feature_map[i]);
  }
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
  mem_ptr += sizeof(int) * num_used_feature_map;
  // get feature names
  feature_names_.clear();
  // write feature names
  for (int i = 0; i < num_total_features_; ++i) {
    int str_len = *(reinterpret_cast<const int*>(mem_ptr));
    mem_ptr += sizeof(int);
    std::stringstream str_buf;
    for (int j = 0; j < str_len; ++j) {
      char tmp_char = *(reinterpret_cast<const char*>(mem_ptr));
      mem_ptr += sizeof(char);
      str_buf << tmp_char;
    }
    feature_names_.emplace_back(str_buf.str());
  }
Guolin Ke's avatar
Guolin Ke committed
813
814
815
816
817

  // read size of meta data
  read_cnt = fread(buffer, sizeof(size_t), 1, file);

  if (read_cnt != 1) {
Qiwei Ye's avatar
Qiwei Ye committed
818
    Log::Fatal("Binary file format error: wrong size of meta data");
Guolin Ke's avatar
Guolin Ke committed
819
820
821
822
  }

  size_t size_of_metadata = *(reinterpret_cast<size_t*>(buffer));

Hui Xue's avatar
Hui Xue committed
823
  // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
824
825
826
827
828
829
830
831
832
  if (size_of_metadata > buffer_size) {
    delete[] buffer;
    buffer_size = size_of_metadata;
    buffer = new char[buffer_size];
  }
  //  read meta data
  read_cnt = fread(buffer, 1, size_of_metadata, file);

  if (read_cnt != size_of_metadata) {
Qiwei Ye's avatar
Qiwei Ye committed
833
    Log::Fatal("Binary file format error: wrong size of meta data");
Guolin Ke's avatar
Guolin Ke committed
834
835
836
837
838
839
840
841
842
843
844
  }
  // load meta data
  metadata_.LoadFromMemory(buffer);

  used_data_indices_.clear();
  global_num_data_ = num_data_;
  // sample local used data if need to partition
  if (num_machines > 1 && !is_pre_partition) {
    const data_size_t* query_boundaries = metadata_.query_boundaries();
    if (query_boundaries == nullptr) {
      // if not contain query file, minimal sample unit is one record
845
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
846
847
848
849
850
851
852
853
854
        if (random_.NextInt(0, num_machines) == rank) {
          used_data_indices_.push_back(i);
        } 
      }
    } else {
      // if contain query file, minimal sample unit is one query
      data_size_t num_queries = metadata_.num_queries();
      data_size_t qid = -1;
      bool is_query_used = false;
855
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
856
        if (qid >= num_queries) {
Qiwei Ye's avatar
Qiwei Ye committed
857
          Log::Fatal("current query is exceed the range of query file, please ensure your query file is correct");
Guolin Ke's avatar
Guolin Ke committed
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
        }
        if (i >= query_boundaries[qid + 1]) {
          // if is new query
          is_query_used = false;
          if (random_.NextInt(0, num_machines) == rank) {
            is_query_used = true;
          }
          ++qid;
        }
        if (is_query_used) {
          used_data_indices_.push_back(i);
        }
      }
    }
    num_data_ = static_cast<data_size_t>(used_data_indices_.size());
  }
  metadata_.PartitionLabel(used_data_indices_);
  // read feature data
  for (int i = 0; i < num_features_; ++i) {
    // read feature size
    read_cnt = fread(buffer, sizeof(size_t), 1, file);
    if (read_cnt != 1) {
Qiwei Ye's avatar
Qiwei Ye committed
880
      Log::Fatal("Binary file format error at feature %d's size", i);
Guolin Ke's avatar
Guolin Ke committed
881
882
    }
    size_t size_of_feature = *(reinterpret_cast<size_t*>(buffer));
Hui Xue's avatar
Hui Xue committed
883
    // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
884
885
886
887
888
889
890
891
892
    if (size_of_feature > buffer_size) {
      delete[] buffer;
      buffer_size = size_of_feature;
      buffer = new char[buffer_size];
    }

    read_cnt = fread(buffer, 1, size_of_feature, file);

    if (read_cnt != size_of_feature) {
Qiwei Ye's avatar
Qiwei Ye committed
893
      Log::Fatal("Binary file format error at feature %d loading , read count %d", i, read_cnt);
Guolin Ke's avatar
Guolin Ke committed
894
895
896
897
898
899
900
901
902
    }
    features_.push_back(new Feature(buffer, static_cast<data_size_t>(global_num_data_), used_data_indices_));
  }
  delete[] buffer;
  fclose(file);
}

void Dataset::CheckDataset() {
  if (num_data_ <= 0) {
Qiwei Ye's avatar
Qiwei Ye committed
903
    Log::Fatal("Data file %s is empty", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
904
905
  }
  if (features_.size() <= 0) {
Qiwei Ye's avatar
Qiwei Ye committed
906
    Log::Fatal("Usable feature of data %s is null", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
907
908
909
910
  }
}

}  // namespace LightGBM