Add 9 built-in classification profile definitions as YAML files bundled
via include_str! for the document type classifier (Phase 5.6).
- Create profiles/builtin/classification/{invoice,receipt,contract,scientific_paper,slide_deck,form,bank_statement,legal_filing,book_chapter}.yaml
- Implement load_builtins() in profiles module with profiles feature gate
- Each profile uses MatchPredicate schema with text patterns, structural signals, page counts
- Add comprehensive unit tests for profile loading and feature gate
Closes: pdftract-5sdd
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
30 lines
511 B
YAML
30 lines
511 B
YAML
name: Point of Sale Receipt
|
|
type: receipt
|
|
threshold: 0.6
|
|
predicates:
|
|
- kind: text_contains
|
|
pattern: receipt
|
|
weight: 0.35
|
|
case_sensitive: false
|
|
min_hits: 1
|
|
|
|
- kind: text_matches_regex
|
|
pattern: '[\$€£¥]\d'
|
|
weight: 0.25
|
|
min_hits: 2
|
|
|
|
- kind: font_diversity_in_range
|
|
min: 1
|
|
max: 2
|
|
weight: 0.15
|
|
|
|
- kind: page_count_in_range
|
|
min: 1
|
|
max: 1
|
|
weight: 0.15
|
|
|
|
- kind: text_contains
|
|
pattern: total
|
|
weight: 0.1
|
|
case_sensitive: false
|
|
min_hits: 1
|