Example #1
0
 def predict_from_data_provider(self, data_provider, *args, **kwargs):
     '''model prediction using data provider'''
     raiseNotDefined()
Example #2
0
 def fit(self, *args, **kwargs):
     '''fit model to data'''
     raiseNotDefined()
Example #3
0
 def predict_from_memory_data(self, data, *args, **kwargs):
     '''model prediction from data that already loaded into memory'''
     raiseNotDefined()
Example #4
0
 def initilize(self, *args, **kwargs):
     '''initialization of the model'''
     raiseNotDefined()
Example #5
0
 def compile_functions(self, *args, **kwargs):
     '''functions used only during training'''
     raiseNotDefined()
Example #6
0
 def compile_model(self, *args, **kwargs):
     '''functions may be used during both training and testing'''
     raiseNotDefined()
Example #7
0
 def extract_feature_from_data_provider(self, data_provider, *args, **kwargs):
     '''extract feature using data provider'''
     raiseNotDefined()
Example #8
0
 def extract_feature_from_memory_data(self, data, *args, **kwargs):
     '''extract feature from data that already loaded into memory'''
     raiseNotDefined()