-
Notifications
You must be signed in to change notification settings - Fork 752
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
13 additions
and
11 deletions.
There are no files selected for viewing
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
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
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,9 +1,9 @@ | ||
from setuptools import setup, find_packages | ||
|
||
long_description = ''' | ||
Generate text using a pretrained neural network with a few lines of code, | ||
or easily train your own text-generating neural network of any size | ||
and complexity on any text dataset. | ||
Easily train your own text-generating neural network of | ||
any size and complexity on any text dataset with a few lines | ||
of code, or quickly train on a text using a pretrained model. | ||
* A modern neural network architecture which utilizes new techniques as | ||
attention-weighting and skip-embedding to accelerate training | ||
|
@@ -25,10 +25,11 @@ | |
setup( | ||
name='textgenrnn', | ||
packages=['textgenrnn'], # this must be the same as the name above | ||
version='1.2', | ||
version='1.2.1', | ||
description='Pretrained character-based neural network for ' \ | ||
'easily generating text.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Max Woolf', | ||
author_email='[email protected]', | ||
url='https://github.com/minimaxir/textgenrnn', | ||
|