Esempio n. 1
0
def test_predict_fp():
    """[Parallel | Layer | Multiprocessing | Subset | No Proba | No Prep] test feature prop predict"""
    args = get_layer('predict',
                     'multiprocessing',
                     'subsemble',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 2
0
def test_fit_fp():
    """[Parallel | Layer | Threading | Subset | No Proba | No Prep] test feature prop fit"""
    args = get_layer('fit',
                     'threading',
                     'subsemble',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 3
0
def test_transform_fp():
    """[Parallel | Layer | Threading | Full | No Proba | No Prep] test feature prop transform"""
    args = get_layer('transform',
                     'threading',
                     'full',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 4
0
def test_transform_fp():
    """[Parallel | Layer | Multiprocessing | Subset | No Proba | No Prep] test feature prop transform"""
    args = get_layer('transform',
                     'multiprocessing',
                     'subsemble',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 5
0
def test_fit_fp():
    """[Parallel | Layer | Multiprocessing | Stack | No Proba | No Prep] test feature prop fit"""
    args = get_layer('fit',
                     'multiprocessing',
                     'stack',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 6
0
def test_predict_fp():
    """[Parallel | Layer | Threading | Full | No Proba | No Prep] test feature prop predict"""
    args = get_layer('predict',
                     'threading',
                     'full',
                     False,
                     False,
                     feature_prop=2)
    run_layer(*args)
Esempio n. 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)
Esempio n. 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)
Esempio n. 9
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)
Esempio n. 10
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)
Esempio n. 11
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)
Esempio n. 12
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)
Esempio n. 13
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)
Esempio n. 14
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)
Esempio n. 15
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)
Esempio n. 16
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)
Esempio n. 17
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)
Esempio n. 18
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)
Esempio n. 19
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)
Esempio n. 20
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)
Esempio n. 21
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)
Esempio n. 22
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)
Esempio n. 23
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)
Esempio n. 24
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)
Esempio n. 25
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)
Esempio n. 26
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)
Esempio n. 27
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)
Esempio n. 28
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)
Esempio n. 29
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)
Esempio n. 30
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)