imikolov_test.py 2.4 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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

17
import paddle.dataset.imikolov
18 19
import unittest

20
WORD_DICT = paddle.dataset.imikolov.build_dict()
21

22 23
__all__ = []

24 25 26 27 28 29 30 31

class TestMikolov(unittest.TestCase):
    def check_reader(self, reader, n):
        for l in reader():
            self.assertEqual(len(l), n)

    def test_train(self):
        n = 5
32
        self.check_reader(paddle.dataset.imikolov.train(WORD_DICT, n), n)
33

34 35 36 37 38 39 40
        first_line = 'aer banknote berlitz calloway centrust cluett fromstein '\
            'gitano guterman hydro-quebec ipo kia memotec mlx nahb punts '\
            'rake regatta rubens sim snack-food ssangyong swapo wachter'
        first_line = [
            WORD_DICT.get(ch, WORD_DICT['<unk>'])
            for ch in first_line.split(' ')
        ]
41
        for l in paddle.dataset.imikolov.train(
42
                WORD_DICT, n=-1,
43
                data_type=paddle.dataset.imikolov.DataType.SEQ)():
44 45 46 47
            read_line = l[0][1:]
            break
        self.assertEqual(first_line, read_line)

48 49
    def test_test(self):
        n = 5
50
        self.check_reader(paddle.dataset.imikolov.test(WORD_DICT, n), n)
51

52 53 54 55 56 57
        first_line = 'consumers may want to move their telephones a little '\
                'closer to the tv set'
        first_line = [
            WORD_DICT.get(ch, WORD_DICT['<unk>'])
            for ch in first_line.split(' ')
        ]
58
        for l in paddle.dataset.imikolov.test(
59
                WORD_DICT, n=-1,
60
                data_type=paddle.dataset.imikolov.DataType.SEQ)():
61 62 63 64
            read_line = l[0][1:]
            break
        self.assertEqual(first_line, read_line)

65
    def test_total(self):
66
        _, idx = list(zip(*list(WORD_DICT.items())))
67
        self.assertEqual(sorted(idx)[-1], len(WORD_DICT) - 1)
68 69 70 71


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