Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The function _convert_scalar_item contained np.asscalar which was depreciated in NumPy v1.16: `scalar_value = np.asscalar(np.asarray(item['value']))` This line has been changed to `scalar_value = np.asarray(item['value']).item()`
- Loading branch information