eyalbd2 / Semantically-Driven-Sentence-Fusion

Official code for the paper "Semantically Driven Sentence Fusion: Modeling and Evaluation".
12 stars 0 forks source link

Missing 'funcsigs' lib in requirements file #2

Closed saurabhhssaurabh closed 3 years ago

saurabhhssaurabh commented 3 years ago

Requirements file does not have entry related to 'funcsigs' lib. It is being imported in the following file:

texar_repo/texar/utils/utils.py

Error:

Traceback (most recent call last):
  File "preprocesses/preprocess_with_auxiliary_tasks.py", line 16, in <module>
    from config_with_auxiliary_tasks import *
  File "configs/config_with_auxiliary_tasks.py", line 6, in <module>
    import texar as tx
  File "texar_repo/texar/__init__.py", line 24, in <module>
    from texar.module_base import *
  File "texar_repo/texar/module_base.py", line 26, in <module>
    from texar.utils.exceptions import TexarError
  File "texar_repo/texar/utils/__init__.py", line 24, in <module>
    from texar.utils.utils import *
  File "texar_repo/texar/utils/utils.py", line 26, in <module>
    import funcsigs
ModuleNotFoundError: No module named 'funcsigs'
eyalbd2 commented 3 years ago

Thank you! I'll fix that.