Open sutkss opened 3 years ago
scikit-learn assume that every keyword argument accepted by init should correspond to an attribute on the instance. But, dict_init is not an attribute of KSVD class. We need to add dict_init as an attribute of it.
dict_init
Also, fixed import error in hmlasso.py
Issue Description
scikit-learn assume that every keyword argument accepted by init should correspond to an attribute on the instance. But,
dict_init
is not an attribute of KSVD class. We need to adddict_init
as an attribute of it.References