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
>>> np.issubdtype(int, basestring) # py2
True
>>> np.issubdtype(np.int16, int) , np.issubdtype(np.uint16, int) # int actually means signed int
(True, False)
The text was updated successfully, but these errors were encountered: