EvoDAG icon indicating copy to clipboard operation
EvoDAG copied to clipboard

Help for using EvoDAG as library

Open manzar96 opened this issue 4 years ago • 1 comments

Hi!

I am trying to use EvoDAGE however I fail. I would like to use it as a library. Trying something like the following: `from EvoDAG.model import EvoDAGE from sklearn.datasets import load_iris

data = load_iris() X = data.data y = data.target

m = EvoDAGE(n_estimators=30, n_jobs=1).fit(X, y)`

Howver, I receive that error:

ModuleNotFoundError: No module named 'EvoDAG.linalg_solve'

Maybe I have not installed all the required modules(?). I would really appreciate it if you could help me.

Thank you in advance.

manzar96 avatar Dec 02 '20 00:12 manzar96