We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to implement https://github.com/roatienza/Deep-Learning-Experiments/blob/master/Experiments/Tensorflow/GAN/dcgan_mnist.py and it works fine. But I tried the exact same code without the wrapper class ie I wrote just one class DCGAN and tried to build D, G and AM in the same class through various functions. I came across very weird Keras errors like TypeError: __call__() missing 1 required positional argument: 'inputs' for the line
TypeError: __call__() missing 1 required positional argument: 'inputs'
Deep-Learning-Experiments/Experiments/Tensorflow/GAN/dcgan_mnist.py
Line 133 in e501cc3
Sequential
Also, I noticed that there's a lot of duct-tape code like
if self.D: return self.D
This pattern is repeated whenever you create a D/G/AM model. Why is this. Is this related to the other questions I raised?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying to implement https://github.com/roatienza/Deep-Learning-Experiments/blob/master/Experiments/Tensorflow/GAN/dcgan_mnist.py and it works fine. But I tried the exact same code without the wrapper class ie I wrote just one class DCGAN and tried to build D, G and AM in the same class through various functions. I came across very weird Keras errors like
TypeError: __call__() missing 1 required positional argument: 'inputs'
for the lineDeep-Learning-Experiments/Experiments/Tensorflow/GAN/dcgan_mnist.py
Line 133 in e501cc3
Sequential
object is stateful and changes usage based on whether it is used in the same class or different one?Also, I noticed that there's a lot of duct-tape code like
This pattern is repeated whenever you create a D/G/AM model. Why is this. Is this related to the other questions I raised?
The text was updated successfully, but these errors were encountered: