update travis

This commit is contained in:
yh_cc 2020-10-12 13:56:58 +08:00
parent edd3022bde
commit ba2304556c
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,10 @@
language: python
python:
- "3.6"
env:
- TRAVIS=1
# command to install dependencies
install:
- pip install --quiet -r requirements.txt

View File

@ -280,6 +280,8 @@ class StaticEmbedding(TokenEmbedding):
found_unknown = True
if word in vocab:
index = vocab.to_index(word)
if index in matrix:
warnings.warn(f"Word:{word} occurs again in line:{idx}(starts from 0)")
matrix[index] = torch.from_numpy(np.fromstring(' '.join(nums), sep=' ', dtype=dtype, count=dim))
if self.only_norm_found_vector:
matrix[index] = matrix[index] / np.linalg.norm(matrix[index])