Skip to content

Inconsistency with 'alb' lang in LEARNED_LANGUAGES list #2

Description

@aoncevay

I've identified that the language 'alb' doesn't have learned features, but both LEARNED_LANGUAGES and available_learned_languages() lists report the opposite. A simple test:

import lang2vec.lang2vec as l2v
l = 'alb'
try:
    l2v.get_features(l, "learned")
except:
    print(False)
print(l in l2v.available_learned_languages())
print(l in l2v.LEARNED_LANGUAGES)

Output:

False
True
True

As far as I know, this is the only inconsistency, or maybe there is something I'm not considering from the lists. If I find anything similar, I'll report it here as well

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions