GPT-2
Project description
Keras GPT-2
Load pretrained weights and predict with GPT-2.
Install
pip install keras-gpt-2
Demo
import os
from keras_gpt_2 import load_trained_model_from_checkpoint, get_bpe_from_files, generate
model_folder = 'xxx/yyy/117M'
config_path = os.path.join(model_folder, 'hparams.json')
checkpoint_path = os.path.join(model_folder, 'model.ckpt')
encoder_path = os.path.join(model_folder, 'encoder.json')
vocab_path = os.path.join(model_folder, 'vocab.bpe')
print('Load model from checkpoint...')
model = load_trained_model_from_checkpoint(config_path, checkpoint_path)
print('Load BPE from files...')
bpe = get_bpe_from_files(encoder_path, vocab_path)
print('Generate text...')
output = generate(model, bpe, ['From the day forth, my arm'], length=20, top_k=1)
# If you are using the 117M model and top_k equals to 1, then the result will be:
# "From the day forth, my arm was broken, and I was in a state of pain. I was in a state of pain,"
print(output[0])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
keras-gpt-2-0.17.0.tar.gz
(7.2 kB
view details)
File details
Details for the file keras-gpt-2-0.17.0.tar.gz
.
File metadata
- Download URL: keras-gpt-2-0.17.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83f81c5088100c2c794d23b1966f59a495f9f2bf6f34d504b4f91998323f6e68 |
|
MD5 | 522e8d31081a6433bc39a037ea1318ed |
|
BLAKE2b-256 | 9287ad1682e2a921659c5e2979d30c2c0afbaf91c3e7885f6e14821de81ff28d |