mrsinghania's picture
Update Readme file
90b29f1
|
raw
history blame
427 Bytes

Question vs Statement classifier trained on more than 7k samples which were coming from spoken data in an interview setting

Code for using in Transformers:

from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("mrsinghania/asr-question-detection")

model = AutoModelForSequenceClassification.from_pretrained("mrsinghania/asr-question-detection")