Ashishkr's picture
Update README.md
b578004
|
raw
history blame
No virus
2.04 kB
metadata
tags:
  - salesken
license: apache-2.0
inference: true
datasets: google_wellformed_query
widget:
  text: She present paper today

model name: Salesken's Query Wellformedness Score Model Description : Evaluate the well-formedness of sentences by checking grammatical correctness and completeness. Sensitive to case and penalizes sentences for incorrect grammar and case. Features:

  • Wellformedness Score: Provides a score indicating grammatical correctness and completeness.
  • Case Sensitivity: Recognizes and penalizes incorrect casing in sentences.
  • Broad Applicability: Can be used on a wide range of sentences.

Example:

  1. Dogs are mammals.
  2. she loves to read books on history.
  3. When the rain in Spain.
  4. Eating apples are healthy for you.
  5. The Eiffel Tower is in Paris.

Among these sentences:

Sentences 1 and 5 are well-formed and have correct grammar and case. Sentence 2 starts with a lowercase letter. Sentence 3 is a fragment and is not well-formed. Sentence 4 has a subject-verb agreement error.

example_usage: library: HuggingFace transformers

import torch
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("salesken/query_wellformedness_score")
model = AutoModelForSequenceClassification.from_pretrained("salesken/query_wellformedness_score")
sentences = [
    'what was the reason for everyone to leave the company', 
    'What was the reason behind everyone leaving the company', 
    # ... other sentences
]
features = tokenizer(sentences, padding=True, truncation=True, return_tensors="pt")
model.eval()
with torch.no_grad():
    scores = model(**features).logits
print(scores)

Intended Use Cases

Content Creation: Validate the well-formedness of written content.

Educational Platforms: Helps students check the grammaticality of their sentences.

Chatbots & Virtual Assistants: To validate user queries or generate well-formed responses.

contact: ashish@salesken.ai