コード例 #1
0
def debug_integration_all(plot=False):
    test_integration.IntegrationTests.plot = plot

    itests = test_integration.IntegrationTests()

    itests.test_names()
    itests.test_train_eval_test()
    itests.test_trend()
    itests.test_custom_changepoints()
    itests.test_no_trend()
    itests.test_seasons()
    itests.test_custom_seasons()
    itests.test_ar()
    itests.test_ar_sparse()
    itests.test_ar_deep()
    itests.test_lag_reg()
    itests.test_lag_reg_deep()
    itests.test_events()
    itests.test_future_reg()
    itests.test_plot()
    itests.test_air_data()
    itests.test_random_seed()
    itests.test_loss_func()
    itests.test_yosemite()
    itests.test_model_cv()
    itests.test_callable_loss()
コード例 #2
0
def debug_integration_all(plot=False):
    test_integration.IntegrationTests.plot = plot

    itests = test_integration.IntegrationTests()

    itests.test_names()
    itests.test_train_eval_test()
    itests.test_trend()
    itests.test_no_trend()
    itests.test_seasons()
    itests.test_custom_seasons()
    itests.test_ar_net()
    itests.test_lag_reg()
    itests.test_events()
    itests.test_future_reg()
    itests.test_events()
    itests.test_predict()
    itests.test_plot()
    itests.test_air_data()
コード例 #3
0
ファイル: debug.py プロジェクト: pankajkarman/neural_prophet
def debug_one():
    # default
    # plot = False
    # log.setLevel("INFO")
    # log.parent.setLevel("DEBUG")
    # log.parent.parent.setLevel("WARNING")

    # very verbose option
    plot = True
    log.setLevel("DEBUG")
    log.parent.setLevel("DEBUG")
    log.parent.parent.setLevel("DEBUG")

    test_integration.IntegrationTests.plot = plot
    itests = test_integration.IntegrationTests()
    ##
    # itests.test_trend()

    test_unit.UnitTests.plot = plot
    utests = test_unit.UnitTests()
コード例 #4
0
def debug_one(verbose=True):
    if verbose:
        # very verbose option
        plot = True
        log.setLevel("DEBUG")
        log.parent.setLevel("DEBUG")
        log.parent.parent.setLevel("DEBUG")
    else:
        plot = False
        log.setLevel("INFO")
        log.parent.setLevel("INFO")
        log.parent.parent.setLevel("WARNING")

    test_integration.IntegrationTests.plot = plot
    itests = test_integration.IntegrationTests()
    ##
    # itests.test_model_cv()

    test_unit.UnitTests.plot = plot
    utests = test_unit.UnitTests()
コード例 #5
0
def debug_integration(plot=False):
    test_integration.IntegrationTests.plot = plot
    itests = test_integration.IntegrationTests()