Beispiel #1
0
def test_stridge_normalize(data, kw):
    x, y = data
    s = STRidge(**kw).fit(x, y)
    np.testing.assert_allclose(s.coef_, np.array([0, 2]), atol=1e-7)
    np.testing.assert_allclose(s.predict(x), y)
    assert s.complexity == 2
    assert len(s.history_) == 3  # 1 initial guess, 1 saturation, 1 unbias
Beispiel #2
0
def test_all_zero(data):
    x, y = data
    s = STRidge(threshold=10000).fit(x, y)
    assert not any(s.coef_)
    assert len(s.history_) == 1  # initial guess wipes everything
Beispiel #3
0
def test_stridge_knob(data):
    x, y = data
    s = STRidge(normalize=False).fit(x, y)
    assert all(c > s.threshold or c == 0 for c in s.coef_)
Beispiel #4
0
def test_stridge_iterations_on_full_rank_data(data_full_rank):
    x, y = data_full_rank
    s = STRidge().fit(x, y)
    assert len(s.history_) == 2
Beispiel #5
0
def test_all_nonzero(data_full_rank):
    x, y = data_full_rank
    s = STRidge(threshold=0, alpha=0).fit(x, y)
    assert s.complexity == 3