Example #1
0
 def categoricals(self):
     """
     A list of categorical variables along with the fixed values
     which define this hyperpartition.
     Each element is a ('name', HyperParameter) tuple.
     """
     return base_64_to_object(self.categorical_hyperparameters_64)
Example #2
0
 def hyperparameter_values(self):
     return base_64_to_object(self.hyperparameter_values_64)
Example #3
0
 def constants(self):
     return base_64_to_object(self.constant_hyperparameters_64)
Example #4
0
 def tunables(self):
     """
     A list of parameters which are unspecified and must be selected
     with a Tuner. Each element is a ('name', HyperParameter) tuple.
     """
     return base_64_to_object(self.tunable_hyperparameters_64)
Example #5
0
 def trainable_params(self):
     return base_64_to_object(self.trainable_params64)
Example #6
0
 def params(self):
     return base_64_to_object(self.params64)
Example #7
0
 def constants(self):
     return base_64_to_object(self.constants64)
Example #8
0
 def wrapper(self):
     return base_64_to_object(self.wrapper64)