- Rewrote CLAUDE.md with comprehensive development guide - Archived 20 old docs to docs/archive/ - Added PROJECT_ROADMAP_2025.md with research learnings - Added CLASSIFICATION_METHODS_COMPARISON.md - Added SESSION_HANDOVER_20251128.md - Added tools for analysis (brett_gmail/microsoft analyzers) - Updated .gitignore for archive folders - Config changes for local vLLM endpoint
88 lines
975 B
Plaintext
88 lines
975 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Data and Models
|
|
data/training/
|
|
src/models/pretrained/*.pkl
|
|
src/models/pretrained/*.joblib
|
|
*.h5
|
|
*.joblib
|
|
enron_mail_20150507
|
|
maildir
|
|
|
|
# Credentials
|
|
.env
|
|
credentials/**/*.json
|
|
!credentials/**/*.json.example
|
|
*.json
|
|
!config/*.json
|
|
!config/*.yaml
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Checkpoints
|
|
checkpoints/
|
|
*.checkpoint
|
|
|
|
# Results
|
|
results/
|
|
output/
|
|
|
|
# Pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# MyPy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*~
|
|
enron_mail_20150507.tar.gz
|
|
debug_*.txt
|
|
|
|
# Test artifacts
|
|
test/
|
|
ml_only_test/
|
|
results_*/
|
|
phase1_*/
|
|
|
|
# Python scripts (experimental/research - not in src/tests/tools)
|
|
*.py
|
|
!src/**/*.py
|
|
!tests/**/*.py
|
|
!tools/**/*.py
|
|
!setup.py
|
|
|
|
# Archive folders (historical content)
|
|
archive/
|
|
docs/archive/
|
|
|
|
# Data folders (user-specific content)
|
|
data/Bruce emails/
|
|
data/emails-for-link/ |