`Highway.forward: input must be present` in ELMo embedding?

487 Views Asked by At

I use Elmo Embeddings for my NLP task. The pretrain was in the Indonesian language from this git. Importing the library by using the syntax

from elmoformanylangs import Embedder

causing the following error:

TypeError: Highway.forward: input must be present

Please help me to understand what the error message means.

3

There are 3 best solutions below

1
On BEST ANSWER

Not sure if this helps, but this refers to the unimplemented superclass method (forward) in torch.nn.Module. This class has the following definiton.

forward: Callable[..., Any] = _forward_unimplemented

If you scroll down a bit you will see the definiton of _forward_unimplemented:

def _forward_unimplemented(self, *input: Any) -> None:

The Highway forward definiton has to match this signature too, therefore you will need a *input argument too. I got my Hungarian version working with the following signature and first line, probably this could help you too.

    def forward(self, *input: torch.Tensor) -> type(None): #pylint: disable=arguments-differ
    current_input = input[0]

I just edited my \elmoformanylangs\modules\highway.py file under the site-packages of my python environment, and got it working.

0
On

My problem was due to an unsupported version of overrides.

You can always install the appropriate version, if you are working with anaconda, through conda install overrides==no.version.

0
On

Just do this:

pip uninstall overrides
pip install overrides==3.1.0