You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is a problem when using shogun:
First after I installed shogun (the last version, I tried to install with conda forge and also pip), I cannot import modshogun (it throws a package not found error), but instead I can import shogun. Maybe I messed up somewhere in the install process or maybe the newest version have a different name or sth..
Even if I change the code with import shogun instead of import modshogun, there is another error when doing:
NotImplementedError: Wrong number or type of arguments for overloaded function 'new_MulticlassLabels'.
Possible C/C++ prototypes are:
shogun::CMulticlassLabels::CMulticlassLabels()
shogun::CMulticlassLabels::CMulticlassLabels(int32_t)
shogun::CMulticlassLabels::CMulticlassLabels(shogun::SGVector< float64_t >)
shogun::CMulticlassLabels::CMulticlassLabels(shogun::CFile *)
shogun::CMulticlassLabels::CMulticlassLabels(shogun::CBinaryLabels *)
The text was updated successfully, but these errors were encountered:
Also it does not seem like Shogun_LMNN can do dimensionality reduction, which is at odds with the objective of #193. So maybe it is easier to remove it? We could try to work on an optimized version of LMNN later
I think there is a problem when using shogun:
First after I installed shogun (the last version, I tried to install with conda forge and also pip), I cannot
import modshogun
(it throws a package not found error), but instead I canimport shogun
. Maybe I messed up somewhere in the install process or maybe the newest version have a different name or sth..Even if I change the code with
import shogun
instead ofimport modshogun
, there is another error when doing:And it returns the following error:
The text was updated successfully, but these errors were encountered: