def __init__(self, data_location=None, model_file=None):
     self.arg_obj = ArgParser()
     # this is the local location where test dataset is located
     self.data_location = data_location
     self.model_file = model_file
     self.classification_mapper = None
     self.classification_reducer = None
     self.mapper_param = None
     self.reducer_param = None
    def __init__(self, data_location=None):
        self.arg_obj = ArgParser()

        self.data_location = data_location
        self.sampler = None
        self.feature_extraction_mapper = None
        self.feature_extraction_reducer = None
        self.mapper_param = None
        self.reducer_param = None
        self.training_set_size = None
        self.test_set_size = None
Exemplo n.º 3
0
 def __init__(self):
     self.arg_obj = ArgParser()