Skip to content

Organize Computable Features in a Reference Catalogue #30

@LinguList

Description

@LinguList

The basic idea would be to make a collection of features we can compute (from text, from igt, from wordlists, etc.). This could inform some Grammaticon at some point in time, but for now, we would concentrate in collecting features which can be computed, provide links to functions that compute them, along with the data one needs.

In some sense, cltoolkit already has some structure for this:

FEATURES = FeatureCollection(Feature(**f) for f in [
{
"id": "ConsonantQualitySize",
"name": "consonant quality size",
"function": phonology.InventoryQuery("consonants_by_quality"),
},
{
"id": "VowelQualitySize",
"name": "vowel quality size",
"function": phonology.InventoryQuery("vowels_by_quality"),
},
{
"id": "VowelSize",
"name": "vowel size",
"function": phonology.InventoryQuery("vowels"),
},
{
"id": "ConsonantSize",
"name": "consonant size",
"function": phonology.InventoryQuery("consonants"),
},
{
"id": "CVRatio",

On the long run, however, this feature collection could have a live of its own and include also other implementations of features/language structures, e.g., also in pyigt, and the like.

@fmatter, we discussed this quickly with @xrotwang, do you think it would be interesting to follow this up? The idea would be to say something like: language structure X which is the same as WALS AX and APICS N can be computed from a wordlist with the function XYZ and from IGT with the function ABC. It would be a kind of Concepticon with very limited scope.

We still discuss the name, we had something like "struca" or "cls" (Catalog of Language Structures), "calas" may also be an option.

Structurewise, it would be a list of feature IDs that link to datasets like WALS, APICS, and also to code implementations.

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