Revision 6e7bacd02d919590ea31ff68b1620447294b7124 authored by Antoine Carme on 27 September 2018, 10:38:42 UTC, committed by Antoine Carme on 27 September 2018, 10:38:42 UTC
1 parent b3aeb06
Raw File
MComp.py
# Copyright (C) 2016 Antoine Carme <Antoine.Carme@Laposte.net>
# All rights reserved.

# This file is part of the Python Automatic Forecasting (PyAF) library and is made available under
# the terms of the 3 Clause BSD license

import pandas as pd
import numpy as np
import pyaf.Bench.TS_datasets as tsds
import sys,os

import pyaf.Bench.GenericBenchmark as ben




class cMComp_Tester(ben.cGeneric_Tester):

    '''
    info : https://en.wikipedia.org/wiki/Makridakis_Competitions
    
    tester1 = cMComp_Tester(tsds.load_M1_comp());
    tester1.testAllSignals();

    tester2 = cMComp_Tester(tsds.load_M2_comp());
    tester2.testAllSignals();    
    '''
        
    def __init__(self , tsspec, bench_name):
        super().__init__(tsspec , bench_name);
        pass
back to top