Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcpni committed Nov 21, 2024
1 parent 0255ae2 commit b7f781e
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions tests/composition/test_emcomposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,13 +793,9 @@ def test_assign_field_weights_and_0_vs_None(self,

@pytest.mark.composition
@pytest.mark.parametrize('exec_mode', [pnl.ExecutionMode.Python, pnl.ExecutionMode.PyTorch])
# @pytest.mark.parametrize('concatenate', [True, False], ids=['concatenate', 'no_concatenate'])
# @pytest.mark.parametrize('use_storage_node', [True, False], ids=['use_storage_node', 'no_storage_node'])
# @pytest.mark.parametrize('learning', [True, False], ids=['learning', 'no_learning'])
# FIX: TESTING 11/21/24
@pytest.mark.parametrize('concatenate', [False], ids=['no_concatenate'])
@pytest.mark.parametrize('use_storage_node', [True], ids=['use_storage_node'])
@pytest.mark.parametrize('learning', [True], ids=['learning'])
@pytest.mark.parametrize('concatenate', [True, False], ids=['concatenate', 'no_concatenate'])
@pytest.mark.parametrize('use_storage_node', [True, False], ids=['use_storage_node', 'no_storage_node'])
@pytest.mark.parametrize('learning', [True, False], ids=['learning', 'no_learning'])
def test_multiple_trials_concatenation_and_storage_node(self, exec_mode, concatenate, use_storage_node, learning):
"""Test with and without learning (learning is tested only for using_storage_node and no concatenation)"""

Expand Down Expand Up @@ -879,7 +875,6 @@ def test_backpropagation_of_error_in_learning(self):
pnl.LEARN_FIELD_WEIGHT: False,
pnl.TARGET_FIELD: False}},
normalize_field_weights=True,
normalize_memories=False,
concatenate_queries=False,
enable_learning=True,
learning_rate=.5,
Expand Down

0 comments on commit b7f781e

Please sign in to comment.