コード例 #1
0
ファイル: test_non_segments.py プロジェクト: Bart6114/mlpipe
def test_nonsegment_lambda2_w_attr():
    p = Pipe() +\
        (lambda x: x+2) + \
        (lambda x: x + 2)

    assert p.testattr(5) == 9
コード例 #2
0
ファイル: test_simple_funcs.py プロジェクト: Bart6114/mlpipe
def test_lambda1_w_attr():
    p = Pipe() +\
        Segment(lambda x: x+2)

    assert p.testattr(5) == 7