Package Details: python-mlxtend 0.23.1-3

Git Clone URL: https://aur.archlinux.org/python-mlxtend.git (read-only, click to copy)
Package Base: python-mlxtend
Description: Library of Python tools and extensions for data science
Upstream URL: https://github.com/rasbt/mlxtend
Licenses: BSD-3-Clause, CC-BY-SA-4.0
Submitter: azrdev
Maintainer: carsme
Last Packager: carsme
Votes: 4
Popularity: 0.37
First Submitted: 2019-03-09 16:17 (UTC)
Last Updated: 2024-03-03 14:48 (UTC)

Latest Comments

beroal commented on 2024-03-06 10:47 (UTC)

Thanks for fixing!

carsme commented on 2024-03-03 14:48 (UTC)

@beroal Thanks for reporting, should be fixed in 0.23.1-3.

beroal commented on 2024-03-02 11:33 (UTC)

It does not build.

=================================== FAILURES ===================================
_____________________________ test_01_loss_bagging _____________________________

    def test_01_loss_bagging():
        X, y = iris_data()
        X_train, X_test, y_train, y_test = train_test_split(
            X, y, test_size=0.3, random_state=123, shuffle=True, stratify=y
        )

        tree = DecisionTreeClassifier(random_state=123)
>       bag = BaggingClassifier(base_estimator=tree, random_state=123)
E       TypeError: BaggingClassifier.__init__() got an unexpected keyword argument 'base_estimator'

mlxtend/evaluate/tests/test_bias_variance_decomp.py:61: TypeError
_______________________________ test_mse_bagging _______________________________

    def test_mse_bagging():
        X, y = boston_housing_data()
        X_train, X_test, y_train, y_test = train_test_split(
            X, y, test_size=0.3, random_state=123, shuffle=True
        )

        tree = DecisionTreeRegressor(random_state=123)
>       bag = BaggingRegressor(base_estimator=tree, n_estimators=10, random_state=123)
E       TypeError: BaggingRegressor.__init__() got an unexpected keyword argument 'base_estimator'

mlxtend/evaluate/tests/test_bias_variance_decomp.py:94: TypeError