Skip to content

Instantly share code, notes, and snippets.

@bguil
Created June 7, 2021 19:29
Show Gist options
  • Save bguil/72e2caa15adcf510b3c3851b37647f2c to your computer and use it in GitHub Desktop.
Save bguil/72e2caa15adcf510b3c3851b37647f2c to your computer and use it in GitHub Desktop.
test Grew rule for Beja
rule det_N-Det{
pattern{
N[upos=NOUN];
Det[upos=DET, PronType=DEM];
%Det << N;
e: N-[det]->Det;
e.length = 2
}
commands{
add_edge f: N->Det;
f.label = e.label
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment