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
For visualization, Bimax reuses the bcheatmap function already available for the SSVD method, which draws boxes around the detected biclusters in the heatmap.
Regarding the ImportError: cannot import name '__all__' from 'numpy.linalg':
Root cause: a binary-interface mismatch between an old NumPy (≤ 1.20.x) and a newer SciPy (≥ 1.9) that was compiled against NumPy ≥ 1.22.
Fix: create a clean environment and install the package versions listed in BiFuncLib’s requirements; this guarantees ABI compatibility and eliminates the import error.
Regarding the ValueError: could not broadcast input array from shape (40,5) into shape (5,) in lbm_bifunc:
Root cause: with the chosen init='kmeans' and basis_name='spline', the spline basis collapses one class to a single observation, yielding an incompatible array shape.
Immediate fix: switch to basis_name='fourier' (or any other supported basis); Fourier series avoids the collapse and runs without broadcasting errors.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
This post summarizes the issues raised and provides answers. Further questions can also be commented here.
All reactions