a261a22bd2
- Script 13: Firm A normality/multimodality analysis (Shapiro-Wilk, Anderson-Darling, KDE, per-accountant ANOVA, Beta/Gamma fitting) - Script 14: Independent min-dHash computation across all pairs per accountant (not just cosine-nearest pair) - THRESHOLD_VALIDATION_OPTIONS: 2026-01 discussion doc on threshold validation approaches - .gitignore: exclude model weights, node artifacts, and xlsx data Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
64 lines
757 B
Plaintext
64 lines
757 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Testing and diagnostics
|
|
analyze_full_page.py
|
|
ask_vlm_describe.py
|
|
check_detection.py
|
|
check_image_content.py
|
|
check_successful_file.py
|
|
diagnose_rejected.py
|
|
extract_actual_signatures.py
|
|
extract_both_regions.py
|
|
save_full_page.py
|
|
test_coordinate_offset.py
|
|
verify_actual_region.py
|
|
|
|
# Test outputs
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
full_page_*.png
|
|
test_*.png
|
|
detection_visualization_*.png
|
|
actual_signature_region.png
|
|
|
|
# Logs
|
|
*.csv
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Model weights (too large for git)
|
|
models/
|
|
*.pt
|
|
*.pth
|
|
|
|
# Node.js shells (accidentally created)
|
|
package.json
|
|
package-lock.json
|
|
node_modules/
|
|
|
|
# Sensitive/large data
|
|
*.xlsx
|