Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,11 @@ Papers:
### [YOLOv5](./src/detection/yolov5.h)

In particular, it contains implementations for YOLOv5{n,s,m,l,x}, which match the ones in [ultralytics/yolov5](https://github.com/ultralytics/yolov5).

## [Language](./src/lm)

### [Transformer](./src/lm/transformer.h)
Contains the basic implementation of the Transformer architecture for next token prediction tasks. The self-attention mechanism can also be effectively reused for computer vision tasks, as demonstrated in Vision Transformer (ViT) and similar models.

Papers:
- [Attention Is All You Need](https://arxiv.org/abs/1706.03762)