Abdou24MR

Results 5 issues of Abdou24MR

**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...

**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...

ValueError: The key pairwise is not defined in _get_tags() for the class ELMClassifier.