reshape.pyi 419 B

1234567891011121314
  1. import numpy as np
  2. def unstack(
  3. values: np.ndarray, # reshape_t[:, :]
  4. mask: np.ndarray, # const uint8_t[:]
  5. stride: int,
  6. length: int,
  7. width: int,
  8. new_values: np.ndarray, # reshape_t[:, :]
  9. new_mask: np.ndarray, # uint8_t[:, :]
  10. ) -> None: ...
  11. def explode(
  12. values: np.ndarray, # np.ndarray[object]
  13. ) -> tuple[np.ndarray, np.ndarray,]: ... # np.ndarray[object] # np.ndarray[np.int64]