示例#1
0
文件: database.py 项目: zwcdp/ATM
 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)
示例#2
0
文件: database.py 项目: zwcdp/ATM
 def hyperparameter_values(self):
     return base_64_to_object(self.hyperparameter_values_64)
示例#3
0
文件: database.py 项目: zwcdp/ATM
 def constants(self):
     return base_64_to_object(self.constant_hyperparameters_64)
示例#4
0
文件: database.py 项目: zwcdp/ATM
 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)
示例#5
0
 def trainable_params(self):
     return base_64_to_object(self.trainable_params64)
示例#6
0
 def params(self):
     return base_64_to_object(self.params64)
示例#7
0
 def constants(self):
     return base_64_to_object(self.constants64)
示例#8
0
 def wrapper(self):
     return base_64_to_object(self.wrapper64)