Skip to content

Commit a4fed42

Browse files
committed
hotfix
1 parent d678ac6 commit a4fed42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_nn_modules/test_embedding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
)
1919
tokens = list(set(token for sentence in token_seq for token in sentence))
2020

21-
_, word2vec_embeddings = load_word2vec(path="tests/data/word2vec.wv")
22-
_, glove_embeddings = load_glove(path="tests/data/glove.txt")
21+
_, word2vec_embeddings = load_word2vec(path="tests/data/word2vec.wv") # type: ignore
22+
_, glove_embeddings = load_glove(path="tests/data/glove.txt") # type: ignore
2323

2424

2525
embedding_w2v_freeze = EmbeddingPreTrained(word2vec_embeddings)

0 commit comments

Comments
 (0)