示例#1
0
def test_sparse_coding_fit():
    raise SkipTest()
    X = np.random.standard_normal((10, 2))
    X, = theano_floatx(X)

    sf = SparseCoding(2, 7, max_iter=10)
    sf.fit(X)
示例#2
0
def test_sparse_coding_fit():
    X = np.random.standard_normal((10, 2))
    sf = SparseCoding(2, 7, max_iter=10)
    sf.fit(X)