{ "info": { "author": "Rishabh Anand", "author_email": "mail.rishabh.anand@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Build Tools" ], "description": "

gpt2-client

\n\n

Easy-to-use Wrapper for GPT-2 117M, 345M, and 774M Transformer Models

\n\n

\n\n\n\"Pypi\n\n\n\"GitHub\n\n\n\n\n\n

\n\n

\n What is it \u2022 \n Installation \u2022 \n Getting Started\n

\n\n
\n\n

Made by Rishabh Anand \u2022 https://rish-16.github.io

\n\n

What is it

\n\nGPT-2 is a Natural Language Processing model [developed by OpenAI](https://openai.com/blog/better-language-models/) for text generation. It is the successor to the GPT (Generative Pre-trained Transformer) model trained on 40GB of text from the internet. It features a Transformer model that was brought to light by the [Attention Is All You Need](https://arxiv.org/abs/1706.03762) paper in 2017. The model has two versions - `117M` and `345M` - that differ based on the amount of training data fed to it and the number of parameters they contain. \n
\n
\nThe `345M` model is currently the largest one available while the 1.5B model is being vetted for release with selected partners. Only recently has OpenAI decided to release its training weights as part of its Staged Release plan. There have been several implications and debates over their release plan regarding misuse.\n
\n
\nFinally, `gpt2-client` is a wrapper around the original [`gpt-2` repository](https://github.com/openai/gpt-2) that features the same functionality but with more accessiblity, comprehensibility, and utilty. You can play around both GPT-2 models with less than five lines of code.\n\n> ***Note**: This client wrapper is in no way liable to any damage caused directly or indirectly. Any names, places, and objects referenced by the model are fictional and seek no resemblance to real life entities or organisations. Samples are unfiltered and may contain offensive content. User discretion advised.*\n\n

Installation

\n\nInstall client via `pip`. Ideally, `gpt2-client` is well supported for Python >= 3.5 and TensorFlow >= 1.X. Some libraries may need to be reinstalled or upgraded using the `--upgrade` flag via `pip` if *Python 2.X* is used.\n\n```bash\npip install gpt2-client\n```\n\n> ***Note:*** `gpt2-client` is **not** compatible with TensorFlow 2.0\n\n

Getting started

\n\n**1. Download the model weights and checkpoints**\n\n```python\nfrom gpt2_client import GPT2Client\n\ngpt2 = GPT2Client('117M', save_dir='models') # This could also be `345M` or `774M`. Rename `save_dir` to anything.\ngpt2.load_model(force_download=False) # Use cached versions if available.\n```\n\nThis creates a directory called `models` in the current working directory and downloads the weights, checkpoints, model JSON, and hyper-parameters required by the model. Once you have called the `load_model()` function, you need not call it again assuming that the files have finished downloading in the `models` directory.\n\n> ***Note:*** Set `force_download=True` to overwrite the existing cached model weights and checkpoints\n\n**2. Start generating text!**\n\n```python\nfrom gpt2_client import GPT2Client\n\ngpt2 = GPT2Client('117M') # This could also be `345M` or `774M`\n\ngpt2.generate(interactive=True) # Asks user for prompt\ngpt2.generate(n_samples=4) # Generates 4 pieces of text\ntext = gpt.generate(return_text=True) # Generates text and returns it in an array\ngpt2.generate(interactive=True, n_samples=3) # A different prompt each time\n```\n\nYou can see from the aforementioned sample that the generation options are highly flexible. You can mix and match based on what kind of text you need generated, be it multiple chunks or one at a time with prompts.\n\n**3. Generating text from batch of prompts**\n\n```python\nfrom gpt2_client import GPT2Client\n\ngpt2 = GPT2Client('117M') # This could also be `345M` or `774M`\n\nprompts = [\n \"This is a prompt 1\",\n \"This is a prompt 2\",\n \"This is a prompt 3\",\n \"This is a prompt 4\"\n]\n\ntext = gpt2.generate_batch_from_prompts(prompts) # returns an array of generated text\n```\n\n**4. Fine-tuning GPT-2 to custom datasets**\n\n```python\nfrom gpt2_client import GPT2Client\n\ngpt2 = GPT2Client('117M') # This could also be `345M` or `774M`\n\nmy_corpus = './data/shakespeare.txt' # path to corpus\ncustom_text = gpt2.finetune(my_corpus, return_text=True) # Load your custom dataset\n```\n\nIn order to fine-tune GPT-2 to your custom corpus or dataset, it's ideal to have a GPU or TPU at hand. [Google Colab](http://colab.research.google.com) is one such tool you can make use of to re-train/fine-tune your custom model.\n\n

Contributing

\n\nSuggestions, improvements, and enhancements are always welcome! If you have any issues, please do raise one in the Issues section. If you have an improvement, do file an issue to discuss the suggestion before creating a PR.\n\nAll ideas \u2013 no matter how outrageous \u2013 welcome!\n\n

Licence

\n\n[MIT](https://github.com/rish-16/gpt2client/blob/master/LICENSE.txt)\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/rish-16/gpt2client/archive/2.0.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rish-16/gpt2client", "keywords": "gpt-2,AI,ML,wrapper,transformer,machine learning,openai,text generation", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "gpt2-client", "package_url": "https://pypi.org/project/gpt2-client/", "platform": "", "project_url": "https://pypi.org/project/gpt2-client/", "project_urls": { "Download": "https://github.com/rish-16/gpt2client/archive/2.0.tar.gz", "Homepage": "https://github.com/rish-16/gpt2client" }, "release_url": "https://pypi.org/project/gpt2-client/2.0/", "requires_dist": [ "numpy", "tensorflow", "regex", "tqdm", "requests", "termcolor", "gpt-2-simple" ], "requires_python": "", "summary": "Easy-to-use Wrapper for the GPT-2 117M, 345M, and 774M Transformer Models", "version": "2.0" }, "last_serial": 5942963, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "a4f8970cf8b1c15b92a5159d52e3b105", "sha256": "be52367430828115be9f178ebc9a91b91995b1b18088826796eb8a31eed037e8" }, "downloads": -1, "filename": "gpt2_client-1.0.tar.gz", "has_sig": false, "md5_digest": "a4f8970cf8b1c15b92a5159d52e3b105", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7779, "upload_time": "2019-08-06T14:30:38", "url": "https://files.pythonhosted.org/packages/74/33/55b8ef8aff17a50f034163bd23119d6c212eacaabc6c0d47012d28c7d208/gpt2_client-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "733e3c84d7af7a3d35408d629dc3d667", "sha256": "08a432b728722169c3e242eaa33639a6e0b85aaebc099951c09c08ec5638cc49" }, "downloads": -1, "filename": "gpt2_client-1.1.tar.gz", "has_sig": false, "md5_digest": "733e3c84d7af7a3d35408d629dc3d667", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7804, "upload_time": "2019-08-06T14:36:01", "url": "https://files.pythonhosted.org/packages/45/7c/41326d90a043b49d2482f9fd0948ef6ffafca09cb7cbd031582f27ad6c88/gpt2_client-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "269a8afb671a9fd534589c88e7e65374", "sha256": "38ea95bf19ad9cd3aa3ba407f893b39d5f833fbf7678fa91d47664dd7e87776a" }, "downloads": -1, "filename": "gpt2_client-1.2.tar.gz", "has_sig": false, "md5_digest": "269a8afb671a9fd534589c88e7e65374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7797, "upload_time": "2019-08-06T14:37:49", "url": "https://files.pythonhosted.org/packages/71/b0/9376497c45b3e4ec30a299add6b0a4268a26feaf3fd30d66f93b8a885581/gpt2_client-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "2864bafe0c187e078d2a7064dc4ce4b3", "sha256": "7e138fd2124b41fbc2010e3284daef9def840cd146fc7cb61b6a98ce6918d550" }, "downloads": -1, "filename": "gpt2_client-1.3.tar.gz", "has_sig": false, "md5_digest": "2864bafe0c187e078d2a7064dc4ce4b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7789, "upload_time": "2019-08-06T14:40:27", "url": "https://files.pythonhosted.org/packages/11/f5/68f5e7342d8037191692fb8efe86833e4bd49caff76ccae38dcc9d243a76/gpt2_client-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "15a55e3df78cc446b15fe237b1b2df6a", "sha256": "7216dd63e44eca5d1a14c4fdb0e20252089c53651ccb1a2c3394454b2deb6059" }, "downloads": -1, "filename": "gpt2_client-1.4.tar.gz", "has_sig": false, "md5_digest": "15a55e3df78cc446b15fe237b1b2df6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7788, "upload_time": "2019-08-06T14:43:19", "url": "https://files.pythonhosted.org/packages/1d/57/21147328a59dcf86c46e759ba8096e5583066b71a28d1f85077150b1b152/gpt2_client-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "9152dd764fd07c03ded147332191efa1", "sha256": "9ef294a972290d1c5aca6537247a3bb5361a64c0a4bf7a7a7ebe1877d0d1268f" }, "downloads": -1, "filename": "gpt2_client-1.5.tar.gz", "has_sig": false, "md5_digest": "9152dd764fd07c03ded147332191efa1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9815, "upload_time": "2019-08-07T01:13:31", "url": "https://files.pythonhosted.org/packages/40/eb/73e658d3b00afdbc85eedf768e840277dc8cf6adabd00a88d0d6f55c3010/gpt2_client-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "286059fdd050123088a71d371d801df8", "sha256": "4c481e3b9677f8bb6710d70d02923437a63eb82e93d269f70dbfed9a16182c0e" }, "downloads": -1, "filename": "gpt2_client-1.6.tar.gz", "has_sig": false, "md5_digest": "286059fdd050123088a71d371d801df8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10015, "upload_time": "2019-08-07T01:16:37", "url": "https://files.pythonhosted.org/packages/40/22/ef109de12a39af875003aeeb4427c8aa0f35003ce35921fe15478a541113/gpt2_client-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "8a3df6b8f0a555d90fc4cdc04025d05c", "sha256": "15ba8ba39d3cdd8da6924e82a65d042a115bc12bea8e6e657b9bb791c97b1953" }, "downloads": -1, "filename": "gpt2_client-1.7.tar.gz", "has_sig": false, "md5_digest": "8a3df6b8f0a555d90fc4cdc04025d05c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10017, "upload_time": "2019-08-07T01:20:56", "url": "https://files.pythonhosted.org/packages/70/52/c94572670eac1b9429338906e14211a396c3900c65115bc5d73f36d03f8e/gpt2_client-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "c2112aadd443593a05267457013903d7", "sha256": "183beaa9e27093f734700acbe43e321cdc09d6d6fb752910668ffa20580583ae" }, "downloads": -1, "filename": "gpt2_client-1.7.1.tar.gz", "has_sig": false, "md5_digest": "c2112aadd443593a05267457013903d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10023, "upload_time": "2019-08-07T01:21:35", "url": "https://files.pythonhosted.org/packages/95/fe/c2cb9b79cb198f78c18b568fcce8f082b64315b4bf61ba439fd58e90ad69/gpt2_client-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "c2602622ee2bfbe8418390586db7a3f1", "sha256": "2da88fd98372a591ae9845568f0d01fcb816eb36d532a2d7ae0336eebab4f15b" }, "downloads": -1, "filename": "gpt2_client-1.7.2.tar.gz", "has_sig": false, "md5_digest": "c2602622ee2bfbe8418390586db7a3f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10024, "upload_time": "2019-08-07T01:22:52", "url": "https://files.pythonhosted.org/packages/be/a9/130d960694bc5849a05897813e81e075472a3074be5ffc5da2191da2e679/gpt2_client-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "b401af3632ea997dbbc866aac4cdec14", "sha256": "4e87a1ea5628e4ad5137237581729afd91316a0abcbce4ccc86b0d92071feaed" }, "downloads": -1, "filename": "gpt2_client-1.7.3.tar.gz", "has_sig": false, "md5_digest": "b401af3632ea997dbbc866aac4cdec14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10025, "upload_time": "2019-08-07T01:25:13", "url": "https://files.pythonhosted.org/packages/15/8b/931c7b65f80e4fe92dd75f17ac0b5caea518f99aa03d41f41d28e9e30dad/gpt2_client-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "32134c15586d580ba20e3fea9783e0fb", "sha256": "45c0e225a24dc2384dead6a37d42281dfe007fe81a66af1ecafda014ab9563da" }, "downloads": -1, "filename": "gpt2_client-1.7.4.tar.gz", "has_sig": false, "md5_digest": "32134c15586d580ba20e3fea9783e0fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10497, "upload_time": "2019-08-08T06:56:18", "url": "https://files.pythonhosted.org/packages/19/e0/f6866b8157b0acef957b23e6709ba47923d94f0ecc816d9fbd6e286df261/gpt2_client-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "1ddbecff937954e1dd3ad1cad48822b7", "sha256": "e2db113fcacfe1c3005e987d7f875204050886abbb8a63b79c9836a084c772bc" }, "downloads": -1, "filename": "gpt2_client-1.7.5.tar.gz", "has_sig": false, "md5_digest": "1ddbecff937954e1dd3ad1cad48822b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10022, "upload_time": "2019-08-08T07:01:23", "url": "https://files.pythonhosted.org/packages/88/5b/b0e236163c6488cc5c3b9595b9b83400f8308c67f4081f4b6036d8584a63/gpt2_client-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "75d8c220fb7afbb19dcfb8c933c7b1ce", "sha256": "8d32665bd18e2ff3239bca1176e57349acd0a2d8ed474ac150e03f7e86565b1b" }, "downloads": -1, "filename": "gpt2_client-1.7.6.tar.gz", "has_sig": false, "md5_digest": "75d8c220fb7afbb19dcfb8c933c7b1ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10022, "upload_time": "2019-08-08T07:01:25", "url": "https://files.pythonhosted.org/packages/24/13/4850f7a7ed2e77a18d36da982e2a27cc2ec927453910081d22d40b9fac56/gpt2_client-1.7.6.tar.gz" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "16148c2172ffc274b8114d47284094c5", "sha256": "d70e4f073ebc9255e4dc473d44080bec25915919a88f9c14787a56588716faf3" }, "downloads": -1, "filename": "gpt2_client-1.7.7.tar.gz", "has_sig": false, "md5_digest": "16148c2172ffc274b8114d47284094c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10042, "upload_time": "2019-08-08T07:04:11", "url": "https://files.pythonhosted.org/packages/0a/dd/4bcd82f7d4b7dce29d78485a2a8b0eddaca274ea8ba654718de840bb8fe8/gpt2_client-1.7.7.tar.gz" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "afb42c69e46d79df9f5709fe52a25a00", "sha256": "4d9b3c3d852e25552eff62b7bc5a59068ca4c45a3f84e9f344f949e2f97b80e7" }, "downloads": -1, "filename": "gpt2_client-1.7.8.tar.gz", "has_sig": false, "md5_digest": "afb42c69e46d79df9f5709fe52a25a00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10516, "upload_time": "2019-08-08T07:07:02", "url": "https://files.pythonhosted.org/packages/17/b4/e3806a015f453704932137f16dc8d79f4ef9e94df9a94225456f592baa4f/gpt2_client-1.7.8.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "9b66c71e21dbf5291fdf458ac0921d59", "sha256": "0847b5076706e3889f5378eaccd5bc06e7cc43253f7520968990dd5ce376631a" }, "downloads": -1, "filename": "gpt2_client-1.8.tar.gz", "has_sig": false, "md5_digest": "9b66c71e21dbf5291fdf458ac0921d59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12274, "upload_time": "2019-08-08T07:38:53", "url": "https://files.pythonhosted.org/packages/d6/20/3571a4804d0793f614c048db0cadfe46bb909864471e693fc4579978cebb/gpt2_client-1.8.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "c43049a39ac375e655213edca6dc9b44", "sha256": "f6e9fbc496aa72871c683f7f0fdc3c1bce9eb0b5a9e5a97a8d9fd8921d9985dd" }, "downloads": -1, "filename": "gpt2_client-1.8.1.tar.gz", "has_sig": false, "md5_digest": "c43049a39ac375e655213edca6dc9b44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12280, "upload_time": "2019-08-08T07:42:49", "url": "https://files.pythonhosted.org/packages/69/af/2b74b5a49d3f19bc63c112c6bcce89e6053b57f69b812c4fca519b73811e/gpt2_client-1.8.1.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "e4bd20e49bdb1089f2427ac335dad3de", "sha256": "3950d9da26c34a92a8dce869d1e070da1156f5ef016f873c52dd8bb2018c3c80" }, "downloads": -1, "filename": "gpt2_client-1.9.tar.gz", "has_sig": false, "md5_digest": "e4bd20e49bdb1089f2427ac335dad3de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12164, "upload_time": "2019-08-08T08:01:00", "url": "https://files.pythonhosted.org/packages/1b/3a/4f94e20eda760b494176a865480fdcb3f5a17cd8860d880c5ed2c9496909/gpt2_client-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "16ac49e08fadd592cc9ddb5f35ff87c6", "sha256": "b99d76e89856c233cdc732a5219a74477db702cc92568e2f9f1bfddcb44628fc" }, "downloads": -1, "filename": "gpt2_client-1.9.1.tar.gz", "has_sig": false, "md5_digest": "16ac49e08fadd592cc9ddb5f35ff87c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12170, "upload_time": "2019-08-08T08:05:27", "url": "https://files.pythonhosted.org/packages/1b/6d/66d6e4d64d21d944adc86245a6127ef498e21c0634f1b37f0bc6443696f9/gpt2_client-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "00234601c9581baa396b82aaa9f2a1d8", "sha256": "4081fd1a8718e29fd6681cb3b7d682a4bdfdc06156a2b196bed94f02a604a616" }, "downloads": -1, "filename": "gpt2_client-1.9.2.tar.gz", "has_sig": false, "md5_digest": "00234601c9581baa396b82aaa9f2a1d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12171, "upload_time": "2019-08-08T08:07:58", "url": "https://files.pythonhosted.org/packages/f5/39/2d33c138e78da29db227efa0ec84ebaa6652a222c48bd32d150599c3af36/gpt2_client-1.9.2.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "744d6c95e88800abca28dec891c674c4", "sha256": "a98e9b06ba695c906e8db99744308b2e89f00b994bf00e149935f7df8dc871e7" }, "downloads": -1, "filename": "gpt2_client-1.9.3.tar.gz", "has_sig": false, "md5_digest": "744d6c95e88800abca28dec891c674c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12371, "upload_time": "2019-08-09T06:41:59", "url": "https://files.pythonhosted.org/packages/98/47/c3b8c5754eda9a0dbdcd30ff59608623d9f063fdf2bfa5ff7019cc61e5de/gpt2_client-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "0d193599e298e3605bff77844dba4373", "sha256": "122842d1a20ebb7236400331d02b2fd13a34430aabca33a89cafc898b3cf1b8b" }, "downloads": -1, "filename": "gpt2_client-1.9.4.tar.gz", "has_sig": false, "md5_digest": "0d193599e298e3605bff77844dba4373", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12486, "upload_time": "2019-08-09T06:51:26", "url": "https://files.pythonhosted.org/packages/3f/fb/9fcc5e3c8759c85eac25f92c4ffee69ddb1a50aa99569813821ba326f746/gpt2_client-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "aa0c18ac0336de83640a130ee11d8a0c", "sha256": "08cb7908e13a2ee577722f85874ab257343170168b9453776647a8ed47ad479a" }, "downloads": -1, "filename": "gpt2_client-1.9.5.tar.gz", "has_sig": false, "md5_digest": "aa0c18ac0336de83640a130ee11d8a0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12558, "upload_time": "2019-08-11T01:15:53", "url": "https://files.pythonhosted.org/packages/f9/e5/97a8b254e65ef6484f0e7220a2ee3776a24afc71d8811e116d37a455c9ca/gpt2_client-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "11197779bff619258e5dfaff2f365f5e", "sha256": "8f1a3e0842279e12503209867a024860ad0f008faa4ac75b5e331ff8c5e68236" }, "downloads": -1, "filename": "gpt2_client-1.9.6.tar.gz", "has_sig": false, "md5_digest": "11197779bff619258e5dfaff2f365f5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12557, "upload_time": "2019-08-11T01:21:36", "url": "https://files.pythonhosted.org/packages/ec/ec/ba21657914a2803af69e19286784eebe169a3ca4266ad86b7c0b5da66994/gpt2_client-1.9.6.tar.gz" } ], "1.9.7": [ { "comment_text": "", "digests": { "md5": "f0d61dadf51db61c0875044732676cbe", "sha256": "9e58cf5543f6faf18c61ccc131dc5051ad7189a8044984c89e86d61f5ecc8acf" }, "downloads": -1, "filename": "gpt2_client-1.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f0d61dadf51db61c0875044732676cbe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16997, "upload_time": "2019-10-08T05:37:55", "url": "https://files.pythonhosted.org/packages/dd/5c/a0e973151d973e7c5e4faac11f7c8fe46820410b81969e0aef1ad74ad4c1/gpt2_client-1.9.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b30f085ec686e685a6e7dcb8a2ae00a0", "sha256": "f9f2082cd5f1a2dd312396849dadcbe16d1ba7baa27b7d40bddae68202aba300" }, "downloads": -1, "filename": "gpt2_client-1.9.7.tar.gz", "has_sig": false, "md5_digest": "b30f085ec686e685a6e7dcb8a2ae00a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12562, "upload_time": "2019-08-11T01:27:13", "url": "https://files.pythonhosted.org/packages/e5/b6/ebad2de6f982d155e088c4493db83fc174df22a9b8be686518191e13dfda/gpt2_client-1.9.7.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "fb4eac5289c26448993e7bf4ef3cce25", "sha256": "b2c2071c639f64d8d74a60bd84f23c0daa89f8484f916581dd457cacef4ad716" }, "downloads": -1, "filename": "gpt2_client-2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fb4eac5289c26448993e7bf4ef3cce25", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16966, "upload_time": "2019-10-08T05:37:57", "url": "https://files.pythonhosted.org/packages/44/eb/8b91b844e0f696cad14bb7a40ecdbce15226dc5ef4abd3aecb073a810829/gpt2_client-2.0-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fb4eac5289c26448993e7bf4ef3cce25", "sha256": "b2c2071c639f64d8d74a60bd84f23c0daa89f8484f916581dd457cacef4ad716" }, "downloads": -1, "filename": "gpt2_client-2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fb4eac5289c26448993e7bf4ef3cce25", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16966, "upload_time": "2019-10-08T05:37:57", "url": "https://files.pythonhosted.org/packages/44/eb/8b91b844e0f696cad14bb7a40ecdbce15226dc5ef4abd3aecb073a810829/gpt2_client-2.0-py3-none-any.whl" } ] }