Definition at line 139 of file mainRandomForest.cpp. References Impala::Core::Feature::RandomTree::DumpCount(), ILOG_ERROR, ILOG_FUNCTION, main(), and Impala::Util::MakeString(). Referenced by RandomForest(). 00140 { 00141 ILOG_FUNCTION(main); 00142 std::ofstream ofs(("countdump"+MakeString(i)+".txt").c_str()); 00143 if(ofs.is_open()) 00144 { 00145 tree->DumpCount(ofs); 00146 ofs.close(); 00147 } 00148 else 00149 ILOG_ERROR("couldn't dump tree counts"); 00150 }
Here is the call graph for this function:
|