m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
496 B

6 months ago
  1. from typing import List
  2. __all__: List[str]
  3. def ediff1d(ary, to_end=..., to_begin=...): ...
  4. def unique(ar, return_index=..., return_inverse=..., return_counts=..., axis=...): ...
  5. def intersect1d(ar1, ar2, assume_unique=..., return_indices=...): ...
  6. def setxor1d(ar1, ar2, assume_unique=...): ...
  7. def in1d(ar1, ar2, assume_unique=..., invert=...): ...
  8. def isin(element, test_elements, assume_unique=..., invert=...): ...
  9. def union1d(ar1, ar2): ...
  10. def setdiff1d(ar1, ar2, assume_unique=...): ...