-
Notifications
You must be signed in to change notification settings - Fork 0
Description
We had an internal workshop at the Digital Academy Mainz in which we enriched person data from various research projects with gender information, using GenderGuesser, custom-trained LLMs, and the GND. I would like to integrate the results of this workshop into our MEI data (they are currently stored in a separate CSV). However, MEI does not provide a @gender attribute or a <gender> or <sex> element, whereas TEI offers both.
I think it is important to be able to record this information in the data in order to make female actors visible within their contexts. This would give us the opportunity to answer more research questions on this topic. One possible solution would be to add a @gender attribute to <persName>, like it's done in TEI. In TEI, a <gender> element could be modelled inside person, and its @evidence attribute could be used to specify the source of the information more precisely.
Example in TEI:
<person gender="M" role="poet">
<persName>Ovid</persName>
</person>
Example in TEI with element gender:
<person role="poet">
<persName>Ovid</persName>
<gender value="M" evidence="selfConstructed">male</gender>
</person>
Proposal in MEI:
<contributor>
<persName role="lyricist" gender="F">Henriette, Luise</persName>
</contributor>