Cyn7hia / PAED

This is a repository for our paper (PAED: Zero-Shot Persona Attribute Extraction in Dialogues) accepted in ACL'23.
9 stars 3 forks source link

No module named `model.types_` #1

Closed AADeLucia closed 1 year ago

AADeLucia commented 1 year ago

Hi, when I run python trainer_finetune.py I run into the following module error:

Traceback (most recent call last):
    from model.VAESampler import MetaVAE
  File "C:\PycharmProjects\peacok_playground\PAED\model\VAESampler.py", line 9, in <module>
    from model.base import BaseVAE
  File "C:\PycharmProjects\peacok_playground\PAED\model\base.py", line 5, in <module>
    from model.types_ import *
ModuleNotFoundError: No module named 'model.types_'

Is there a missing types file in the repo which consolidates the used datatypes? I also see this line in VAESampler.py.

Thanks.

Cyn7hia commented 1 year ago

Hi,

I uploaded the types_.py in the repo. Thanks for your suggestions!

Hi, when I run python trainer_finetune.py I run into the following module error:

Traceback (most recent call last):
    from model.VAESampler import MetaVAE
  File "C:\PycharmProjects\peacok_playground\PAED\model\VAESampler.py", line 9, in <module>
    from model.base import BaseVAE
  File "C:\PycharmProjects\peacok_playground\PAED\model\base.py", line 5, in <module>
    from model.types_ import *
ModuleNotFoundError: No module named 'model.types_'

Is there a missing types file in the repo which consolidates the used datatypes? I also see this line in VAESampler.py.

Thanks.

AADeLucia commented 1 year ago

Thanks!