Source code for compshs.embedding.tests.test_contextual_embedding

import unittest


[docs]class TestContextualEmbedding(unittest.TestCase):
[docs] def setUp(self): self.corpus = ['The quick brown fox.', 'The dog is lazier.']
[docs] def test_clean_text(self): pass
[docs] def test_extract_keyword_sentences(self): pass
[docs] def test_tokenize_and_chunk(self): pass
[docs] def test_group_subword_embeddings(self): pass
[docs] def test_clean_word(self): pass
[docs] def test_encode_chunk(self): pass
[docs] def test_process_doc(self): pass
[docs] def test_transform(self): pass