| 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('Этот вопрос логичен?')) | |
| ``` | |