mirror of
https://github.com/osmarks/nanogpt-experiments.git
synced 2024-11-10 20:09:58 +00:00
Merge pull request #286 from ctjlewis/master
docs: simplify dependencies installation
This commit is contained in:
commit
cf4835ed6f
14
README.md
14
README.md
@ -11,15 +11,19 @@ Because the code is so simple, it is very easy to hack to your needs, train new
|
||||
|
||||
## install
|
||||
|
||||
```
|
||||
pip install torch numpy transformers datasets tiktoken wandb tqdm
|
||||
```
|
||||
|
||||
Dependencies:
|
||||
|
||||
- [pytorch](https://pytorch.org) <3
|
||||
- [numpy](https://numpy.org/install/) <3
|
||||
- `pip install transformers` for huggingface transformers <3 (to load GPT-2 checkpoints)
|
||||
- `pip install datasets` for huggingface datasets <3 (if you want to download + preprocess OpenWebText)
|
||||
- `pip install tiktoken` for OpenAI's fast BPE code <3
|
||||
- `pip install wandb` for optional logging <3
|
||||
- `pip install tqdm` <3
|
||||
- `transformers` for huggingface transformers <3 (to load GPT-2 checkpoints)
|
||||
- `datasets` for huggingface datasets <3 (if you want to download + preprocess OpenWebText)
|
||||
- `tiktoken` for OpenAI's fast BPE code <3
|
||||
- `wandb` for optional logging <3
|
||||
- `tqdm` for progress bars <3
|
||||
|
||||
## quick start
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user