Ejemplo n.º 1
0
 def name(self):
     return 'applied_model_{}_{}_{}'.format(
         self.model_module, self.model_class, 
         utils.universal_hash((
             self.X,
             self.model_class,
             self.model_module,
             self.model_params,
         )))
Ejemplo n.º 2
0
 def name(self):
     return 'model_{}_{}_{}'.format(self.model_module, self.model_class,
                                    utils.universal_hash(self.kwargs))
Ejemplo n.º 3
0
 def name(self):
     return 'rmse_{}'.format(
         hash((
             utils.universal_hash(self.prediction),
             utils.universal_hash(self.real),
         )))
Ejemplo n.º 4
0
 def name(self):
     return 'idle_{}'.format(utils.universal_hash(self.kwargs))
Ejemplo n.º 5
0
 def name(self):
     return 'data_{}_{}_{}'.format(self.test_ratio, self.seed,
                                   utils.universal_hash((self.X, self.y)))