I've pip install -e'd the repository. Then I try doing:
from shapeworld.dataset import Dataset
dataset = Dataset.create(dtype='agreement', name='existential')
This said module pydmrs not found. So I pip installd pydmrs. Now I get:
~/git/ShapeWorld/shapeworld/realizers/dmrs/dmrs.py in <module>()
13 from pydmrs.core import Link, ListDmrs
14 from pydmrs.graphlang.graphlang import parse_graphlang
---> 15 from pydmrs.mapping.paraphrase import paraphrase
16
17
ModuleNotFoundError: No module named 'pydmrs.mapping.paraphrase'
This is on a Mac, using python 3.5. What am I missing here?
Hi Alex,
I've pip install -e'd the repository. Then I try doing:
This said module
pydmrs not found
. So Ipip install
d pydmrs. Now I get:This is on a Mac, using python 3.5. What am I missing here?