mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Prep for 8.9.0 release
This commit is contained in:
parent
932092c0e5
commit
ebdebdf16f
@ -2,6 +2,47 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
8.9.0 (2023-08-24)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Added
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Simplify embedding model support and loading (`#569`_)
|
||||||
|
* Make eland_import_hub_model easier to find on Windows (`#559`_)
|
||||||
|
* Update trained model inference endpoint (`#556`_)
|
||||||
|
* Add BertJapaneseTokenizer support with bert_ja tokenization configuration (`#534`_)
|
||||||
|
* Add ability to upload xlm-roberta tokenized models (`#518`_)
|
||||||
|
* Tolerate different model output formats when measuring embedding size (`#535`_)
|
||||||
|
* Generate valid NLP model id from file path (`#541`_)
|
||||||
|
* Upgrade torch to 1.13.1 and check the cluster version before uploading a NLP model (`#522`_)
|
||||||
|
* Set embedding_size config parameter for Text Embedding models (`#532`_)
|
||||||
|
* Add support for the pass_through task (`#526`_)
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Fixed black to comply with the code style (`#557`_)
|
||||||
|
* Fixed No module named 'torch' (`#553`_)
|
||||||
|
* Fix autosummary directive by removing hack autosummaries (`#548`_)
|
||||||
|
* Prevent TypeError with None check (`#525`_)
|
||||||
|
|
||||||
|
.. _#518: https://github.com/elastic/eland/pull/518
|
||||||
|
.. _#522: https://github.com/elastic/eland/pull/522
|
||||||
|
.. _#525: https://github.com/elastic/eland/pull/525
|
||||||
|
.. _#526: https://github.com/elastic/eland/pull/526
|
||||||
|
.. _#532: https://github.com/elastic/eland/pull/532
|
||||||
|
.. _#534: https://github.com/elastic/eland/pull/534
|
||||||
|
.. _#535: https://github.com/elastic/eland/pull/535
|
||||||
|
.. _#541: https://github.com/elastic/eland/pull/541
|
||||||
|
.. _#548: https://github.com/elastic/eland/pull/548
|
||||||
|
.. _#553: https://github.com/elastic/eland/pull/553
|
||||||
|
.. _#556: https://github.com/elastic/eland/pull/556
|
||||||
|
.. _#557: https://github.com/elastic/eland/pull/557
|
||||||
|
.. _#559: https://github.com/elastic/eland/pull/559
|
||||||
|
.. _#569: https://github.com/elastic/eland/pull/569
|
||||||
|
|
||||||
|
|
||||||
8.7.0 (2023-03-30)
|
8.7.0 (2023-03-30)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from ._version import ( # noqa: F401
|
from ._version import ( # noqa: F401
|
||||||
__author__,
|
|
||||||
__author_email__,
|
|
||||||
__description__,
|
__description__,
|
||||||
__maintainer__,
|
__maintainer__,
|
||||||
__maintainer_email__,
|
__maintainer_email__,
|
||||||
|
@ -18,8 +18,6 @@
|
|||||||
__title__ = "eland"
|
__title__ = "eland"
|
||||||
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
||||||
__url__ = "https://github.com/elastic/eland"
|
__url__ = "https://github.com/elastic/eland"
|
||||||
__version__ = "8.7.0"
|
__version__ = "8.9.0"
|
||||||
__author__ = "Steve Dodson"
|
__maintainer__ = "Elastic Client Library Maintainers"
|
||||||
__author_email__ = "steve.dodson@elastic.co"
|
__maintainer_email__ = "client-libs@elastic.co"
|
||||||
__maintainer__ = "Seth Michael Larson"
|
|
||||||
__maintainer_email__ = "seth.larson@elastic.co"
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user