10: neutral
21: positive
32: negative1neutral: нейтральный
2positive: позитивный
3negative: негативный1from transformers import pipeline
2model = pipeline(model="seara/rubert-tiny2-russian-sentiment")
3model("Привет, ты мне нравишься!")
4# [{'label': 'positive', 'score': 0.9398769736289978}]