Example #1
0
bool Estimator::start() {
    bool result = true;
    std::cout << "[Log] Estimation started.\n";

    parser->loadFile(this->inputFileName);
    //To-Do
    //
    
    // Test Code
    this->input = parser->getAsInputData();
    this->input->post();
    TrainingData* tr = new TrainingData();
    tr = parser->getAsTrainingData();
    tr->post();
    std::cout << tr->getFeatureVectorAt(0)->post();
    std::cout << tr->getLabelVectorAt(0)->post();

    // End of the block

    return result;
}