v0.4.0a1
This commit is contained in:
parent
d45debae59
commit
74915155fa
10
HISTORY
10
HISTORY
|
@ -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
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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= {
|
||||||
|
|
Loading…
Reference in New Issue