huggingface / hmtl

🌊HMTL: Hierarchical Multi-Task Learning - A State-of-the-Art neural network model for several NLP tasks based on PyTorch and AllenNLP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AllenNLP library version used in this code

adymaharana opened this issue · comments

Hi,

I have been running into some Import Errors when I run the HMTL code. Specifically,
``from allennlp.nn.util import last_dim_softmax, weighted_sum
ImportError: cannot import name 'last_dim_softmax'

I can't find this module in the AllenNLP docs either, so I am assuming that the AllenNLP version used for this code is not the latest. Could you please let us know what version of AllenNLP has been used?
Thanks!

Hello,

Thanks for your interest.

The version of AllenNLP we use is not the latest one: we use allennlp==0.7.0.
All the versions of the packages are listed in the file requirements.txt. Please refer to the section of Dependecies and installation in the README for more details on how to setup a working environment.

Victor

Ah right, the requirements.txt file. Sorry, my bad. Thank you for the quick response and interesting work!