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:
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
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:
Output:
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