Beispiel #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)
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)
Beispiel #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)
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)
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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
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)
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)
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)
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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)