Example #1
0
def test_auto_ml_checkpoint(tmpdir: LocalPath):
    from examples.caching.plot_auto_ml_checkpoint import main
    main(tmpdir)
Example #2
0
def test_boston_housing_regression_with_model_stacking():
    from examples.sklearn.plot_boston_housing_regression_with_model_stacking import main
    main()
Example #3
0
def test_parallel_streaming():
    from examples.parallel.plot_streaming_pipeline import main
    main()
Example #4
0
def test_boston_housing_meta_optimization(tmpdir: LocalPath):
    from examples.sklearn.plot_boston_housing_meta_optimization import main
    main(tmpdir)
Example #5
0
def test_apply():
    from examples.operations.plot_apply_method import main
    main()
Example #6
0
def test_mutate():
    from examples.operations.plot_mutate import main
    main()
Example #7
0
def test_non_fittable_mixin():
    from examples.getting_started.plot_non_fittable_mixin import main
    main()
Example #8
0
def test_hyperparams():
    from examples.hyperparams.plot_hyperparams import main
    main()
Example #9
0
def test_label_encoder_across_multiple_columns():
    from examples.getting_started.plot_label_encoder_across_multiple_columns import main
    main()
Example #10
0
def test_nested_pipelines():
    from examples.getting_started.plot_nested_pipelines import main
    main()
Example #11
0
def test_inverse_transform():
    from examples.getting_started.plot_inverse_transform import main
    main()
Example #12
0
def test_force_handle_mixin():
    from examples.getting_started.plot_force_handle_mixin import main
    main()
Example #13
0
def test_auto_ml_loop_clean_kara(tmpdir: LocalPath):
    from examples.auto_ml.plot_automl_loop_clean_kata import main
    main()
Example #14
0
def test_easy_rest_api_serving():
    from examples.deployment.plot_easy_rest_api_serving import main
    main()
Example #15
0
def test_auto_ml_value_caching():
    from examples.caching.plot_value_caching import main
    main()