pip install fastc
from fastc import SentenceClassifier classifier = SentenceClassifier('braindao/e5-large-instruct-language-identifier-infused-en-es-gl-ko-zh-fastc') scores = classifier.predict_one('Como te atopas?') language = max(scores, key=scores.get)
Base model