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

Fixing issue 220: This fixes the architecture of the hopfield network #222

Merged
merged 3 commits into from
Apr 12, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
adding output to input connections in Hopfield network
  • Loading branch information
raimannma committed Apr 10, 2020
commit 985e7a27c3c551e9bc7b80252d8af26992702c76
1 change: 1 addition & 0 deletions src/architecture/architect.js
Original file line number Diff line number Diff line change
@@ -489,6 +489,7 @@ const architect = {
const output = new Group(size, 'output');

input.connect(output, methods.connection.ALL_TO_ALL);
output.connect(input, methods.connection.ALL_TO_ALL);

output.set({
squash: methods.activation.STEP,