Graders are the core of Grader.io — they evaluate form submissions using AI-powered criteria to score and categorize leads automatically.
When a submission arrives, the grader processes it through several stages:
Rule-based graders use explicit if/then logic to score submissions:
{ "criteria": [ { "field": "budget", "condition": "greaterThan", "value": 10000, "score": 25 }, { "field": "company_size", "condition": "between", "min": 50, "max": 500, "score": 20 } ] }
Best for: Simple, predictable scoring with well-defined thresholds.
AI graders use natural language processing to evaluate free-text responses:
Best for: Complex evaluations where human judgment is typically required.
Combine rule-based and AI scoring for the best of both worlds. Use rules for objective criteria and AI for subjective ones.
Each criterion has a weight that determines its impact on the final score:
| Criterion | Weight | Max Score |
|---|---|---|
| Budget | 30% | 30 |
| Company Size | 20% | 20 |
| Industry Match | 25% | 25 |
| Response Quality | 25% | 25 |
| Total | 100% | 100 |
Submissions are categorized based on their final score:
Next: Grader Configuration — Set up advanced scoring rules