Create commits following evie's conventional commits format
evie uses conventional commits to maintain a clear and organized commit history.
<type>(<issue-number>): <description>
feat - New featurefix - Bug fixdocs - Documentation changesstyle - Code style changes (formatting, etc.)refactor - Code refactoring without changing functionalitytest - Adding or updating testschore - Maintenance tasks, dependency updates, etc.Single line:
feat(5): implement multi-head attention mechanism
Multi-line:
feat(8): add learning rate scheduler
Implement cosine annealing with warmup for better training stability.
The scheduler gradually increases LR during warmup then decreases
following a cosine curve.
Closes #8
Bug fix:
fix(12): correct gradient accumulation in training loop
Documentation:
docs(6): add dataset preprocessing guide
If your commit closes an issue, add to the commit body or title:
Closes #<issue-number>
This automatically closes the issue when the commit is merged.