Example #1
0
 def model_setup(self):
     """Prepares all the model architectures required for the application."""
     self.DNN = SganMLP(self.settings.number_of_bins)
     self.D = SganMLP(self.settings.number_of_bins)
     self.G = Generator()
Example #2
0
 def model_setup(self):
     """Prepares all the model architectures required for the application."""
     self.DNN = DgganMLP(self.settings.hidden_size)
     self.D = DgganMLP(self.settings.hidden_size)
     self.G = Generator(self.settings.hidden_size)
Example #3
0
 def model_setup(self):
     """Prepares all the model architectures required for the application."""
     self.DNN = MLP()
     self.D = MLP()
     self.G = Generator()