-
Notifications
You must be signed in to change notification settings - Fork 711
Expand file tree
/
Copy pathtypes.py
More file actions
55 lines (54 loc) · 883 Bytes
/
types.py
File metadata and controls
55 lines (54 loc) · 883 Bytes
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
from ._deeplake.types import *
__all__ = [
"Array",
"Audio",
"BM25",
"Binary",
"BinaryMask",
"Bool",
"BoundingBox",
"Bytes",
"ClassLabel",
"Clustered",
"ClusteredQuantized",
"DataType",
"Dict",
"Embedding",
"EmbeddingIndex",
"EmbeddingIndexType",
"EmbeddingsMatrixIndex",
"EmbeddingsMatrixIndexType",
"Exact",
"Float16",
"Float32",
"Float64",
"Image",
"Index",
"IndexType",
"Int16",
"Int32",
"Int64",
"Int8",
"Inverted",
"JsonIndex",
"Link",
"Medical",
"Mesh",
"Nullable",
"NumericIndex",
"Point",
"Polygon",
"PooledQuantized",
"QuantizationType",
"SegmentMask",
"Sequence",
"Struct",
"Text",
"TextIndex",
"Type",
"TypeKind",
"UInt16",
"UInt32",
"UInt64",
"UInt8",
"Video"]