mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release 8.12.0
This commit is contained in:
parent
64216d44fb
commit
1190364abb
@ -2,6 +2,28 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
8.12.0 (2024-01-18)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Added
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Supported XGBRanker model (`#649`_)
|
||||||
|
* Accepted LTR (Learning to rank) model config when importing model (`#645`_, `#651`_)
|
||||||
|
* Added LTR feature logger (`#648`_)
|
||||||
|
* Added ``prefix_string`` config option to the import model hub script (`#642`_)
|
||||||
|
* Made online retail analysis notebook runnable in Colab (`#641`_)
|
||||||
|
* Added new movie dataset to the tests (`#646`_)
|
||||||
|
|
||||||
|
|
||||||
|
.. _#641: https://github.com/elastic/eland/pull/641
|
||||||
|
.. _#642: https://github.com/elastic/eland/pull/642
|
||||||
|
.. _#645: https://github.com/elastic/eland/pull/645
|
||||||
|
.. _#646: https://github.com/elastic/eland/pull/646
|
||||||
|
.. _#648: https://github.com/elastic/eland/pull/648
|
||||||
|
.. _#649: https://github.com/elastic/eland/pull/649
|
||||||
|
.. _#651: https://github.com/elastic/eland/pull/651
|
||||||
|
|
||||||
8.11.1 (2023-11-22)
|
8.11.1 (2023-11-22)
|
||||||
-------------------
|
-------------------
|
||||||
Added
|
Added
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
__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.11.1"
|
__version__ = "8.12.0"
|
||||||
__author__ = "Steve Dodson"
|
__author__ = "Steve Dodson"
|
||||||
__author_email__ = "steve.dodson@elastic.co"
|
__author_email__ = "steve.dodson@elastic.co"
|
||||||
__maintainer__ = "Elastic Client Library Maintainers"
|
__maintainer__ = "Elastic Client Library Maintainers"
|
||||||
|
@ -10,7 +10,7 @@ tqdm<5
|
|||||||
#
|
#
|
||||||
# Extras
|
# Extras
|
||||||
#
|
#
|
||||||
scikit-learn>=1.3,<2
|
scikit-learn>=1.3,<1.4
|
||||||
xgboost>=0.90,<2
|
xgboost>=0.90,<2
|
||||||
lightgbm>=2,<4
|
lightgbm>=2,<4
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -55,7 +55,7 @@ with open(path.join(here, "README.md"), "r", "utf-8") as f:
|
|||||||
|
|
||||||
extras = {
|
extras = {
|
||||||
"xgboost": ["xgboost>=0.90,<2"],
|
"xgboost": ["xgboost>=0.90,<2"],
|
||||||
"scikit-learn": ["scikit-learn>=1.3,<2"],
|
"scikit-learn": ["scikit-learn>=1.3,<1.4"],
|
||||||
"lightgbm": ["lightgbm>=2,<4"],
|
"lightgbm": ["lightgbm>=2,<4"],
|
||||||
"pytorch": [
|
"pytorch": [
|
||||||
"torch>=1.13.1,<2.0",
|
"torch>=1.13.1,<2.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user