-
Notifications
You must be signed in to change notification settings - Fork 27
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
Conversation
hetio/matrix.py
Outdated
import numpy | ||
import scipy.sparse | ||
|
||
import hetio.hetnet |
There was a problem hiding this comment.
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() |
There was a problem hiding this comment.
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.
There was a problem hiding this 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.")) |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 " |
There was a problem hiding this comment.
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.
In reference to greenelab/connectivity-search-analyses#94 and scipy/scipy#7408. Rather than raising a
ValueError
in a case like:it autoconverts to
numpy.float32
and issues a warning.