diff --git a/docs/source/generator_scripts/generate_animations.py b/docs/source/generator_scripts/generate_animations.py index 33e72b81121..dd5f06cb435 100644 --- a/docs/source/generator_scripts/generate_animations.py +++ b/docs/source/generator_scripts/generate_animations.py @@ -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()