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

ModuleNotFoundError: No module named `knowledge_prepare` #2

Closed AADeLucia closed 1 year ago

AADeLucia commented 1 year ago

In wrapper.py there is a reference to from knowledge_prepare import load_u2t, but knowledge_prepare is not in the repo and I could not find it elsewhere.

Thanks.

Cyn7hia commented 1 year ago

In wrapper.py there is a reference to from knowledge_prepare import load_u2t, but knowledge_prepare is not in the repo and I could not find it elsewhere.

Thanks.

Thanks! I updated the load_u2t in utils.py and also the wrapper.py with changes from from knowledge_prepare import load_u2t to from utils import load_u2t.

AADeLucia commented 1 year ago

Thanks!