dataset.cpp 33.4 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
  num_class_ = io_config.num_class;

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

  if (!is_loading_from_binfile_) {
32
    // load weight, query information and initialize score
33
    metadata_.Init(data_filename, init_score_filename, num_class_);
Guolin Ke's avatar
Guolin Ke committed
34
35
36
37
38
39
40
41
    // 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
42
43
      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
44
45
46
47
48
49
50
51
52
53
      }
    }
    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];
54
          Log::Info("Using column %s as label", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
55
        } else {
56
          Log::Fatal("Could not find label column %s in data file", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
57
58
        }
      } else {
59
        if (!Common::AtoiAndCheck(io_config.label_column.c_str(), &label_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
60
          Log::Fatal("label_column is not a number, \
61
62
                      if you want to use a column name, \
                      please add the prefix \"name:\" to the column name");
Guolin Ke's avatar
Guolin Ke committed
63
        }
64
        Log::Info("Using column number %d as label", label_idx_);
Guolin Ke's avatar
Guolin Ke committed
65
66
      }
    }
Guolin Ke's avatar
Guolin Ke committed
67
68
69
70
    if (feature_names_.size() > 0) {
      // erase label column name
      feature_names_.erase(feature_names_.begin() + label_idx_);
    }
Guolin Ke's avatar
Guolin Ke committed
71
72
73
74
75
76
77
78
79
80
81
    // 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 {
82
            Log::Fatal("Could not find ignore column %s in data file", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
83
84
85
86
          }
        }
      } else {
        for (auto token : Common::Split(io_config.ignore_column.c_str(), ',')) {
87
88
          int tmp = 0;
          if (!Common::AtoiAndCheck(token.c_str(), &tmp)) {
Guolin Ke's avatar
Guolin Ke committed
89
            Log::Fatal("ignore_column is not a number, \
90
91
                        if you want to use a column name, \
                        please add the prefix \"name:\" to the column name");
Guolin Ke's avatar
Guolin Ke committed
92
          }
Guolin Ke's avatar
Guolin Ke committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106
          // 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];
107
          Log::Info("Using column %s as weight", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
108
        } else {
109
          Log::Fatal("Could not find weight column %s in data file", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
110
111
        }
      } else {
112
        if (!Common::AtoiAndCheck(io_config.weight_column.c_str(), &weight_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
113
          Log::Fatal("weight_column is not a number, \
114
115
                      if you want to use a column name, \
                      please add the prefix \"name:\" to the column name");
Guolin Ke's avatar
Guolin Ke committed
116
        }
117
        Log::Info("Using column number %d as weight", weight_idx_);
Guolin Ke's avatar
Guolin Ke committed
118
119
120
121
122
123
124
125
126
127
128
129
130
      }
      // 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];
131
          Log::Info("Using column %s as group/query id", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
132
        } else {
133
          Log::Fatal("Could not find group/query column %s in data file", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
134
135
        }
      } else {
136
        if (!Common::AtoiAndCheck(io_config.group_column.c_str(), &group_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
137
          Log::Fatal("group_column is not a number, \
138
139
                      if you want to use a column name, \
                      please add the prefix \"name:\" to the column name");
Guolin Ke's avatar
Guolin Ke committed
140
        }
141
        Log::Info("Using column number %d as group/query id", group_idx_);
Guolin Ke's avatar
Guolin Ke committed
142
143
144
145
146
147
148
149
      }
      // skip for label column
      if (group_idx_ > label_idx_) {
        group_idx_ -= 1;
      }
      ignore_features_.emplace(group_idx_);
    }

Guolin Ke's avatar
Guolin Ke committed
150
    // create text parser
Guolin Ke's avatar
Guolin Ke committed
151
    parser_ = Parser::CreateParser(data_filename_, io_config.has_header, 0, label_idx_);
Guolin Ke's avatar
Guolin Ke committed
152
    if (parser_ == nullptr) {
153
      Log::Fatal("Could not recognize data format of %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
154
155
    }
  } else {
156
    // only need to load initialize score, other meta data will be loaded from binary file
157
    metadata_.Init(init_score_filename, num_class_);
158
    Log::Info("Loading data set from binary file");
Guolin Ke's avatar
Guolin Ke committed
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
    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) {
202
          Log::Fatal("Current query exceeds the range of the query file, please ensure the query file is correct");
Guolin Ke's avatar
Guolin Ke committed
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
        }
        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) {
259
260
          Log::Fatal("Query id exceeds the range of the query file, \
                      please ensure the query file is correct");
Guolin Ke's avatar
Guolin Ke committed
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
        }
        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
279
  std::vector<std::vector<double>> sample_values;
Guolin Ke's avatar
Guolin Ke committed
280
  // temp buffer for one line features and label
281
282
  std::vector<std::pair<int, double>> oneline_features;
  double label;
Guolin Ke's avatar
Guolin Ke committed
283
284
285
286
287
288
289
290
  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);
    }
291
    for (std::pair<int, double>& inner_data : oneline_features) {
Guolin Ke's avatar
Guolin Ke committed
292
293
294
295
296
      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
297
          sample_values.emplace_back(i + 1, 0.0f);
Guolin Ke's avatar
Guolin Ke committed
298
299
300
301
302
303
304
305
306
307
308
        }
      }
      // 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
309
  num_total_features_ = static_cast<int>(sample_values.size());
Guolin Ke's avatar
Guolin Ke committed
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324

  // 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
325
326
327
  // start find bins
  if (num_machines == 1) {
    std::vector<BinMapper*> bin_mappers(sample_values.size());
328
    // if only one machine, find bin locally
Guolin Ke's avatar
Guolin Ke committed
329
330
    #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
331
332
333
334
      if (ignore_features_.count(i) > 0) {
        bin_mappers[i] = nullptr;
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
335
336
337
338
339
      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
340
      if (bin_mappers[i] == nullptr) {
341
        Log::Warning("Ignoring feature %s", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
342
343
      }
      else if (!bin_mappers[i]->is_trival()) {
Guolin Ke's avatar
Guolin Ke committed
344
345
346
347
348
349
350
        // 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
351
        Log::Warning("Ignoring feature %s, only has one value", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
        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_);
375
    // since sizes of different feature may not be same, we expand all bin mapper to type_size
Guolin Ke's avatar
Guolin Ke committed
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
    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
398
      if (ignore_features_.count(i) > 0) {
399
        Log::Warning("Ignoring feature %s", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
400
401
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
402
403
404
405
406
407
      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 {
408
        Log::Warning("Ignoring feature %s, only has one value", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
409
410
411
412
413
414
415
416
417
418
419
420
421
422
        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
423
  // don't support query id in data file when training in parallel
Guolin Ke's avatar
Guolin Ke committed
424
425
  if (num_machines > 1 && !is_pre_partition) {
    if (group_idx_ > 0) {
426
427
      Log::Fatal("Using a query id without pre-partitioning the data file is not supported for parallel training. \
                  Please use an additional query file or pre-partition the data");
Guolin Ke's avatar
Guolin Ke committed
428
429
    }
  }
Guolin Ke's avatar
Guolin Ke committed
430
431
432
433
434
435
436
437
438
439
440
  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
441
      metadata_.Init(num_data_, num_class_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
442
443
444
445
446
447
448
449
450
      // 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
451
      metadata_.Init(num_data_, num_class_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475

      // 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
476
      metadata_.Init(num_data_, num_class_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
477
478
479
480
481
482
483
      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());
484
485
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
486
487
488
489
490
491
      // extract features
      ExtractFeaturesFromMemory();
    } else {
      // Get number of lines of data file
      num_data_ = static_cast<data_size_t>(text_reader_->CountLine());
      // initialize label
492
      metadata_.Init(num_data_, num_class_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
493
494
495
496
497
498
499
      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());
500
501
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
502
503
504
505
506
507
508
509
510
511
512
513
514
515
      // 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() {
516
517
  std::vector<std::pair<int, double>> oneline_features;
  double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
518
519
520
521
522
523
524
525
526
  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
527
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
528
529
530
531
532
533
534
535
536
537
538
      // 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
539
540
        else {
          if (inner_data.first == weight_idx_) {
541
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
542
          } else if (inner_data.first == group_idx_) {
Guolin Ke's avatar
Guolin Ke committed
543
            metadata_.SetQueryAt(i, static_cast<data_size_t>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
544
545
          }
        }
Guolin Ke's avatar
Guolin Ke committed
546
547
548
549
      }
    }
  } else {
    // if need to prediction with initial model
550
    float* init_score = new float[num_data_ * num_class_];
Guolin Ke's avatar
Guolin Ke committed
551
552
553
554
555
556
557
    #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
558
      std::vector<double> oneline_init_score = predict_fun_(oneline_features);
559
      for (int k = 0; k < num_class_; ++k){
560
        init_score[k * num_data_ + i] = static_cast<float>(oneline_init_score[k]);
561
      }
Guolin Ke's avatar
Guolin Ke committed
562
      // set label
563
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
564
565
566
567
568
569
570
571
572
573
574
      // 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
575
576
        else {
          if (inner_data.first == weight_idx_) {
577
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
578
          } else if (inner_data.first == group_idx_) {
Guolin Ke's avatar
Guolin Ke committed
579
            metadata_.SetQueryAt(i, static_cast<data_size_t>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
580
581
          }
        }
Guolin Ke's avatar
Guolin Ke committed
582
583
584
      }
    }
    // metadata_ will manage space of init_score
585
    metadata_.SetInitScore(init_score, num_data_ * num_class_);
Guolin Ke's avatar
Guolin Ke committed
586
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
587
588
589
  }

  #pragma omp parallel for schedule(guided)
590
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
591
592
593
594
595
596
597
598
    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
599
  float* init_score = nullptr;
Guolin Ke's avatar
Guolin Ke committed
600
  if (predict_fun_ != nullptr) {
601
    init_score = new float[num_data_ * num_class_];
Guolin Ke's avatar
Guolin Ke committed
602
603
604
605
  }
  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) {
606
607
    std::vector<std::pair<int, double>> oneline_features;
    double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
608
    #pragma omp parallel for schedule(static) private(oneline_features) firstprivate(tmp_label)
609
    for (data_size_t i = 0; i < static_cast<data_size_t>(lines.size()); ++i) {
Guolin Ke's avatar
Guolin Ke committed
610
611
612
613
614
615
      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) {
616
        std::vector<double> oneline_init_score = predict_fun_(oneline_features);
617
618
619
        for (int k = 0; k < num_class_; ++k){
            init_score[k * num_data_ + start_idx + i] = static_cast<float>(oneline_init_score[k]);
        }
Guolin Ke's avatar
Guolin Ke committed
620
621
      }
      // set label
622
      metadata_.SetLabelAt(start_idx + i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
623
624
625
626
627
628
629
      // 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
630
631
        else {
          if (inner_data.first == weight_idx_) {
632
            metadata_.SetWeightAt(start_idx + i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
633
          } else if (inner_data.first == group_idx_) {
Guolin Ke's avatar
Guolin Ke committed
634
            metadata_.SetQueryAt(start_idx + i, static_cast<data_size_t>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
635
636
          }
        }
Guolin Ke's avatar
Guolin Ke committed
637
638
639
640
641
642
643
644
645
646
647
648
649
650
      }
    }
  };

  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) {
651
    metadata_.SetInitScore(init_score, num_data_ * num_class_);
Guolin Ke's avatar
Guolin Ke committed
652
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
653
654
655
  }

  #pragma omp parallel for schedule(guided)
656
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
657
658
659
660
661
    features_[i]->FinishLoad();
  }
}

void Dataset::SaveBinaryFile() {
662
  // if is loaded from binary file, not need to save
Guolin Ke's avatar
Guolin Ke committed
663
664
665
666
667
668
669
670
671
672
  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) {
673
      Log::Fatal("Could not write binary data to %s", bin_filename.c_str());
Guolin Ke's avatar
Guolin Ke committed
674
675
    }

676
    Log::Info("Saving data to binary file %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
677
678
679

    // get size of header
    size_t size_of_header = sizeof(global_num_data_) + sizeof(is_enable_sparse_)
680
681
682
683
684
      + 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
685
686
687
688
689
690
691
    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);
692
    fwrite(&num_total_features_, sizeof(num_features_), 1, file);
Guolin Ke's avatar
Guolin Ke committed
693
694
695
696
    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);

697
698
699
700
701
702
703
704
    // 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
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
749
750
751
752
753
754
755
    // 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) {
756
    Log::Fatal("Could not read binary data from %s", bin_filename.c_str());
Guolin Ke's avatar
Guolin Ke committed
757
758
759
760
761
762
763
764
765
766
  }

  // 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) {
767
    Log::Fatal("Binary file error: header has the wrong size");
Guolin Ke's avatar
Guolin Ke committed
768
769
770
771
772
773
774
775
776
777
778
779
780
781
  }

  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) {
782
    Log::Fatal("Binary file error: header is incorrect");
Guolin Ke's avatar
Guolin Ke committed
783
  }
784
  // get header
Guolin Ke's avatar
Guolin Ke committed
785
786
787
788
789
790
791
792
793
794
795
  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_);
796
797
  num_total_features_ = *(reinterpret_cast<const int*>(mem_ptr));
  mem_ptr += sizeof(num_total_features_);
Guolin Ke's avatar
Guolin Ke committed
798
799
800
801
802
803
804
  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]);
  }
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
  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
820
821
822
823
824

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

  if (read_cnt != 1) {
825
    Log::Fatal("Binary file error: meta data has the wrong size");
Guolin Ke's avatar
Guolin Ke committed
826
827
828
829
  }

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

Hui Xue's avatar
Hui Xue committed
830
  // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
831
832
833
834
835
836
837
838
839
  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) {
840
    Log::Fatal("Binary file error: meta data is incorrect");
Guolin Ke's avatar
Guolin Ke committed
841
842
843
844
845
846
847
848
849
850
851
  }
  // 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
852
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
853
854
        if (random_.NextInt(0, num_machines) == rank) {
          used_data_indices_.push_back(i);
855
        }
Guolin Ke's avatar
Guolin Ke committed
856
857
858
859
860
861
      }
    } 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;
862
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
863
        if (qid >= num_queries) {
864
          Log::Fatal("Current query exceeds the range of the query file, please ensure the query file is correct");
Guolin Ke's avatar
Guolin Ke committed
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
        }
        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) {
887
      Log::Fatal("Binary file error: feature %d has the wrong size", i);
Guolin Ke's avatar
Guolin Ke committed
888
889
    }
    size_t size_of_feature = *(reinterpret_cast<size_t*>(buffer));
Hui Xue's avatar
Hui Xue committed
890
    // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
891
892
893
894
895
896
897
898
899
    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) {
900
      Log::Fatal("Binary file error: feature %d is incorrect, read count: %d", i, read_cnt);
Guolin Ke's avatar
Guolin Ke committed
901
902
903
904
905
906
907
908
909
    }
    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
910
    Log::Fatal("Data file %s is empty", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
911
912
  }
  if (features_.size() <= 0) {
913
    Log::Fatal("No usable features in data file %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
914
915
916
917
  }
}

}  // namespace LightGBM