File size: 250 Bytes
8b513d0 |
1 2 3 4 5 6 7 8 9 10 |
import unittest
import spacy
import spacyEntityLinker.TermCandidateExtractor
class TestCandidateExtractor(unittest.TestCase):
def __init__(self, arg, *args, **kwargs):
super(TestCandidateExtractor, self).__init__(arg, *args, **kwargs)
|