Skip to content

Commit

Permalink
docs: fix link and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
danbev committed Dec 6, 2024
1 parent 4008b3b commit b725a5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions notes/tokenization/bpe.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ BPE refers to the order or priority of these merge rules. The most frequent
pairs get the lowest ranks (highest priority).

#### llama.cpp Byte Pair Encoding
This section will step through [tokenize.cpp](../fundamentals/llama.cpp/tokenize.cpp)
This section will step through [tokenize.cpp](../../fundamentals/llama.cpp/tokenize.cpp)
which be built and started using the following commands:
```console
$ cd ../fundamentals/llama.cpp/
Expand Down Expand Up @@ -456,7 +456,6 @@ And two new bigrams have been added to the work queue for future consideration:
```c++
A-BC
BC-D
```
Before:
[A] -> [B] -> [C] -> [D] -> [E]
Expand Down

0 comments on commit b725a5e

Please sign in to comment.