26 lines
497 B
Markdown
26 lines
497 B
Markdown
# neural-train
|
|
|
|
Train neural patterns from operations.
|
|
|
|
## Usage
|
|
```bash
|
|
npx claude-flow training neural-train [options]
|
|
```
|
|
|
|
## Options
|
|
- `--data <source>` - Training data source
|
|
- `--model <name>` - Target model
|
|
- `--epochs <n>` - Training epochs
|
|
|
|
## Examples
|
|
```bash
|
|
# Train from recent ops
|
|
npx claude-flow training neural-train --data recent
|
|
|
|
# Specific model
|
|
npx claude-flow training neural-train --model task-predictor
|
|
|
|
# Custom epochs
|
|
npx claude-flow training neural-train --epochs 100
|
|
```
|