dataset.cpp 36.5 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
  const IOConfig& io_config, const PredictFunction& predict_fun)
  :data_filename_(data_filename), random_(io_config.data_random_seed),
Guolin Ke's avatar
Guolin Ke committed
21
22
23
24
25
  max_bin_(io_config.max_bin), is_enable_sparse_(io_config.is_enable_sparse), 
  predict_fun_(predict_fun), bin_construct_sample_cnt_(io_config.bin_construct_sample_cnt) {
  if (io_config.enable_load_from_binary_file) {
    CheckCanLoadFromBin();
  }
Guolin Ke's avatar
Guolin Ke committed
26
  if (is_loading_from_binfile_ && predict_fun != nullptr) {
27
    Log::Info("Cannot performing initialization of prediction by using binary file, using text file instead");
Guolin Ke's avatar
Guolin Ke committed
28
29
30
31
32
33
    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
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];
Guolin Ke's avatar
Guolin Ke committed
54
          Log::Info("use %s column as label", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
55
56
57
58
        } else {
          Log::Fatal("cannot find label column: %s in data file", name.c_str());
        }
      } else {
59
        if (!Common::AtoiAndCheck(io_config.label_column.c_str(), &label_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
60
61
62
63
64
          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
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
82
83
84
85
86
    // 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(), ',')) {
87
88
          int tmp = 0;
          if (!Common::AtoiAndCheck(token.c_str(), &tmp)) {
Guolin Ke's avatar
Guolin Ke committed
89
90
91
92
            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
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];
Guolin Ke's avatar
Guolin Ke committed
107
          Log::Info("use %s column as weight", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
108
109
110
111
        } else {
          Log::Fatal("cannot find weight column: %s in data file", name.c_str());
        }
      } else {
112
        if (!Common::AtoiAndCheck(io_config.weight_column.c_str(), &weight_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
113
114
115
116
117
          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
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];
Guolin Ke's avatar
Guolin Ke committed
131
          Log::Info("use %s column as group/query id", name.c_str());
Guolin Ke's avatar
Guolin Ke committed
132
133
134
135
        } else {
          Log::Fatal("cannot find group/query column: %s in data file", name.c_str());
        }
      } else {
136
        if (!Common::AtoiAndCheck(io_config.group_column.c_str(), &group_idx_)) {
Guolin Ke's avatar
Guolin Ke committed
137
138
139
140
141
          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
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) {
Qiwei Ye's avatar
Qiwei Ye committed
153
      Log::Fatal("Cannot recognising input data format, filename: %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
154
155
    }
  } else {
Hui Xue's avatar
Hui Xue committed
156
    // only need to load initilize score, other meta data will be loaded from bin flie
Guolin Ke's avatar
Guolin Ke committed
157
    metadata_.Init(init_score_filename);
158
    Log::Info("Loading data set from binary file");
Guolin Ke's avatar
Guolin Ke committed
159
160
161
162
163
164
    parser_ = nullptr;
    text_reader_ = nullptr;
  }

}

Guolin Ke's avatar
Guolin Ke committed
165
166
167
168
169
170
171
172
173
174
175
Dataset::Dataset(const IOConfig& io_config, const PredictFunction& predict_fun)
  :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), bin_construct_sample_cnt_(io_config.bin_construct_sample_cnt) {

  parser_ = nullptr;
  text_reader_ = nullptr;
}



Guolin Ke's avatar
Guolin Ke committed
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
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
Qiwei Ye committed
213
          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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
        }
        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) {
Guolin Ke's avatar
Guolin Ke committed
232
  const size_t sample_cnt = static_cast<size_t>(num_data_ < bin_construct_sample_cnt_ ? num_data_ : bin_construct_sample_cnt_);
Guolin Ke's avatar
Guolin Ke committed
233
234
235
236
237
238
239
240
241
242
243
  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();
Guolin Ke's avatar
Guolin Ke committed
244
  const data_size_t sample_cnt = static_cast<data_size_t>(bin_construct_sample_cnt_);
Guolin Ke's avatar
Guolin Ke committed
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
  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
270
          Log::Fatal("Query id is exceed the range of query file, \
Guolin Ke's avatar
Guolin Ke committed
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
                             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());
  }
}

Guolin Ke's avatar
Guolin Ke committed
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
void Dataset::InitByBinMapper(std::vector<const BinMapper*> bin_mappers, data_size_t num_data) {
  num_data_ = num_data;
  global_num_data_ = num_data_;
  // initialize label
  metadata_.Init(num_data_, -1, -1);
  // free old memory
  for (auto& feature : features_) {
    delete feature;
  }
  features_.clear();
  used_feature_map_ = std::vector<int>(bin_mappers.size(), -1);
  for (size_t i = 0; i < bin_mappers.size(); ++i) {
    if (bin_mappers[i] != nullptr) {
      features_.push_back(new Feature(static_cast<int>(i), new BinMapper(bin_mappers[i]), num_data_, is_enable_sparse_));
      used_feature_map_[i] = static_cast<int>(features_.size());
    }
  }
  num_features_ = static_cast<int>(features_.size());
}

std::vector<const BinMapper*> Dataset::GetBinMappers() const {
  std::vector<const BinMapper*> ret(num_total_features_, nullptr);
  for (const auto feature : features_) {
    ret[feature->feature_index()] = feature->bin_mapper();
  }
  return ret;
}

void Dataset::PushData(const std::vector<std::vector<std::pair<int, float>>>& datas, data_size_t start_idx, bool is_finished) {
  // if doesn't need to prediction with initial model
#pragma omp parallel for schedule(guided) 
  for (data_size_t i = 0; i < static_cast<int>(datas.size()); ++i) {
    const int tid = omp_get_thread_num();
    for (auto& inner_data : datas[i]) {
      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);
      } 
    }
  }
  if (is_finished) {
#pragma omp parallel for schedule(guided)
    for (int i = 0; i < num_features_; ++i) {
      features_[i]->FinishLoad();
    }
  }
}

void Dataset::SetField(const char* field_name, const void* field_data, data_size_t num_element, int type) {
  std::string name(field_name);
  name = Common::Trim(name);
  if (name == std::string("label") || name == std::string("target")) {
    if (type != 0) {
      Log::Fatal("type of label should be float");
    }
    metadata_.SetLabel(static_cast<const float*>(field_data), num_element);
  }else if (name == std::string("weight") || name == std::string("weights")) {
    if (type != 0) {
      Log::Fatal("type of weights should be float");
    }
    metadata_.SetWeights(static_cast<const float*>(field_data), num_element);
  } else if (name == std::string("init_score")) {
    if (type != 0) {
      Log::Fatal("type of init_score should be float");
    }
    metadata_.SetInitScore(static_cast<const float*>(field_data), num_element);
  } else if (name == std::string("query") || name == std::string("group")) {
    if (type != 1) {
      Log::Fatal("type of init_score should be int");
    }
    metadata_.SetQueryBoundaries(static_cast<const data_size_t*>(field_data), num_element);
  } else {
    Log::Fatal("unknow field name: %s", field_name);
  }
}

Guolin Ke's avatar
Guolin Ke committed
365
366
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
367
  std::vector<std::vector<double>> sample_values;
Guolin Ke's avatar
Guolin Ke committed
368
  // temp buffer for one line features and label
369
370
  std::vector<std::pair<int, double>> oneline_features;
  double label;
Guolin Ke's avatar
Guolin Ke committed
371
372
373
374
375
376
377
378
  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);
    }
379
    for (std::pair<int, double>& inner_data : oneline_features) {
Guolin Ke's avatar
Guolin Ke committed
380
381
382
383
384
      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
385
          sample_values.emplace_back(i + 1, 0.0f);
Guolin Ke's avatar
Guolin Ke committed
386
387
388
389
390
391
392
393
394
395
396
        }
      }
      // 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
397
  num_total_features_ = static_cast<int>(sample_values.size());
Guolin Ke's avatar
Guolin Ke committed
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412

  // 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
413
414
415
416
417
418
  // 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
419
420
421
422
      if (ignore_features_.count(i) > 0) {
        bin_mappers[i] = nullptr;
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
423
424
425
426
427
      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
428
      if (bin_mappers[i] == nullptr) {
Guolin Ke's avatar
Guolin Ke committed
429
        Log::Error("Ignore Feature %s ", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
430
431
      }
      else if (!bin_mappers[i]->is_trival()) {
Guolin Ke's avatar
Guolin Ke committed
432
433
434
435
436
437
438
        // 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
Guolin Ke's avatar
Guolin Ke committed
439
        Log::Error("Feature %s only contains one value, will be ignored", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
        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
486
      if (ignore_features_.count(i) > 0) {
Guolin Ke's avatar
Guolin Ke committed
487
        Log::Error("Ignore Feature %s ", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
488
489
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
490
491
492
493
494
495
      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 {
Guolin Ke's avatar
Guolin Ke committed
496
        Log::Error("Feature %s only contains one value, will be ignored", feature_names_[i].c_str());
Guolin Ke's avatar
Guolin Ke committed
497
498
499
500
501
502
503
504
505
506
507
508
509
510
        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
511
  // don't support query id in data file when training in parallel
Guolin Ke's avatar
Guolin Ke committed
512
513
514
515
516
517
  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
518
519
520
521
522
523
524
525
526
527
528
  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
529
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
530
531
532
533
534
535
536
537
538
      // 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
539
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
540
541
542
543
544

      // extract features
      ExtractFeaturesFromFile();
    }
  } else {
Guolin Ke's avatar
Guolin Ke committed
545
546
    std::string bin_filename(data_filename_);
    bin_filename.append(".bin");
Guolin Ke's avatar
Guolin Ke committed
547
    // load data from binary file
Guolin Ke's avatar
Guolin Ke committed
548
    LoadDataFromBinFile(bin_filename.c_str(), rank, num_machines, is_pre_partition);
Guolin Ke's avatar
Guolin Ke committed
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
  }
  // 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
566
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
567
568
569
570
571
572
573
      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());
574
575
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
576
577
578
579
580
581
      // 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
582
      metadata_.Init(num_data_, weight_idx_, group_idx_);
Guolin Ke's avatar
Guolin Ke committed
583
584
585
586
587
588
589
      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());
590
591
      num_total_features_ = train_set->num_total_features_;
      feature_names_ = train_set->feature_names_;
Guolin Ke's avatar
Guolin Ke committed
592
593
594
595
      // extract features
      ExtractFeaturesFromFile();
    }
  } else {
Guolin Ke's avatar
Guolin Ke committed
596
597
    std::string bin_filename(data_filename_);
    bin_filename.append(".bin");
Guolin Ke's avatar
Guolin Ke committed
598
    // load from binary file
Guolin Ke's avatar
Guolin Ke committed
599
    LoadDataFromBinFile(bin_filename.c_str(), 0, 1, false);
Guolin Ke's avatar
Guolin Ke committed
600
601
602
603
604
605
606
607
  }
  // 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() {
608
609
  std::vector<std::pair<int, double>> oneline_features;
  double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
610
611
612
613
614
615
616
617
618
  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
619
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
620
621
622
623
624
625
626
627
628
629
630
      // 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
631
632
        else {
          if (inner_data.first == weight_idx_) {
633
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
634
          } else if (inner_data.first == group_idx_) {
635
            metadata_.SetQueryAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
636
637
          }
        }
Guolin Ke's avatar
Guolin Ke committed
638
639
640
641
      }
    }
  } else {
    // if need to prediction with initial model
Guolin Ke's avatar
Guolin Ke committed
642
    float* init_score = new float[num_data_];
Guolin Ke's avatar
Guolin Ke committed
643
644
645
646
647
648
649
    #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
650
      init_score[i] = static_cast<float>(predict_fun_(oneline_features));
Guolin Ke's avatar
Guolin Ke committed
651
      // set label
652
      metadata_.SetLabelAt(i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
653
654
655
656
657
658
659
660
661
662
663
      // 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
664
665
        else {
          if (inner_data.first == weight_idx_) {
666
            metadata_.SetWeightAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
667
          } else if (inner_data.first == group_idx_) {
668
            metadata_.SetQueryAt(i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
669
670
          }
        }
Guolin Ke's avatar
Guolin Ke committed
671
672
673
      }
    }
    // metadata_ will manage space of init_score
Guolin Ke's avatar
Guolin Ke committed
674
675
    metadata_.SetInitScore(init_score, num_data_);
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
676
677
678
  }

  #pragma omp parallel for schedule(guided)
679
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
680
681
682
683
684
685
686
687
    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
688
  float* init_score = nullptr;
Guolin Ke's avatar
Guolin Ke committed
689
  if (predict_fun_ != nullptr) {
Guolin Ke's avatar
Guolin Ke committed
690
    init_score = new float[num_data_];
Guolin Ke's avatar
Guolin Ke committed
691
692
693
694
  }
  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) {
695
696
    std::vector<std::pair<int, double>> oneline_features;
    double tmp_label = 0.0f;
Guolin Ke's avatar
Guolin Ke committed
697
    #pragma omp parallel for schedule(static) private(oneline_features) firstprivate(tmp_label)
698
    for (data_size_t i = 0; i < static_cast<data_size_t>(lines.size()); ++i) {
Guolin Ke's avatar
Guolin Ke committed
699
700
701
702
703
704
      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
705
        init_score[start_idx + i] = static_cast<float>(predict_fun_(oneline_features));
Guolin Ke's avatar
Guolin Ke committed
706
707
      }
      // set label
708
      metadata_.SetLabelAt(start_idx + i, static_cast<float>(tmp_label));
Guolin Ke's avatar
Guolin Ke committed
709
710
711
712
713
714
715
      // 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
716
717
        else {
          if (inner_data.first == weight_idx_) {
718
            metadata_.SetWeightAt(start_idx + i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
719
          } else if (inner_data.first == group_idx_) {
720
            metadata_.SetQueryAt(start_idx + i, static_cast<float>(inner_data.second));
Guolin Ke's avatar
Guolin Ke committed
721
722
          }
        }
Guolin Ke's avatar
Guolin Ke committed
723
724
725
726
727
728
729
730
731
732
733
734
735
736
      }
    }
  };

  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
737
738
    metadata_.SetInitScore(init_score, num_data_);
    delete[] init_score;
Guolin Ke's avatar
Guolin Ke committed
739
740
741
  }

  #pragma omp parallel for schedule(guided)
742
  for (int i = 0; i < num_features_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
743
744
745
746
    features_[i]->FinishLoad();
  }
}

Guolin Ke's avatar
Guolin Ke committed
747
748
void Dataset::SaveBinaryFile(const char* bin_filename) {
  
Guolin Ke's avatar
Guolin Ke committed
749
  if (!is_loading_from_binfile_) {
Guolin Ke's avatar
Guolin Ke committed
750
751
752
753
754
755
    // if not pass a filename, just append ".bin" of original file
    if (bin_filename == nullptr || bin_filename[0] == '\0') {
      std::string bin_filename_str(data_filename_);
      bin_filename_str.append(".bin");
      bin_filename = bin_filename_str.c_str();
    }
Guolin Ke's avatar
Guolin Ke committed
756
757
    FILE* file;
    #ifdef _MSC_VER
Guolin Ke's avatar
Guolin Ke committed
758
    fopen_s(&file, bin_filename, "wb");
Guolin Ke's avatar
Guolin Ke committed
759
    #else
Guolin Ke's avatar
Guolin Ke committed
760
    file = fopen(bin_filename, "wb");
Guolin Ke's avatar
Guolin Ke committed
761
762
    #endif
    if (file == NULL) {
Guolin Ke's avatar
Guolin Ke committed
763
      Log::Fatal("Cannot write binary data to %s ", bin_filename);
Guolin Ke's avatar
Guolin Ke committed
764
765
    }

766
    Log::Info("Saving data to binary file: %s", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
767
768
769

    // get size of header
    size_t size_of_header = sizeof(global_num_data_) + sizeof(is_enable_sparse_)
770
771
772
773
774
      + 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
775
776
777
778
779
780
781
    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);
782
    fwrite(&num_total_features_, sizeof(num_features_), 1, file);
Guolin Ke's avatar
Guolin Ke committed
783
784
785
786
    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);

787
788
789
790
791
792
793
794
    // 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
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
    // 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);
  }
}

Guolin Ke's avatar
Guolin Ke committed
833
void Dataset::LoadDataFromBinFile(const char* bin_filename, int rank, int num_machines, bool is_pre_partition) {
Guolin Ke's avatar
Guolin Ke committed
834
835
836
837

  FILE* file;

  #ifdef _MSC_VER
Guolin Ke's avatar
Guolin Ke committed
838
  fopen_s(&file, bin_filename, "rb");
Guolin Ke's avatar
Guolin Ke committed
839
  #else
Guolin Ke's avatar
Guolin Ke committed
840
  file = fopen(bin_filename, "rb");
Guolin Ke's avatar
Guolin Ke committed
841
842
843
  #endif

  if (file == NULL) {
Guolin Ke's avatar
Guolin Ke committed
844
    Log::Fatal("Cannot read binary data from %s", bin_filename);
Guolin Ke's avatar
Guolin Ke committed
845
846
847
848
849
850
851
852
853
854
  }

  // 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
855
    Log::Fatal("Binary file format error at header size");
Guolin Ke's avatar
Guolin Ke committed
856
857
858
859
860
861
862
863
864
865
866
867
868
869
  }

  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
870
    Log::Fatal("Binary file format error at header");
Guolin Ke's avatar
Guolin Ke committed
871
872
873
874
875
876
877
878
879
880
881
882
883
  }
  // 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_);
884
885
  num_total_features_ = *(reinterpret_cast<const int*>(mem_ptr));
  mem_ptr += sizeof(num_total_features_);
Guolin Ke's avatar
Guolin Ke committed
886
887
888
889
890
891
892
  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]);
  }
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
  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
908
909
910
911
912

  // 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
913
    Log::Fatal("Binary file format error: wrong size of meta data");
Guolin Ke's avatar
Guolin Ke committed
914
915
916
917
  }

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

Hui Xue's avatar
Hui Xue committed
918
  // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
919
920
921
922
923
924
925
926
927
  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
928
    Log::Fatal("Binary file format error: wrong size of meta data");
Guolin Ke's avatar
Guolin Ke committed
929
930
931
932
933
934
935
936
937
938
939
  }
  // 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
940
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
941
942
943
944
945
946
947
948
949
        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;
950
      for (data_size_t i = 0; i < num_data_; ++i) {
Guolin Ke's avatar
Guolin Ke committed
951
        if (qid >= num_queries) {
Qiwei Ye's avatar
Qiwei Ye committed
952
          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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
        }
        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
975
      Log::Fatal("Binary file format error at feature %d's size", i);
Guolin Ke's avatar
Guolin Ke committed
976
977
    }
    size_t size_of_feature = *(reinterpret_cast<size_t*>(buffer));
Hui Xue's avatar
Hui Xue committed
978
    // re-allocate space if not enough
Guolin Ke's avatar
Guolin Ke committed
979
980
981
982
983
984
985
986
987
    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
988
      Log::Fatal("Binary file format error at feature %d loading , read count %d", i, read_cnt);
Guolin Ke's avatar
Guolin Ke committed
989
990
991
992
993
994
995
996
997
    }
    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
998
    Log::Fatal("Data file %s is empty", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
999
1000
  }
  if (features_.size() <= 0) {
Qiwei Ye's avatar
Qiwei Ye committed
1001
    Log::Fatal("Usable feature of data %s is null", data_filename_);
Guolin Ke's avatar
Guolin Ke committed
1002
1003
1004
1005
  }
}

}  // namespace LightGBM