Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doctest SpectralCoclustering fails on Ubuntu arm64 #13762

Open
xnox opened this issue May 1, 2019 · 2 comments
Open

doctest SpectralCoclustering fails on Ubuntu arm64 #13762

xnox opened this issue May 1, 2019 · 2 comments
Labels
arch:arm ARM related issues help wanted module:cluster module:test-suite everything related to our tests

Comments

@xnox
Copy link

xnox commented May 1, 2019

=================================== FAILURES ===================================
___________ [doctest] sklearn.cluster.bicluster.SpectralCoclustering ___________
258         The bicluster label of each column.
259 
260     Examples
261     --------
262     >>> from sklearn.cluster import SpectralCoclustering
263     >>> import numpy as np
264     >>> X = np.array([[1, 1], [2, 1], [1, 0],
265     ...               [4, 7], [3, 5], [3, 6]])
266     >>> clustering = SpectralCoclustering(n_clusters=2, random_state=0).fit(X)
267     >>> clustering.row_labels_
Expected:
    array([0, 1, 1, 0, 0, 0], dtype=int32)
Got:
    array([0, 0, 1, 0, 0, 0], dtype=int32)

/usr/lib/python3/dist-packages/sklearn/cluster/bicluster.py:267: DocTestFailure

This is 0.20.3 and fails on Ubuntu arm64.

@jnothman
Copy link
Member

jnothman commented May 2, 2019 via email

@rth
Copy link
Member

rth commented Sep 30, 2019

Can confirm this failure for the Linux pylatest_conda_mkl job in #14300 which is pretty close to master, as far as spectral coclustering is concerned.

The error is exactly the same as above.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
arch:arm ARM related issues help wanted module:cluster module:test-suite everything related to our tests
Projects
None yet
Development

No branches or pull requests

4 participants