Blame view

mmodel/__init__.py 264 Bytes
c7fa1d60   Chunk   refractoration st...
1
2
3
4
__author__ = 'chunk'

__all__ = ['ModelBase', ]

be12257b   Chunk   data-feat-model f...
5
class ModelBase(object):
c7fa1d60   Chunk   refractoration st...
6
7
    def __init__(self):
        pass
be12257b   Chunk   data-feat-model f...
8

c7fa1d60   Chunk   refractoration st...
9
    def load(self, mode, file):
be12257b   Chunk   data-feat-model f...
10
        pass
c7fa1d60   Chunk   refractoration st...
11
12

    def train(self):
be12257b   Chunk   data-feat-model f...
13
        pass
c7fa1d60   Chunk   refractoration st...
14
15

    def test(self):
be12257b   Chunk   data-feat-model f...
16
        pass
c7fa1d60   Chunk   refractoration st...
17
18

    def predict(self):