This repository has been archived by the owner on Oct 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
Metadata-Version: 2.1 | ||
Name: gpt2-client | ||
Version: 1.8.1 | ||
Version: 1.9 | ||
Summary: Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models | ||
Home-page: https://github.com/rish-16/gpt2client | ||
Author: Rishabh Anand | ||
Author-email: [email protected] | ||
License: MIT | ||
Download-URL: https://github.com/rish-16/gpt2client/archive/1.8.tar.gz | ||
Download-URL: https://github.com/rish-16/gpt2client/archive/1.9.tar.gz | ||
Description: <h1 align="center">gpt2-client 🤖📝</h1> | ||
|
||
<p align="center">Easy-to-use Wrapper for GPT-2 117M and 345M Transformer Models</p> | ||
|
||
<!-- <center> | ||
<div align="center" style="display: flex;justify-content:space-evenly;width: 250px;margin: 0 auto;"> | ||
|
||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
<p align="center"><a style="margin: 0 10px" href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg"></a></p> | ||
<p align="center"><a style="margin: 0 10px" href="https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg"></a></p> | ||
|
||
</center> --> | ||
</div> | ||
|
||
<img src="https://github.com/rish-16/gpt2client/raw/master/assets/demo.png" style="width: 80%;" /> | ||
<div><img src="https://github.com/rish-16/gpt2client/raw/master/assets/demo.png" /></div> | ||
|
||
<p align="center"><strong>Made by Rishabh Anand • <a href="https://rish-16.github.io">https://rish-16.github.io</a></strong></p> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,18 +7,18 @@ | |
long_description = f.read() | ||
|
||
setup( | ||
name = 'gpt2_client', # How you named your package folder (MyLib) | ||
packages = ['gpt2_client'], # Chose the same as "name" | ||
version = '1.8.1', # Start with a small number and increase it with every change you make | ||
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository | ||
description = 'Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models', # Give a short description about your library | ||
name = 'gpt2_client', | ||
packages = ['gpt2_client'], | ||
version = '1.9', | ||
license='MIT', | ||
description = 'Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models', | ||
long_description = long_description, | ||
long_description_content_type = 'text/markdown', | ||
author = 'Rishabh Anand', # Type in your name | ||
author_email = '[email protected]', # Type in your E-Mail | ||
url = 'https://github.com/rish-16/gpt2client', # Provide either the link to your github or to your website | ||
download_url = 'https://github.com/rish-16/gpt2client/archive/1.8.tar.gz', # I explain this later on | ||
keywords = ['gpt-2', 'wrapper', 'transformer', 'machine learning', 'openai', 'text generation'], # Keywords that define your package best | ||
author = 'Rishabh Anand', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/rish-16/gpt2client', | ||
download_url = 'https://github.com/rish-16/gpt2client/archive/1.9.tar.gz', | ||
keywords = ['gpt-2', 'wrapper', 'transformer', 'machine learning', 'openai', 'text generation'], | ||
install_requires=[ | ||
'numpy', | ||
'tensorflow', | ||
|
@@ -29,11 +29,11 @@ | |
'gpt_2_simple' | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Intended Audience :: Developers', # Define that your audience are developers | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', # Again, pick a license | ||
'Programming Language :: Python :: 3', #Specify which python versions that you want to support | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
|