Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

docs: fix simple typo, multplication -> multiplication #4883

Merged
merged 2 commits into from
Dec 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion allennlp/modules/elmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def _load_highway(self):
# create the layers, and load the weights
self._highways = Highway(n_filters, n_highway, activation=torch.nn.functional.relu)
for k in range(n_highway):
# The AllenNLP highway is one matrix multplication with concatenation of
# The AllenNLP highway is one matrix multiplication with concatenation of
# transform and carry weights.
with h5py.File(cached_path(self._weight_file), "r") as fin:
# The weights are transposed due to multiplication order assumptions in tf
Expand Down