Skip to content

Commit

Permalink
test update animation again
Browse files Browse the repository at this point in the history
  • Loading branch information
kmantel committed Aug 13, 2021
1 parent c373277 commit a1f124d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/generator_scripts/generate_animations.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

# Based on tests/composition/test_learning.py::TestLearningPathwayMethods::test_run_no_targets
def composition_xor_animation():
in_to_hidden_matrix = np.random.rand(2, 20)
in_to_hidden_matrix = np.random.rand(2, 30)
hidden_to_out_matrix = np.random.rand(10, 1)

inp = pnl.TransferMechanism(name="NEW NAME", default_variable=np.zeros(2))
inp = pnl.TransferMechanism(name="SECOND NEW NAME", default_variable=np.zeros(2))

hidden = pnl.TransferMechanism(
name="Hidden", default_variable=np.zeros(10), function=pnl.Logistic()
Expand Down

0 comments on commit a1f124d

Please sign in to comment.