Update README.md
Browse files
README.md
CHANGED
@@ -37,8 +37,8 @@ Sentence 4 has a subject-verb agreement error.
|
|
37 |
```python
|
38 |
import torch
|
39 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
40 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
41 |
-
model = AutoModelForSequenceClassification.from_pretrained("
|
42 |
sentences = [
|
43 |
"The quarterly financial report are showing an increase.", # Incorrect
|
44 |
"Him has completed the audit for last fiscal year.", # Incorrect
|
|
|
37 |
```python
|
38 |
import torch
|
39 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
40 |
+
tokenizer = AutoTokenizer.from_pretrained("Ashishkr/query_wellformedness_score")
|
41 |
+
model = AutoModelForSequenceClassification.from_pretrained("Ashishkr/query_wellformedness_score")
|
42 |
sentences = [
|
43 |
"The quarterly financial report are showing an increase.", # Incorrect
|
44 |
"Him has completed the audit for last fiscal year.", # Incorrect
|