Ejemplo n.º 1
0
 def test_kwta_no_inputs(self):
     K = KWTA(
         name='K'
     )
     assert(K.instance_defaults.variable == [[0]])
     val = K.execute([10])
     assert(np.allclose(val, [[0.5]]))
Ejemplo n.º 2
0
 def test_kwta_inputs_list_of_strings(self):
     with pytest.raises(KWTAError) as error_text:
         K = KWTA(
             name='K',
             size = 4,
         )
         K.execute(["one", "two", "three", "four"])
     assert("which is not supported for KWTA" in str(error_text.value))
Ejemplo n.º 3
0
 def test_recurrent_mech_inputs_mismatched_with_default_shorter(self):
     with pytest.raises(MechanismError) as error_text:
         K = KWTA(
             name='K',
             size=6
         )
         K.execute([1, 2, 3, 4, 5])
     assert("does not match required length" in str(error_text.value))
Ejemplo n.º 4
0
 def test_kwta_inputs_list_of_ints(self):
     K = KWTA(
         name='K',
         default_variable=[0, 0, 0, 0]
     )
     val = K.execute([10, 12, 0, -1])
     assert(np.allclose(val, [[0.9933071490757153, 0.9990889488055994, 0.0066928509242848554, 0.0024726231566347743]]))
     val = K.execute([1, 2, 3, 0])
     assert(np.allclose(val, [[0.3775406687981454, 0.6224593312018546, 0.8175744761936437, 0.18242552380635635]]))
Ejemplo n.º 5
0
 def test_kwta_log_gain_offset(self):
     K = KWTA(
         name='K',
         size=2,
         function=Logistic(gain=-.2, offset=4),
         k_value=1
     )
     val = K.execute(input = [.1, -4])
     assert np.allclose(val, [[0.017636340339722684, 0.039165722796764356]])
Ejemplo n.º 6
0
 def test_kwta_log_offset(self):
     K = KWTA(
         name='K',
         size=3,
         function=Logistic(offset=-.2),
         k_value=2
     )
     val = K.execute(input=[1, 2, 3])
     assert np.allclose(val, [[0.425557483188341, 0.6681877721681662, 0.84553473491646523]])
Ejemplo n.º 7
0
 def test_kwta_log_gain(self):
     K = KWTA(
         name='K',
         size=3,
         function=Logistic(gain=2),
         k_value=2
     )
     val = K.execute(input = [1, 2, 3])
     assert np.allclose(val, [[0.2689414213699951, 0.7310585786300049, 0.9525741268224334]])
Ejemplo n.º 8
0
 def test_kwta_linear_slope(self):
     K = KWTA(
         name='K',
         threshold=.5,
         size=5,
         k_value=2,
         function=Linear(slope=2)
     )
     val = K.execute(input=[1, 3, 4, 2, 1])
     assert np.allclose(val, [[-2, 2, 4, 0, -2]])
Ejemplo n.º 9
0
 def test_kwta_linear(self): # inhibition would be positive: so instead it is set to zero
     K = KWTA(
         name='K',
         threshold=3,
         size=3,
         k_value=2,
         function=Linear
     )
     val = K.execute(input=[1, 3, 4])
     assert np.allclose(val, [[1, 3, 4]])
Ejemplo n.º 10
0
 def test_kwta_function_various_spec(self):
     specs = [Logistic, Linear, Linear(slope=3), Logistic(gain=2, offset=-4.2)]
     for s in specs:
         K = KWTA(
             name='K',
             size=5,
             function=s,
             k_value=4
         )
         K.execute([1, 2, 5, -2, .3])
Ejemplo n.º 11
0
    def test_kwta_matrix_keyword_spec(self):

        for m in MATRIX_KEYWORD_VALUES:
            if m != RANDOM_CONNECTIVITY_MATRIX:
                K = KWTA(
                    name='K',
                    size=4,
                    matrix=m
                )
                val = K.execute([10, 10, 10, 10])
                assert(np.allclose(val, [[.5, .5, .5, .5]]))
Ejemplo n.º 12
0
 def test_kwta_matrix_auto_spec(self):
     K = KWTA(
         name='K',
         size=3,
         auto=-.5,
     )
     assert(np.allclose(K.recurrent_projection.matrix, [[-.5, 0, 0], [0, -.5, 0], [0, 0, -.5]]))
Ejemplo n.º 13
0
 def test_kwta_matrix_hetero_spec(self):
     K = KWTA(
         name='K',
         size=3,
         hetero=-.5,
     )
     assert(np.allclose(K.recurrent_projection.matrix, [[5, -.5, -.5], [-.5, 5, -.5], [-.5, -.5, 5]]))
Ejemplo n.º 14
0
 def test_kwta_linear_system(self):
     K=KWTA(
         name='K',
         size=4,
         k_value=3,
         function=Linear
     )
Ejemplo n.º 15
0
    def test_kwta_average_k_1_ratio_0_8(self):
        K = KWTA(
            name='K',
            size=4,
            k_value=1,
            threshold=0,
            ratio=0.8,
            function=Linear,
            average_based=True
        )
        p = Process(pathway=[K], prefs=TestKWTAAverageBased.simple_prefs)
        s = System(processes=[p], prefs=TestKWTAAverageBased.simple_prefs)
        kwta_input = {K: [[1, 2, 3, 4]]}
        s.run(inputs=kwta_input)
        assert np.allclose(K.value, [[-1.4, -0.3999999999999999, 0.6000000000000001, 1.6]])

# class TestClip:
#     def test_clip_float(self):
#         K = KWTA(clip=[-2.0, 2.0],
#                  integrator_mode=False)
#         assert np.allclose(K.execute(3.0), 2.0)
#         assert np.allclose(K.execute(-3.0), -2.0)
#
#     def test_clip_array(self):
#         K = KWTA(default_variable=[[0.0, 0.0, 0.0]],
#                  clip=[-2.0, 2.0],
#                  integrator_mode=False)
#         assert np.allclose(K.execute([3.0, 0.0, -3.0]), [2.0, 0.0, -2.0])
#
#     def test_clip_2d_array(self):
#         K = KWTA(default_variable=[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]],
#                  clip=[-2.0, 2.0],
#                  integrator_mode=False)
#         assert np.allclose(K.execute([[-5.0, -1.0, 5.0], [5.0, -5.0, 1.0], [1.0, 5.0, 5.0]]),
#                            [[-2.0, -1.0, 2.0], [2.0, -2.0, 1.0], [1.0, 2.0, 2.0]])
Ejemplo n.º 16
0
    def test_kwta_size_10_k_3_threshold_1(self):
        K = KWTA(
            name='K',
            size=10,
            k_value=3,
            threshold=1,
            time_scale=TimeScale.TIME_STEP
        )
        p = Process(pathway=[K], prefs=TestKWTALongTerm.simple_prefs)
        s = System(processes=[p], prefs=TestKWTALongTerm.simple_prefs)
        kwta_input = {K: [[-1, -.5, 0, 0, 0, 1, 1, 2, 3, 3]]}
        print("")
        for i in range(20):
            s.run(inputs=kwta_input)
            print('\ntrial number', i)
            print('K.value: ', K.value)
        assert np.allclose(K.value, [[0.012938850123312412, 0.022127587008877226, 0.039010157367582114,
                                     0.039010157367582114, 0.039010157367582114, 0.19055156271846602,

                                     0.19055156271846602, 0.969124504436019, 0.9895271824560731, 0.9895271824560731]])
        kwta_input2 = {K: [0] * 10}

        print('\n\nturning to zero-inputs now:')
        for i in range(20):
            s.run(inputs=kwta_input2)
            print('\ntrial number', i)
            print('K.value: ', K.value)
        assert np.allclose(K.value, [[0.13127237999481228, 0.13130057846907178, 0.1313653354768465, 0.1313653354768465,
                                     0.1313653354768465, 0.5863768938723602, 0.5863768938723602, 0.8390251365605804,
                                     0.8390251603214743, 0.8390251603214743]])
Ejemplo n.º 17
0
 def test_kwta_k_value_int_size_5(self):
     K = KWTA(
         name='K',
         size=5,
         k_value=3
     )
     assert K.k_value == 3
Ejemplo n.º 18
0
 def test_kwta_ratio_neg_1(self):
     with pytest.raises(KWTAError) as error_text:
         K = KWTA(
             name='K',
             size=4,
             ratio=-1
         )
     assert "must be between 0 and 1" in str(error_text.value)
Ejemplo n.º 19
0
 def test_kwta_matrix_auto_hetero_spec(self):
     K = KWTA(
         name='K',
         size=4,
         auto=3,
         hetero=2
     )
     assert(np.allclose(K.recurrent_projection.matrix, [[3, 2, 2, 2], [2, 3, 2, 2], [2, 2, 3, 2], [2, 2, 2, 3]]))
Ejemplo n.º 20
0
 def test_kwta_var_list_of_strings(self):
     with pytest.raises(UtilitiesError) as error_text:
         K = KWTA(
             name='K',
             default_variable=['a', 'b', 'c', 'd'],
             integrator_mode=True
         )
     assert("has non-numeric entries" in str(error_text.value))
Ejemplo n.º 21
0
 def test_kwta_k_value_too_low(self):
     with pytest.raises(KWTAError) as error_text:
         K = KWTA(
             name='K',
             size=4,
             k_value=-5
         )
     assert "was larger than the total number of elements" in str(error_text.value)
Ejemplo n.º 22
0
 def test_kwta_k_value_list(self):
     with pytest.raises(KWTAError) as error_text:
         K = KWTA(
             name='K',
             size=4,
             k_value=[1, 2]
         )
     assert "must be a single number" in str(error_text.value)
Ejemplo n.º 23
0
 def test_kwta_k_value_bad_float(self):
     with pytest.raises(KWTAError) as error_text:
         K = KWTA(
             name='K',
             size=4,
             k_value=2.5
         )
     assert "must be an integer, or between 0 and 1." in str(error_text.value)
Ejemplo n.º 24
0
    def test_kwta_threshold_float(self):
        K = KWTA(
            name='K',
            size=4,
            threshold=0.5
        )
        p = Process(pathway=[K], prefs=TestKWTARatio.simple_prefs)
        s = System(processes=[p], prefs=TestKWTARatio.simple_prefs)

        s.run(inputs={K: [1, 2, 3, 3]})
        assert np.allclose(K.value, [[0.2689414213699951, 0.5, 0.7310585786300049, 0.7310585786300049]])
Ejemplo n.º 25
0
    def test_kwta_threshold_int(self):
        K = KWTA(
            name='K',
            size=4,
            threshold=-1
        )
        p = Process(pathway=[K], prefs=TestKWTAThreshold.simple_prefs)
        s = System(processes=[p], prefs=TestKWTAThreshold.simple_prefs)

        s.run(inputs={K: [1, 2, 3, 4]})
        assert np.allclose(K.value, [[0.07585818002124355, 0.18242552380635635, 0.3775406687981454, 0.6224593312018546]])
Ejemplo n.º 26
0
 def test_kwta_check_attrs(self):
     K = KWTA(
         name='K',
         size=3
     )
     assert(K.value is None)
     assert(np.allclose(K.instance_defaults.variable, [[0., 0., 0.]]))
     assert(K.size == [3])
     assert(np.allclose(K.matrix, [[5, 0, 0], [0, 5, 0], [0, 0, 5]]))
     assert(K.recurrent_projection.sender is K.output_state)
     assert(K.recurrent_projection.receiver is K.input_state)
Ejemplo n.º 27
0
    def test_kwta_k_value_empty_size_4(self):
        K = KWTA(
            name='K',
            size=4
        )
        assert K.k_value == 0.5
        p = Process(pathway=[K], prefs=TestKWTARatio.simple_prefs)
        s = System(processes=[p], prefs=TestKWTARatio.simple_prefs)

        s.run(inputs={K: [1, 2, 3, 4]})
        assert np.allclose(K.value, [[0.18242552380635635, 0.3775406687981454, 0.6224593312018546, 0.8175744761936437]])
Ejemplo n.º 28
0
    def test_kwta_ratio_empty(self):
        K = KWTA(
            name='K',
            size=4
        )
        p = Process(pathway = [K], prefs = TestKWTARatio.simple_prefs)
        s = System(processes=[p], prefs = TestKWTARatio.simple_prefs)

        s.run(inputs = {K: [2, 4, 1, 6]})
        assert np.allclose(K.value, [[0.2689414213699951, 0.7310585786300049, 0.11920292202211755, 0.9525741268224334]])
        s.run(inputs = {K: [1, 2, 3, 4]})
        assert np.allclose(K.value, [[0.09271329298112314, 0.7368459299092773, 0.2631540700907225, 0.9842837170829899]])
Ejemplo n.º 29
0
    def test_kwta_ratio_0(self):
        K = KWTA(
            name='K',
            size=4,
            ratio=0
        )
        p = Process(pathway = [K], prefs = TestKWTARatio.simple_prefs)
        s = System(processes=[p], prefs = TestKWTARatio.simple_prefs)

        s.run(inputs = {K: [2, 4, 1, 6]})
        assert np.allclose(K.value, [[0.11920292202211755, 0.5, 0.04742587317756678, 0.8807970779778823]])
        s.run(inputs = {K: [1, 2, 3, 4]})
        assert np.allclose(K.value, [[0.051956902301427035, 0.5, 0.22048012438199008, 0.9802370486903237]])
Ejemplo n.º 30
0
    def test_kwta_ratio_0_3(self):
        K = KWTA(
            name='K',
            size=4,
            ratio=0.3
        )
        p = Process(pathway=[K], prefs=TestKWTARatio.simple_prefs)
        s = System(processes=[p], prefs=TestKWTARatio.simple_prefs)

        s.run(inputs={K: [2, 4, 1, 6]})
        assert np.allclose(K.value, [[0.19781611144141834, 0.6456563062257956, 0.08317269649392241, 0.9308615796566533]])
        s.run(inputs={K: [1, 2, 3, 4]})
        assert np.allclose(K.value, [[0.06324086143390241, 0.6326786177649943, 0.21948113371757957, 0.9814716617176014]])