├── .gitignore ├── LICENSE ├── README.md ├── example ├── README.md ├── example_pic.png ├── top_reddit_posts.csv └── top_reddit_posts_encoded.txt ├── keyword_decode.py ├── keyword_encode.py ├── keyword_encode_aitextgen_reddit.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/example/README.md -------------------------------------------------------------------------------- /example/example_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/example/example_pic.png -------------------------------------------------------------------------------- /example/top_reddit_posts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/example/top_reddit_posts.csv -------------------------------------------------------------------------------- /example/top_reddit_posts_encoded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/example/top_reddit_posts_encoded.txt -------------------------------------------------------------------------------- /keyword_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/keyword_decode.py -------------------------------------------------------------------------------- /keyword_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/keyword_encode.py -------------------------------------------------------------------------------- /keyword_encode_aitextgen_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/keyword_encode_aitextgen_reddit.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/gpt-2-keyword-generation/HEAD/requirements.txt --------------------------------------------------------------------------------