- Update DQN trainer with gradient collapse detection warmup - Add portfolio tracker improvements - Include hyperopt trial results (multiple Sharpe ratio experiments) - Add new test files for action/position sign convention, early stopping, cash reserve bugs, and portfolio execution - Update trained model files - Add Claude Code configuration and skills 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
585 B
Markdown
26 lines
585 B
Markdown
# parallel-execute
|
|
|
|
Execute tasks in parallel for maximum efficiency.
|
|
|
|
## Usage
|
|
```bash
|
|
npx claude-flow optimization parallel-execute [options]
|
|
```
|
|
|
|
## Options
|
|
- `--tasks <file>` - Task list file
|
|
- `--max-parallel <n>` - Maximum parallel tasks
|
|
- `--strategy <type>` - Execution strategy
|
|
|
|
## Examples
|
|
```bash
|
|
# Execute task list
|
|
npx claude-flow optimization parallel-execute --tasks tasks.json
|
|
|
|
# Limit parallelism
|
|
npx claude-flow optimization parallel-execute --tasks tasks.json --max-parallel 5
|
|
|
|
# Custom strategy
|
|
npx claude-flow optimization parallel-execute --strategy adaptive
|
|
```
|