pdftract/profiles/builtin/classification/scientific_paper.yaml
jedarden 71705ed77b feat(profiles): implement built-in classification profiles (5.6.4)
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>
2026-05-24 15:04:43 -04:00

39 lines
688 B
YAML

name: Scientific Paper
type: scientific_paper
threshold: 0.6
predicates:
- kind: text_contains
pattern: abstract
weight: 0.25
case_sensitive: false
min_hits: 1
- kind: text_contains
pattern: references
weight: 0.2
case_sensitive: false
min_hits: 1
- kind: text_contains
pattern: introduction
weight: 0.1
case_sensitive: false
min_hits: 1
- kind: structural_has_math_operators
weight: 0.15
- kind: page_count_in_range
min: 4
max: 30
weight: 0.1
- kind: heading_depth_at_least
depth: 2
weight: 0.1
- kind: text_contains
pattern: et al.
weight: 0.1
case_sensitive: false
min_hits: 1