sal
sal

Reputation: 33

ImportError: cannot import name 'ModelFactory' from 'frlearn.base'

I get an error (ImportError: cannot import name 'ModelFactory' from 'frlearn.base') when running the following code:

from frlearn.base import ModelFactory

Upvotes: 2

Views: 227

Answers (1)

ASLAN
ASLAN

Reputation: 639

I belive you are using frlearn from this github repo. You just have to clone this repo using the following command

!git clone https://github.com/oulenz/fuzzy-rough-learn.git

And then move to the cloned directory using cd <clonned directory path> In your case that may be

cd fuzzy-rough-learn

Upvotes: 2

Related Questions