Sentence → Classifier.load → predictthree lines; predict annotates in place
NER results are spansget_spans("ner") → .text / .tag / .score
load models by task or HF id"ner", "sentiment", "pos" or any hub model
embed() mutates the sentencevectors land on token.embedding / sent.embedding
StackedEmbeddings is the recipeGloVe + forward/backward Flair embeddings
Document vs Word embeddingsone vector per sentence vs per token
ColumnCorpus + make_label_dictionaryCoNLL columns → labels to train
fine_tune for transformers, train otherwisecorrect LR/schedule