Esempio n. 1
0
 def hyperparameters(self):
     """Return the SageMaker hyperparameters for training this KMeans Estimator"""
     hp = dict(force_dense='True')  # KMeans requires this hp to fit on Record objects
     hp.update(super(KMeans, self).hyperparameters())
     return hp
Esempio n. 2
0
 def hyperparameters(self):
     """Return the SageMaker hyperparameters for training this KMeans Estimator"""
     hp = dict(force_dense='True'
               )  # KMeans requires this hp to fit on Record objects
     hp.update(super(KMeans, self).hyperparameters())
     return hp
 def hyperparameters(self):
     """Return the SageMaker hyperparameters for training this ImageClassification Estimator"""
     hp = dict()
     hp.update(super(ImageClassification, self).hyperparameters())
     return hp