This commit is contained in:
Giovanni Campagna 2020-08-10 10:47:42 -07:00
parent d45debae59
commit 74915155fa
2 changed files with 11 additions and 1 deletions

10
HISTORY
View File

@ -1,3 +1,13 @@
0.4.0a1
=======
* The paraphrase generation code was extended and can now use BART instead of GPT2. It also now
has the ability to run as a translation task as well (using the Marian models) [#26, #27, #29, #31].
* Added the ability to override the context and the question used as input to the model [#23].
* MultiGPU training was tested and fixed [#25].
* Completed support for beam search, including the ability to return multiple results for a given input [#30].
* Misc bug fixes [#32].
0.3.0 0.3.0
===== =====

View File

@ -34,7 +34,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name='genienlp', name='genienlp',
version='0.3.0', version='0.4.0a1',
packages=setuptools.find_packages(exclude=['tests']), packages=setuptools.find_packages(exclude=['tests']),
entry_points= { entry_points= {