We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab7629 commit 3a6caadCopy full SHA for 3a6caad
mlfromscratch/unsupervised_learning/autoencoder.py
@@ -14,7 +14,7 @@
14
15
16
class Autoencoder():
17
- """A Autoencoder with deep fully-connected neural nets.
+ """An Autoencoder with deep fully-connected neural nets.
18
19
Training Data: MNIST Handwritten Digits (28x28 images)
20
"""
@@ -27,7 +27,6 @@ def __init__(self):
27
optimizer = Adam(learning_rate=0.0002, b1=0.5)
28
loss_function = SquareLoss
29
30
- # Build the discriminator
31
self.encoder = self.build_encoder(optimizer, loss_function)
32
self.decoder = self.build_decoder(optimizer, loss_function)
33
0 commit comments