a few examples

This commit is contained in:
Awni Hannun
2023-11-29 08:17:26 -08:00
parent ecb806ab61
commit 8b336aa71d
32 changed files with 105181 additions and 2 deletions

14
transformer_lm/README.md Normal file
View File

@@ -0,0 +1,14 @@
# Transformer LM
This is an example of a decoder-only Transformer LM. The only dependency is
MLX.
Run the example on the GPU with:
```
python main.py --gpu
```
By default the dataset is the [PTB corpus](https://paperswithcode.com/dataset/penn-treebank). Choose a different dataset with the `--dataset` option.
To run the PyTorch, Jax or TensorFlowexamples install the respective framework.