BREAKING: Removes 746,569 lines of outdated documentation from root folder ## Summary - Deleted 2,060 report/documentation files from root folder - Kept only essential files: README.md, CLAUDE.md - Updated .gitignore and config/tarpaulin.toml - Reorganized config files into config/ directory ## Removed Content Categories - Agent reports (AGENT_*.md, AGENT*.txt) - Wave reports (WAVE_*.md, DQN_*.md) - Implementation summaries - Quick references and summaries - Test reports and validation docs - Deployment scripts (obsolete .sh files) - Legacy config files and logs ## Preserved - README.md - Main project documentation - CLAUDE.md - Claude Code configuration - docs/archive/ - Historical files for reference - docs/ folder - Current documentation - All source code unchanged 🐝 Hive Mind Collective Intelligence Cleanup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
430 B
YAML
27 lines
430 B
YAML
# Minimal TLI Tune Command Test Configuration
|
|
# Purpose: E2E workflow testing of hyperparameter tuning
|
|
|
|
search_space:
|
|
learning_rate:
|
|
type: loguniform
|
|
low: 0.0001
|
|
high: 0.01
|
|
|
|
batch_size:
|
|
type: categorical
|
|
choices: [64, 128, 256]
|
|
|
|
gamma:
|
|
type: uniform
|
|
low: 0.95
|
|
high: 0.99
|
|
|
|
objective:
|
|
metric: sharpe_ratio
|
|
direction: maximize
|
|
|
|
pruning:
|
|
enabled: true
|
|
strategy: median
|
|
warmup_trials: 2
|