File size: 203 Bytes
c50fd34
a2d89f6
 
 
 
 
c50fd34
 
1
2
3
4
5
6
7
8
```python
texts = List[str]

from transformers import pipeline

classifier = pipeline("text-classification", model='danzzzll/rubert-tiny_cls', tokenizer='cointegrated/rubert-tiny2')
classifier(texts)
```