File size: 444 Bytes
d465cc8
 
 
 
 
 
4456cb6
8218f18
4456cb6
8218f18
48608ae
 
 
 
4456cb6
8218f18
4456cb6
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
tags:
- text-classification
library_name: transformers
---

# RuBERT Model for Logical Question Classification

This model classifies questions as logically correct or incorrect.

 1 - logically correct 

 0 - logically incorrect 

### Example inference

```python
from transformers import pipeline
classifier = pipeline('text-classification', model='I77/question_classifier')
print(classifier('Этот вопрос логичен?'))
```