Open YukeWang96 opened 1 year ago
The traceback indicates that there's an issue related to the usage of the Highway module from the allennlp library. The error message "Highway.forward: input must be present" suggests that there's a missing input argument when calling the forward method of the Highway module.
Without more context and details about the specific code and its purpose, it's a bit challenging to provide a specific solution. However, the error indicates that you need to ensure that the required input argument is provided when calling the forward method of the Highway module. Double-check the code where this module is being used and make sure that all necessary input parameters are correctly provided.
Hi, I managed to solve this problem by commenting out lines 8 and 21 of the init.py file which is in the modules directory, shown in the figure below.
An alternative method is to deprecate the installation of overrides.
pip uninstall overrides
pip install overrides==3.1.0
Hi,
When I execute
./download_models.sh
, encounter the following problemIs there any solution to this? Thanks!