Skip to content

Plurale tantum nouns #25

@inariksit

Description

@inariksit

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".

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions