pyFTS/benchmarks/naive.py
2017-01-22 18:41:42 -02:00

14 lines
296 B
Python

#!/usr/bin/python
# -*- coding: utf8 -*-
from pyFTS import fts
class Naive(fts.FTS):
def __init__(self, name):
super(Naive, self).__init__(1, "Naïve" + name)
self.name = "Naïve Model"
self.detail = "Naïve Model"
def forecast(self, data):
return data