Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` DeprecationWarning: loadtxt(): Parsing an integer via a float is deprecated. To avoid this warning, you can: * make sure the original data is stored as integers. * use the `converters=` keyword argument. If you only use NumPy 1.23 or later, `converters=float` will normally work. * Use `np.loadtxt(...).astype(np.int64)` parsing the file as floating point and then convert it. (On all NumPy versions.) (Deprecated NumPy 1.23) return np.loadtxt(str(self.path), **kwargs) ``` Signed-off-by: Jinzhe Zeng <[email protected]>
- Loading branch information