I am parsing Noun Chunks with the help of Spacy and I want to "normalize" those Noun Chunks, that means I want to change a given Noun from its grammatikal case to another grammatikal case (f.e. Genitiv to Nominativ). All I managed to achive so far ist to label the noun chunks using the Spacy morphologizer. Since this problem is quite unique to the german language i was not able to find much about this problem on the internet.
An Example would be turning this:
"dortiger Verfügung" dortiger Case=Dat|Degree=Pos|Gender=Fem|Number=Sing Verfügung Case=Dat|Gender=Fem|Number=Sing
into this: "dortige Verfügung" dortige Case=Nom|Degree=Pos|Gender=Fem|Number=Sing Verfügung Case=Nom|Gender=Fem|Number=Sing