Instructions to use Ashishkr/query_wellformedness_score with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ashishkr/query_wellformedness_score with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Ashishkr/query_wellformedness_score")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Ashishkr/query_wellformedness_score") model = AutoModelForSequenceClassification.from_pretrained("Ashishkr/query_wellformedness_score", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,7 +30,6 @@ datasets: google_wellformed_query
|
|
| 30 |
5. The Eiffel Tower is in Paris.
|
| 31 |
|
| 32 |
Among these sentences:
|
| 33 |
-
|
| 34 |
Sentences 1 and 5 are well-formed and have correct grammar and case.
|
| 35 |
Sentence 2 starts with a lowercase letter.
|
| 36 |
Sentence 3 is a fragment and is not well-formed.
|
|
|
|
| 30 |
5. The Eiffel Tower is in Paris.
|
| 31 |
|
| 32 |
Among these sentences:
|
|
|
|
| 33 |
Sentences 1 and 5 are well-formed and have correct grammar and case.
|
| 34 |
Sentence 2 starts with a lowercase letter.
|
| 35 |
Sentence 3 is a fragment and is not well-formed.
|