seresnext_test_base.py 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import print_function
import seresnext_net
import paddle.fluid.core as core
18 19
from parallel_executor_test_base import TestParallelExecutorBase, DeviceType
from parallel_executor_test_base import DeviceType
20 21 22 23
import numpy as np


class TestResnetBase(TestParallelExecutorBase):
24

25 26
    def _compare_result_with_origin_model(self,
                                          check_func,
27
                                          use_device,
28
                                          delta2=1e-5,
29
                                          compare_separately=True):
30
        if use_device == DeviceType.CUDA and not core.is_compiled_with_cuda():
31 32
            return

33
        func_1_first_loss, func_1_last_loss, func_1_loss_area = self.check_network_convergence(
34
            seresnext_net.model,
35 36 37 38
            feed_dict=seresnext_net.feed_dict(use_device),
            iter=seresnext_net.iter(use_device),
            batch_size=seresnext_net.batch_size(use_device),
            use_device=use_device,
39 40 41
            use_reduce=False,
            optimizer=seresnext_net.optimizer)

42
        func_2_first_loss, func_2_last_loss, func_2_loss_area = check_func(
43
            seresnext_net.model,
44 45 46 47
            feed_dict=seresnext_net.feed_dict(use_device),
            iter=seresnext_net.iter(use_device),
            batch_size=seresnext_net.batch_size(use_device),
            use_device=use_device)
48

49
        if compare_separately:
50 51 52 53 54
            for loss in zip(func_1_first_loss, func_2_first_loss):
                self.assertAlmostEquals(loss[0], loss[1], delta=1e-5)
            for loss in zip(func_1_last_loss, func_2_last_loss):
                self.assertAlmostEquals(loss[0], loss[1], delta=delta2)
        else:
55 56 57
            np.testing.assert_allclose(func_1_loss_area,
                                       func_2_loss_area,
                                       rtol=delta2)
58 59 60 61 62 63
            self.assertAlmostEquals(np.mean(func_1_first_loss),
                                    func_2_first_loss[0],
                                    delta=1e-5)
            self.assertAlmostEquals(np.mean(func_1_last_loss),
                                    func_2_last_loss[0],
                                    delta=delta2)