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
    def forward(self, data, input_def, mode):
        self.inputs = self.build_inputs(data, input_def)
        self.inputs['mode'] = mode
22 23
        self.model_arch()

24
        if mode == 'train':
K
Kaipeng Deng 已提交
25
            out = self.get_loss()
26
        elif mode == 'infer':
K
Kaipeng Deng 已提交
27
            out = self.get_pred()
28 29 30
        else:
            raise "Now, only support train or infer mode!"
        return out
F
FDInSky 已提交
31

32 33 34 35 36 37 38 39 40 41
    def build_inputs(self, data, input_def):
        inputs = {}
        for name in input_def:
            inputs[name] = []
        batch_size = len(data)
        for bs in range(batch_size):
            for name, input in zip(input_def, data[bs]):
                input_v = np.array(input)[np.newaxis, ...]
                inputs[name].append(input_v)
        for name in input_def:
W
wangxinxin08 已提交
42
            inputs[name] = paddle.to_tensor(np.concatenate(inputs[name]))
43 44
        return inputs

W
wangxinxin08 已提交
45
    def model_arch(self):
46 47
        raise NotImplementedError("Should implement model_arch method!")

K
Kaipeng Deng 已提交
48 49
    def get_loss(self, ):
        raise NotImplementedError("Should implement get_loss method!")
50

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