https://github.com/antoinecarme/pyaf
Raw File
Tip revision: a4f9d8e25a77bfcc3f34f8a36b5f356bd38a6508 authored by Antoine CARME on 08 March 2023, 20:42:05 UTC
Investigate Large Horizon Models #213. Improved perf logging. Display the first and last multistep forecast perfs. Updated these scripts
Tip revision: a4f9d8e
run_benchmark_MWH.py
import pyaf.ForecastEngine as autof
import pyaf.Bench.TS_datasets as tsds

import pyaf.Bench.GenericBenchmark as tBench
import warnings

#%matplotlib inline

tester1 = tBench.cGeneric_Tester(tsds.load_MWH_datsets() , "MWH_BENCH");
with warnings.catch_warnings():
    warnings.simplefilter("error")
    # tester1.testSignals('plastics')
    # tester1.testAllSignals()
    tester1.run_multiprocessed();

back to top