GrammaticalFramework/gf-wordnet

Plurale tantum nouns

inariksit opened this issue · 2 comments

Do you have a policy how to handle plurale tantum nouns? For example

WordNetSpa.gf:lin day_off_CN = UseN (mkN "vacaciones") ; --guessed
WordNetSpa.gf:lin holiday_1_N = mkN "vacaciones" ;
WordNetSpa.gf:lin leave_1_N = mkN "vacaciones" ; --guessed
WordNetSpa.gf:lin vacation_1a_N = mkN "vacaciones" ;
WordNetSpa.gf:lin vacation_1b_N = mkN "vacaciones" ;

Currently, this produces "un vacaciones", "los vacacioneses", which is incorrect. I would like to correct all these entries like this:

oper vacación_N : N = mkN "vacación" "vacaciones" Fem ;
lin day_off_CN : CN = UseN vacación_N ;

lin vacation_1b_N = vacación_N ;

I perceive GF-wordnet as a low-level lexical resource, and that it's the responsibility of an application grammarian to make sure to use holiday_1_N in a plural NP. Is this the way you have thought of GF-wordnet as well, or do you have other visions?
I would be okay with oper vacación_N : N = mkN "vacaciones" "vacaciones" Fem as well, with the inconvenience that we'd get "una vacaciones" which doesn't seem correct. But it's still better than "los vacacioneses".

Alright, if you are planning grammar extensions that handle plurale tantums, then I'll wait for them! :) I'm not in any hurry, I was just playing around one day with Spanish, and noticed these things. I think I will be using Wordnet lexicon in the future a lot, but so far only for English.