Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void @41::DumpTree ( Feature::RandomTree tree  )  [static]

Definition at line 125 of file mainRandomForest.cpp.

References Impala::Core::Feature::RandomTree::Dump(), ILOG_ERROR, ILOG_FUNCTION, and main().

Referenced by RandomForest().

00126 {
00127     ILOG_FUNCTION(main);
00128     std::ofstream ofs("treedump.txt");
00129     if(ofs.is_open())
00130     {
00131         tree->Dump(ofs, 10000);
00132         ofs.close();
00133     }
00134     else
00135         ILOG_ERROR("couldn't dump trees");
00136 }

Here is the call graph for this function:


Generated on Fri Mar 19 09:34:59 2010 for ImpalaSrc by  doxygen 1.5.1