mrsinghania
commited on
Commit
•
7963e6f
1
Parent(s):
707e5ad
Question vs Statement classifier trained on more than 7k samples which were coming from spoken data in interview setting,
Browse files
README.md
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
2 |
+
|
3 |
+
tokenizer = AutoTokenizer.from_pretrained("mrsinghania/asr-question-detection")
|
4 |
+
|
5 |
+
model = AutoModelForSequenceClassification.from_pretrained("mrsinghania/asr-question-detection")
|