Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

14
  • what is x_train.shape ? Commented May 17, 2021 at 7:08
  • (60000, 28, 28) Commented May 17, 2021 at 7:11
  • 1
    so this is not flattened... you can pass (28,28,) as input_shape and then use a Flatten layer insider the network Commented May 17, 2021 at 7:26
  • How to use flatten inside @MarcoCerliani Commented May 17, 2021 at 7:35
  • 1
    build an AE and fit only the encoder has no sense... follow this track to build an AE on mnist: colab.research.google.com/drive/… Commented May 17, 2021 at 8:04