コード例 #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
ファイル: database.py プロジェクト: shaneopatrick/ATM
 def trainable_params(self):
     return base_64_to_object(self.trainable_params64)
コード例 #6
0
ファイル: database.py プロジェクト: shaneopatrick/ATM
 def params(self):
     return base_64_to_object(self.params64)
コード例 #7
0
ファイル: database.py プロジェクト: shaneopatrick/ATM
 def constants(self):
     return base_64_to_object(self.constants64)
コード例 #8
0
ファイル: database.py プロジェクト: shaneopatrick/ATM
 def wrapper(self):
     return base_64_to_object(self.wrapper64)