Skip to content

Instantly share code, notes, and snippets.

@ssandra102
Created September 24, 2022 14:36
Show Gist options
  • Save ssandra102/333934a35841dba76b6d65e816258621 to your computer and use it in GitHub Desktop.
Save ssandra102/333934a35841dba76b6d65e816258621 to your computer and use it in GitHub Desktop.
self.encoder = Sequential(
[
Dense(100, activation="relu"),
Dense(20, activation="relu")
]
)
self.decoder = Sequential(
[
Dense(100, activation="relu"),
Dense(output_units, activation="sigmoid")
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment