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

Add warning for the scipy bug if numpy.float16 is passed. #15

Merged
merged 3 commits into from
May 10, 2018
Merged

Add warning for the scipy bug if numpy.float16 is passed. #15

merged 3 commits into from
May 10, 2018

Conversation

zietzm
Copy link
Member

@zietzm zietzm commented May 9, 2018

In reference to greenelab/connectivity-search-analyses#94 and scipy/scipy#7408. Rather than raising a ValueError in a case like:

metaedge_to_adjacency_matrix(graph, 'TeGaDaG', dtype=numpy.float16, dense_threshold=0)

it autoconverts to numpy.float32 and issues a warning.

hetio/matrix.py Outdated
import numpy
import scipy.sparse

import hetio.hetnet
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do not move this import since it's a local import it goes in the third stanza.

hetio/matrix.py Outdated
warning(("scipy.sparse does not support the conversion "
"of numpy.float16 matrices to numpy.arrays. Converting "
"to numpy.float32 dtype"))
return matrix.astype(numpy.float32).toarray()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this case, can we do:

matrix.astype(numpy.float32).toarray().astype(numpy.float16)

Let's also link to the issue in the warning.

Copy link
Member

@dhimmel dhimmel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor comments, but dhimmel/hetio has a very detailed code review standard.

hetio/matrix.py Outdated
return matrix.toarray()
except ValueError:
warning(("scipy.sparse does not support the conversion "
"of numpy.float16 matrices to numpy.arrays."))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add this link to this message: https://git.io/vpXyy

hetio/matrix.py Outdated
except ValueError:
warning(("scipy.sparse does not support the conversion "
"of numpy.float16 matrices to numpy.arrays."))
return matrix.astype(numpy.float32).toarray().astype(numpy.float16)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any way for us to pull the final dtype out of the input sparse matrix, so we guarantee that we convert it back to the same dtype dense matrix? Based on my reading of scipy/scipy#7408 (comment), I think it could be possible that other dtypes also trigger this error.

hetio/matrix.py Outdated
@@ -1,4 +1,5 @@
from collections import OrderedDict
from logging import warning
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer just doing import logging, especially since there is a builtin package called warnings.

Don't worry about exceed 80 characters per line. 100 characters is fine.

hetio/matrix.py Outdated
try:
return matrix.toarray()
except ValueError:
warning(("scipy.sparse does not support the conversion "
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think these inner parentheses are needed.

@dhimmel dhimmel merged commit 4786dae into hetio:master May 10, 2018
@zietzm zietzm deleted the sparse-dtype branch May 10, 2018 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants