roman-kutlak/nlglib

Why is nlglib conjugating NP("Sue") to Sues?

d-vyd opened this issue · 3 comments

d-vyd commented

p=Clause(NP("Sue"),VP("be"),"good")
realise_en(p)
'Sues is good.'

How can I force nlglib not to conjugate the subject to get the expected output, "Sue is good." ?

Hi d-vyd, sorry for the delayed response -- busy on other project. This looks like some bug in simplenlg. I will look into it when I have more time. It seems that it works with:
p=Clause(Word("Sue"),VP("be"),"good")

d-vyd commented

I'm afraid not -- just data pipelines for my day job.