def to_dict(self):
     return {
         'name': self.name,
         'featurizer': ObjectJSON.callable_to_dict(self.featurizer),
         'topology': self.topology,
         'kwargs': self.kwargs
     }
Ejemplo n.º 2
0
 def to_dict(self):
     return {
         'name': self.name,
         'featurizer': ObjectJSON.callable_to_dict(self.featurizer),
         'topology': self.topology,
         'kwargs': self.kwargs
     }
 def to_dict(self):
     return {
         'name': self.name,
         'featurizer': ObjectJSON.callable_to_dict(self.featurizer),
         'topology': self.topology,
         'kwargs': self.kwargs,
         'cv_wrap_numpy_array': self.cv_wrap_numpy_array,
         'cv_scalarize_numpy_singletons': self.cv_scalarize_numpy_singletons
     }
Ejemplo n.º 4
0
 def to_dict(self):
     return {
         'name': self.name,
         'featurizer': ObjectJSON.callable_to_dict(self.featurizer),
         'topology': self.topology,
         'kwargs': self.kwargs,
         'cv_wrap_numpy_array': self.cv_wrap_numpy_array,
         'cv_scalarize_numpy_singletons': self.cv_scalarize_numpy_singletons
     }
 def to_dict(self):
     dct = super(CallableCV, self).to_dict()
     callable_argument = self.__class__.args()[2]
     dct[callable_argument] = ObjectJSON.callable_to_dict(self.cv_callable)
     dct['cv_requires_lists'] = self.cv_requires_lists
     dct['cv_wrap_numpy_array'] = self.cv_wrap_numpy_array
     dct['cv_scalarize_numpy_singletons'] = \
         self.cv_scalarize_numpy_singletons
     dct['kwargs'] = self.kwargs
     return dct
Ejemplo n.º 6
0
 def to_dict(self):
     dct = super(CallableCV, self).to_dict()
     callable_argument = self.__class__.args()[2]
     dct[callable_argument] = ObjectJSON.callable_to_dict(self.cv_callable)
     dct['cv_requires_lists'] = self.cv_requires_lists
     dct['cv_wrap_numpy_array'] = self.cv_wrap_numpy_array
     dct['cv_scalarize_numpy_singletons'] = \
         self.cv_scalarize_numpy_singletons
     dct['kwargs'] = self.kwargs
     return dct