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
Python 2.7.15rc1 (default, Nov 12 2018, 14:31:15)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import bohrium as np
>>> np.linalg.norm(np.ones((2,2,2)),axis=0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "bohrium/bhary.pyx", line 95, in bohrium.bhary.fix_biclass_wrapper.inner
File "/home/mads/.bin/bohrium/lib/python2.7/site-packages/bohrium/linalg.py", line 291, in norm
raise NotImplementedError("Unsupported value of param ord=%s" % axis)
NotImplementedError: Unsupported value of param ord=0
Calling it without an axis works, but gives of course a different result:
>>> np.linalg.norm(np.ones((2,2,2)))
2.82843
The text was updated successfully, but these errors were encountered:
Calling it without an axis works, but gives of course a different result:
The text was updated successfully, but these errors were encountered: