test_ner_examples.py 942 Bytes
Newer Older
Julien Chaumond's avatar
Julien Chaumond committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import logging
import sys
import unittest
from unittest.mock import patch

import run_ner


logging.basicConfig(level=logging.DEBUG)

logger = logging.getLogger()


class ExamplesTests(unittest.TestCase):
    def test_run_ner(self):
        stream_handler = logging.StreamHandler(sys.stdout)
        logger.addHandler(stream_handler)

        testargs = """
            --model_name distilbert-base-german-cased
            --output_dir ./examples/tests_samples/temp_dir
            --overwrite_output_dir
            --data_dir ./examples/tests_samples/GermEval
            --labels ./examples/tests_samples/GermEval/labels.txt
            --max_seq_length 128
            --num_train_epochs 6
            --logging_steps 1
            --do_train
            --do_eval
            """.split()
        with patch.object(sys, "argv", ["run.py"] + testargs):
            result = run_ner.main()
            self.assertLess(result["loss"], 1.5)