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
At the moment project support only json serializable objects. This is huge restriction for data scientists as numpy arrays and pandas dataframes are commonly used.
numpy ndarray support in args
pandas dataframe support in args
numpy ndarray support in kwargs
pandas dataframe support in kwargs
The text was updated successfully, but these errors were encountered:
* Add supporting for numpy arrays in args (not kwargs)
- Add method to hash numpy arrays
- Add Base and ValueError exceptions
- Add simple example on numyp arrays
- Add requirements
Relates #1
* Replace assert with if-raise construction
* Simplified converting numpy.ndarray to string using hex
* Clear namespace: import all numpy instead of only ndarray
At the moment project support only json serializable objects. This is huge restriction for data scientists as numpy arrays and pandas dataframes are commonly used.
The text was updated successfully, but these errors were encountered: