more ignore

This commit is contained in:
tqchen 2014-09-02 17:40:30 -07:00
parent f3360d173b
commit e6e467ad60
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -44,3 +44,5 @@ Debug
*dump *dump
*save *save
*csv *csv
*.cpage.col
*.cpage

View File

@ -452,7 +452,6 @@ class ColMaker: public IUpdater {
utils::Check(n > 0, "colsample_bylevel is too small that no feature can be included"); utils::Check(n > 0, "colsample_bylevel is too small that no feature can be included");
feat_set.resize(n); feat_set.resize(n);
} }
std::sort(feat_set.begin(), feat_set.end());
utils::IIterator<ColBatch> *iter = p_fmat->ColIterator(feat_set); utils::IIterator<ColBatch> *iter = p_fmat->ColIterator(feat_set);
while (iter->Next()) { while (iter->Next()) {
this->UpdateSolution(iter->Value(), gpair, *p_fmat, info); this->UpdateSolution(iter->Value(), gpair, *p_fmat, info);