예제 #1
0
def test_fit_fp():
    """[Parallel | Layer | Multiprocessing | Blend | No Proba | No Prep] test feature prop fit"""
    args = get_layer('fit',
                     'multiprocessing',
                     'blend',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
예제 #2
0
def test_predict_fp():
    """[Parallel | Layer | Threading | Blend | No Proba | No Prep] test feature prop predict"""
    args = get_layer('predict',
                     'threading',
                     'blend',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
예제 #3
0
def test_transform_fp():
    """[Parallel | Layer | Multiprocessing | Blend | No Proba | No Prep] test feature prop transform"""
    args = get_layer('transform',
                     'multiprocessing',
                     'blend',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
예제 #4
0
def test_predict_proba():
    """[Parallel | Layer | Threading | Temporal | Proba | No Prep] test predict"""
    args = get_layer('predict',
                     'threading',
                     'temporal',
                     True,
                     False,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #5
0
def test_fit_prep_proba():
    """[Parallel | Layer | Threading | Temporal | Proba | Prep] test fit"""
    args = get_layer('fit',
                     'threading',
                     'temporal',
                     True,
                     True,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #6
0
def test_transform_prep_proba():
    """[Parallel | Layer | Manual | Temporal | Proba | Prep] test transform"""
    args = get_layer('transform',
                     'manual',
                     'temporal',
                     True,
                     True,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #7
0
def test_fit_proba():
    """[Parallel | Layer | Manual | Temporal | Proba | No Prep] test fit"""
    args = get_layer('fit',
                     'manual',
                     'temporal',
                     True,
                     False,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #8
0
def test_predict_prep():
    """[Parallel | Layer | Manual | Temporal | No Proba | Prep] test predict"""
    args = get_layer('predict',
                     'manual',
                     'temporal',
                     False,
                     True,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #9
0
def test_transform():
    """[Parallel | Layer | Manual | Temporal | No Proba | No Prep] test transform"""
    args = get_layer('transform',
                     'manual',
                     'temporal',
                     False,
                     False,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #10
0
def test_fit():
    """[Parallel | Layer | Threading | Temporal | No Proba | No Prep] test fit"""
    args = get_layer('fit',
                     'threading',
                     'temporal',
                     False,
                     False,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #11
0
def test_transform_prep():
    """[Parallel | Layer | Threading | Temporal | No Proba | Prep] test transform"""
    args = get_layer('transform',
                     'threading',
                     'temporal',
                     False,
                     True,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #12
0
def test_predict_fp():
    """[Parallel | Layer | Threading | Temporal | No Proba | No Prep] test feature prop predict"""
    args = get_layer('predict',
                     'threading',
                     'temporal',
                     False,
                     False,
                     feature_prop=2,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #13
0
def test_transform_fp():
    """[Parallel | Layer | Threading | Temporal | No Proba | No Prep] test feature prop transform"""
    args = get_layer('transform',
                     'threading',
                     'temporal',
                     False,
                     False,
                     feature_prop=2,
                     window=2,
                     step_size=3)
    run_layer(*args)
예제 #14
0
def test_transform():
    """[Parallel | Layer | Multiprocessing | Subset | No Proba | No Prep] test transform"""
    args = get_layer('transform', 'multiprocessing', 'subsemble', False, False)
    run_layer(*args)
예제 #15
0
def test_transform():
    """[Parallel | Layer | Manual | Blend | No Proba | No Prep] test transform"""
    args = get_layer('transform', 'manual', 'blend', False, False)
    run_layer(*args)
예제 #16
0
def test_fit_fp():
    """[Parallel | Layer | Threading | Full | No Proba | No Prep] test feature prop fit"""
    args = get_layer('fit', 'threading', 'full', False, False, feature_prop=2)
    run_layer(*args)
예제 #17
0
def test_transform_prep_proba():
    """[Parallel | Layer | Threading | Full | Proba | Prep] test transform"""
    args = get_layer('transform', 'threading', 'full', True, True)
    run_layer(*args)
예제 #18
0
def test_fit():
    """[Parallel | Layer | Threading | Full | No Proba | No Prep] test fit"""
    args = get_layer('fit', 'threading', 'full', False, False)
    run_layer(*args)
예제 #19
0
def test_predict_prep_proba():
    """[Parallel | Layer | Threading | Full | Proba | No Prep] test predict"""
    args = get_layer('predict', 'threading', 'full', True, True)
    run_layer(*args)
예제 #20
0
def test_fit_prep_proba():
    """[Parallel | Layer | Manual | Blend | Proba | Prep] test fit"""
    args = get_layer('fit', 'manual', 'blend', True, True)
    run_layer(*args)
예제 #21
0
def test_predict_prep_proba():
    """[Parallel | Layer | Manual | Blend | Proba | No Prep] test predict"""
    args = get_layer('predict', 'manual', 'blend', True, True)
    run_layer(*args)
예제 #22
0
def test_fit():
    """[Parallel | Layer | Manual | Blend | No Proba | No Prep] test fit"""
    args = get_layer('fit', 'manual', 'blend', False, False)
    run_layer(*args)
예제 #23
0
def test_fit():
    """[Parallel | Layer | Multiprocessing | Subset | No Proba | No Prep] test fit"""
    args = get_layer('fit', 'multiprocessing', 'subsemble', False, False)
    run_layer(*args)
예제 #24
0
def test_transform_proba():
    """[Parallel | Layer | Multiprocessing | Stack | Proba | No Prep] test transform"""
    args = get_layer('transform', 'multiprocessing', 'stack', True, False)
    run_layer(*args)
예제 #25
0
def test_transform_prep_proba():
    """[Parallel | Layer | Manual | Blend | Proba | Prep] test transform"""
    args = get_layer('transform', 'manual', 'blend', True, True)
    run_layer(*args)
예제 #26
0
def test_fit_prep_proba():
    """[Parallel | Layer | Multiprocessing | Stack | Proba | Prep] test fit"""
    args = get_layer('fit', 'multiprocessing', 'stack', True, True)
    run_layer(*args)
예제 #27
0
def test_predict_prep_proba():
    """[Parallel | Layer | Multiprocessing | Subset | Proba | No Prep] test predict"""
    args = get_layer('predict', 'multiprocessing', 'subsemble', True, True)
    run_layer(*args)
예제 #28
0
def test_transform():
    """[Parallel | Layer | Threading | Full | No Proba | No Prep] test transform"""
    args = get_layer('transform', 'threading', 'full', False, False)
    run_layer(*args)
예제 #29
0
def test_transform_prep_proba():
    """[Parallel | Layer | Multiprocessing | Subset | Proba | Prep] test transform"""
    args = get_layer('transform', 'multiprocessing', 'subsemble', True, True)
    run_layer(*args)
예제 #30
0
def test_fit_prep_proba():
    """[Parallel | Layer | Threading | Full | Proba | Prep] test fit"""
    args = get_layer('fit', 'threading', 'full', True, True)
    run_layer(*args)