gpt2_xl / README.md
IMvision12's picture
Migrate to zeromodels (rename kf_*.json -> zm_*.json, fix refs in config + README, ensure tag + badge)
cd00ef1 verified
|
Raw
History Blame Contribute Delete
2.86 kB
---
pipeline_tag: text-generation
license: mit
base_model: openai-community/gpt2-xl
library_name: zeromodels
language:
- en
tags:
- keras
- zeromodels
- gpt2
- gpt-2
- text-generation
- pytorch
- jax
- tf
---
# Run GPT-2 with Keras 3: JAX, PyTorch, or TensorFlow
[![GitHub](https://img.shields.io/badge/GitHub-ZeroModels-black?logo=github)](https://github.com/IMvision12/ZeroModels) [![Docs](https://img.shields.io/badge/Docs-GPT--2-blue)](https://imvision12.github.io/ZeroModels/gpt2/)
# zeromodels/gpt2_xl
Paper: [Language Models are Unsupervised Multitask Learners (Radford et al., 2019)](https://cdn.openai.com/better-language-models/language_models_are_unsupervised_multitask_learners.pdf)
GPT-2 is OpenAI's decoder-only transformer language model trained on WebText:
learned absolute position embeddings, pre-LayerNorm blocks, `gelu_new`
activations, a tied output head, and a byte-level BPE tokenizer. This is the
**1.5B** variant, a base completion model (no chat template).
For more details, see the upstream [model card](https://huggingface.co/openai-community/gpt2-xl).
Pure-**Keras 3** conversion of [`openai-community/gpt2-xl`](https://huggingface.co/openai-community/gpt2-xl) for
[zeromodels](https://github.com/IMvision12/ZeroModels). One implementation runs unmodified on
**TensorFlow / Torch / JAX**.
## Quick start
```python
import os
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
from zeromodels.models.gpt2 import GPT2TextGenerate, GPT2Tokenizer
model = GPT2TextGenerate.from_weights("zeromodels/gpt2_xl")
tokenizer = GPT2Tokenizer.from_weights("zeromodels/gpt2_xl")
inputs = tokenizer("The meaning of life is")
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0]))
```
All GPT-2 sizes load the same way with `from_weights("zeromodels/<variant>")`:
| Variant | Hub | Params |
|---|---|---|
| `gpt2` | [`zeromodels/gpt2`](https://huggingface.co/zeromodels/gpt2) | 124M |
| `gpt2_medium` | [`zeromodels/gpt2_medium`](https://huggingface.co/zeromodels/gpt2_medium) | 355M |
| `gpt2_large` | [`zeromodels/gpt2_large`](https://huggingface.co/zeromodels/gpt2_large) | 774M |
| `gpt2_xl` | [`zeromodels/gpt2_xl`](https://huggingface.co/zeromodels/gpt2_xl) | 1.5B |
## Tips
- Set `KERAS_BACKEND` **before** importing Keras / zeromodels.
- This is a base completion model: it continues a prompt and is not
instruction-tuned.
- See the [GPT-2 docs](https://imvision12.github.io/ZeroModels/gpt2/) and [Loading Weights](https://imvision12.github.io/ZeroModels/loading_weights/).
- Upstream safetensors still work via the `hf:` prefix, e.g.
`GPT2TextGenerate.from_weights("hf:openai-community/gpt2-xl")`.
## Special Thanks
A huge thank you to the OpenAI GPT-2 authors for creating and releasing these models.
License: MIT, inherited from the upstream OpenAI GPT-2 release.