Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)