File size: 241 Bytes
ced43ed
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

```python
from transformers import pipeline

pipe = pipeline(model="hamzaMM/questionClassifier", task="text-classification")
def is_question(input: str):
    return pipe(input)[0]['label'] == 'LABEL_1'

is_question("How is the weather")
```