elm
elm copied to clipboard
Python Extreme Learning Machine (ELM) is a machine learning technique used for classification/regression tasks.
**code implementation** > scores = cross_val_score(clf, X, y, cv=5, scoring='accuracy') **error message:** > TypeError Traceback (most recent call last) > in > 2 for clf, label in zip([elm1, elm2, elm3,...
error while running the example: elmk = elm.ELMKernel() elmk.search_param(X, y, cv="kfold", of="accuracy", eval=10) tr_set, te_set = elm.split_sets(data, training_percent=.8, perm=True) tr_result = elmk.train(tr_set) te_result = elmk.test(te_set) print(te_result.get_accuracy) **error message:** `elmk Start...
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.24.1 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...
Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
Bumps [bleach](https://github.com/mozilla/bleach) from 3.0.2 to 3.3.0. Changelog Sourced from bleach's changelog. Version 3.3.0 (February 1st, 2021) Backwards incompatible changes clean escapes HTML comments even when strip_comments=False Security fixes Fix bug...
 already installed ELM but getting this error 
**when i try to run search_param function i got this issue:** Traceback (most recent call last): File "", line 1, in elmk.search_param(data, cv="kfold", of="accuracy", eval=10) File "C:\Users\abdel\AppData\Local\Programs\Python\Python37\lib\site-packages\elm\elmk.py", line 489, in...
i tried thies example: `import elm data = elm.read("C:/Users/abdel/Downloads/elmdevel/tests/data/iris.data") elmk = elm.ELMKernel() elmk.search_param(data, cv="kfold", of="accuracy", eval=10) tr_set, te_set = elm.split_sets(data, training_percent=.8, perm=True) tr_result = elmk.train(tr_set) te_result = elmk.test(te_set) print(te_result.get_accuracy)` and...
No errors occours until the following statement (the loaded data matches the data set contained in the file): elmk.search_param(data, cv="kfold", of="accuracy", eval=10) I get the following error: ``` `##### Start...