GITLAB

Chunk / ImageR

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • imager
  • mmodel
  • __init__.py
  • c7fa1d60   refractoration staged. Browse Code ยป
    Chunk
    2015-03-05 18:00:55 +0800  
__init__.py 264 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
__author__ = 'chunk'

__all__ = ['ModelBase', ]

class ModelBase(object):
    def __init__(self):
        pass

    def load(self, mode, file):
        pass

    def train(self):
        pass

    def test(self):
        pass

    def predict(self):
        pass