Spaces:
Running
Running
File size: 2,329 Bytes
dc2106c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
from typing import Mapping, List, Any
from numpy import (
DataSource as DataSource,
)
from numpy.core.multiarray import (
packbits as packbits,
unpackbits as unpackbits,
)
__all__: List[str]
def loads(*args, **kwargs): ...
class BagObj:
def __init__(self, obj): ...
def __getattribute__(self, key): ...
def __dir__(self): ...
def zipfile_factory(file, *args, **kwargs): ...
class NpzFile(Mapping[Any, Any]):
zip: Any
fid: Any
files: Any
allow_pickle: Any
pickle_kwargs: Any
f: Any
def __init__(self, fid, own_fid=..., allow_pickle=..., pickle_kwargs=...): ...
def __enter__(self): ...
def __exit__(self, exc_type, exc_value, traceback): ...
def close(self): ...
def __del__(self): ...
def __iter__(self): ...
def __len__(self): ...
def __getitem__(self, key): ...
def iteritems(self): ...
def iterkeys(self): ...
def load(file, mmap_mode=..., allow_pickle=..., fix_imports=..., encoding=...): ...
def save(file, arr, allow_pickle=..., fix_imports=...): ...
def savez(file, *args, **kwds): ...
def savez_compressed(file, *args, **kwds): ...
def loadtxt(
fname,
dtype=...,
comments=...,
delimiter=...,
converters=...,
skiprows=...,
usecols=...,
unpack=...,
ndmin=...,
encoding=...,
max_rows=...,
*,
like=...,
): ...
def savetxt(
fname,
X,
fmt=...,
delimiter=...,
newline=...,
header=...,
footer=...,
comments=...,
encoding=...,
): ...
def fromregex(file, regexp, dtype, encoding=...): ...
def genfromtxt(
fname,
dtype=...,
comments=...,
delimiter=...,
skip_header=...,
skip_footer=...,
converters=...,
missing_values=...,
filling_values=...,
usecols=...,
names=...,
excludelist=...,
deletechars=...,
replace_space=...,
autostrip=...,
case_sensitive=...,
defaultfmt=...,
unpack=...,
usemask=...,
loose=...,
invalid_raise=...,
max_rows=...,
encoding=...,
*,
like=...,
): ...
def recfromtxt(fname, **kwargs): ...
def recfromcsv(fname, **kwargs): ...
# NOTE: Deprecated
# def ndfromtxt(fname, **kwargs): ...
# def mafromtxt(fname, **kwargs): ...
|