meta_arch.py 1.5 KB
Newer Older
F
FDInSky 已提交
1 2 3 4 5
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy as np
W
wangxinxin08 已提交
6 7
import paddle
import paddle.nn as nn
F
FDInSky 已提交
8 9 10 11 12 13 14
from ppdet.core.workspace import register
from ppdet.utils.data_structure import BufferDict

__all__ = ['BaseArch']


@register
W
wangxinxin08 已提交
15
class BaseArch(nn.Layer):
16
    def __init__(self):
F
FDInSky 已提交
17 18
        super(BaseArch, self).__init__()

19 20 21 22 23
    def forward(self,
                input_tensor=None,
                data=None,
                input_def=None,
                mode='infer'):
24
        if input_tensor is None:
25
            assert data is not None and input_def is not None
26 27 28
            self.inputs = self.build_inputs(data, input_def)
        else:
            self.inputs = input_tensor
29

30
        self.inputs['mode'] = mode
31 32
        self.model_arch()

33
        if mode == 'train':
K
Kaipeng Deng 已提交
34
            out = self.get_loss()
35
        elif mode == 'infer':
36
            out = self.get_pred()
37
        else:
38 39
            out = None
            raise "Now, only support train and infer mode!"
40
        return out
F
FDInSky 已提交
41

42 43
    def build_inputs(self, data, input_def):
        inputs = {}
G
Guanghua Yu 已提交
44
        for i, k in enumerate(input_def):
W
wangguanzhong 已提交
45
            inputs[k] = data[i]
46 47
        return inputs

W
wangxinxin08 已提交
48
    def model_arch(self):
49 50
        raise NotImplementedError("Should implement model_arch method!")

K
Kaipeng Deng 已提交
51 52
    def get_loss(self, ):
        raise NotImplementedError("Should implement get_loss method!")
53

K
Kaipeng Deng 已提交
54 55
    def get_pred(self, ):
        raise NotImplementedError("Should implement get_pred method!")