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

Matrix::DistributedAccess* Impala::Core::Training::LoadDistributedAccess ( String  model,
String  kernel,
Core::Database::RawDataSet *  set,
Core::Database::RawDataSet *  set2,
int  startNode,
int  nodeCount 
) [inline]

Definition at line 18 of file LoadDistributedAccess.h.

References Impala::CmdOptions::GetInstance(), Impala::Core::Database::RawDataSet::GetSetName(), Impala::CmdOptions::GetString(), Impala::Persistency::KernelMatrixLocator::SetEmployReal32(), Impala::Persistency::KernelMatrixLocator::SetFeatureIndexCat(), Impala::Persistency::KernelMatrixLocator::SetNodeCount(), and Impala::Persistency::KernelMatrixLocator::SetStartNode().

Referenced by Impala::Core::Training::Factory::GetDistributedAccess(), and Impala::Application::RunDistributedLearningEngine().

00022 {
00023     String setName = set->GetSetName();
00024     String develSetName("");
00025     if (set2)
00026     {
00027         setName = set2->GetSetName();
00028         develSetName = set->GetSetName();
00029     }
00030     CmdOptions& options = CmdOptions::GetInstance();
00031     Persistency::KernelMatrixLocator loc(setName, true, "", develSetName,
00032                                          model, kernel, "", options);
00033     loc.SetFeatureIndexCat(options.GetString("featureIndexCat"));
00034     loc.SetStartNode(startNode);
00035     loc.SetNodeCount(nodeCount);
00036     loc.SetEmployReal32(true);
00037     return Persistency::DistributedAccessRepository().Get(loc);
00038 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:09 2011 for ImpalaSrc by  doxygen 1.5.1