Skip to content
New issue

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

Make autoencoder easier to copy-paste #2215

Merged
merged 5 commits into from
Aug 14, 2023
Merged

Make autoencoder easier to copy-paste #2215

merged 5 commits into from
Aug 14, 2023

Commits on Apr 4, 2023

  1. Make autoencoder easier to copy-paste

    This commit simply removes the explicit `(28, 28)` and `784` which represented the shape of the FMNIST dataset.
    
     It rather uses a `shape` member variable which is passed into the constructor for the Autoencoder. This `shape` variable is set to be `shape = x_test.shape[1:]` by default.
    beyarkay authored Apr 4, 2023
    Configuration menu
    Copy the full SHA
    7b3dba3 View commit details
    Browse the repository at this point in the history
  2. Fix: linting

    beyarkay authored Apr 4, 2023
    Configuration menu
    Copy the full SHA
    61794fd View commit details
    Browse the repository at this point in the history
  3. Fix: remove trailing comma

    beyarkay committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    f0cec76 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. keras.Model -> Model

    beyarkay authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c618f46 View commit details
    Browse the repository at this point in the history
  2. Set autoencoder's shape to x_test.shape[1:]

    Co-authored-by: Mark McDonald <[email protected]>
    beyarkay and markmcd authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f1da823 View commit details
    Browse the repository at this point in the history