test_dist_transformer.py 2.6 KB
Newer Older
X
Xin Pan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2018 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.

15 16
from __future__ import print_function

X
Xin Pan 已提交
17
import unittest
G
gongweibao 已提交
18
import paddle
X
Xin Pan 已提交
19 20 21
from test_dist_base import TestDistBase


G
gongweibao 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
def download_files():
    url_prefix = 'http://paddle-unittest-data.cdn.bcebos.com/dist_transformer/'
    vocab_url = url_prefix + 'vocab.bpe.32000'
    vocab_md5 = 'a86d345ca6e27f6591d0dccb1b9be853'
    paddle.dataset.common.download(vocab_url, 'test_dist_transformer',
                                   vocab_md5)

    local_train_url = url_prefix + 'train.tok.clean.bpe.32000.en-de'
    local_train_md5 = '033eb02b9449e6dd823f050782ac8914'
    paddle.dataset.common.download(local_train_url, 'test_dist_transformer',
                                   local_train_md5)

    train0_url = url_prefix + 'train.tok.clean.bpe.32000.en-de.train_0'
    train0_md5 = 'ddce7f602f352a0405267285379a38b1'
    paddle.dataset.common.download(train0_url, 'test_dist_transformer',
                                   train0_md5)

    train1_url = url_prefix + 'train.tok.clean.bpe.32000.en-de.train_1'
    train1_md5 = '8757798200180285b1a619cd7f408747'
    paddle.dataset.common.download(train1_url, 'test_dist_transformer',
                                   train1_md5)

    test_url = url_prefix + 'newstest2013.tok.bpe.32000.en-de'
    test_md5 = '9dd74a266dbdb25314183899f269b4a2'
    paddle.dataset.common.download(test_url, 'test_dist_transformer', test_md5)


class TestDistTransformer2x2Sync(TestDistBase):
W
Wu Yi 已提交
50 51 52
    def _setup_config(self):
        self._sync_mode = True

X
Xin Pan 已提交
53
    def test_transformer(self):
G
gongweibao 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66
        download_files()
        #Note: loss on test dataset of the first 5 batch are:
        # 10.518872, 10.518871, 10.518868, 10.518862, 10.518855
        self.check_with_place("dist_transformer.py", delta=1e-7)


class TestDistTransformer2x2Async(TestDistBase):
    def _setup_config(self):
        self._sync_mode = False

    def test_transformer(self):
        download_files()
        self.check_with_place("dist_transformer.py", delta=1.0)
X
Xin Pan 已提交
67 68 69 70


if __name__ == "__main__":
    unittest.main()