README.md: minor improvements
This commit is contained in:
parent
1f098ca4d7
commit
ab3688a401
@ -1,11 +1,12 @@
|
|||||||
# ⏳ tiktoken
|
# ⏳ tiktoken
|
||||||
|
|
||||||
tiktoken is a fast tokeniser.
|
tiktoken is a fast [BPE](https://en.wikipedia.org/wiki/Byte_pair_encoding) tokeniser for use with
|
||||||
|
OpenAI's models.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
import tiktoken
|
import tiktoken
|
||||||
enc = tiktoken.get_encoding("gpt2")
|
enc = tiktoken.get_encoding("gpt2")
|
||||||
print(enc.encode("hello world"))
|
assert enc.decode(enc.encode("hello world")) == "hello world"
|
||||||
```
|
```
|
||||||
|
|
||||||
The open source version of `tiktoken` can be installed from PyPI:
|
The open source version of `tiktoken` can be installed from PyPI:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user