Just some typical Approaches for Document Understanding and related tasks 📖
- Document Layout Analysis.
- OCR pipeline.
- Preprocess.
- Vietnamese specific text mining toolbox.
class MyModel(adou.Model, metaclass=adou.ModelType):
__doc__ = ...
schema = {'input':..., 'output':...}
def load(self, *args, **kwargs)
def summary(self, *args, **kwargs)
def train(self, *args, **kwargs)
def predict(self, *args, **kwargs)
class MyModelTestCase(unittest.TestCase):
def test_case_01(self, *args, **kwargs)
def test_case_02(self, *args, **kwargs)
...