pixeltable 0.2.8__py3-none-any.whl → 0.2.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pixeltable might be problematic. Click here for more details.
- pixeltable/__init__.py +15 -33
- pixeltable/__version__.py +2 -2
- pixeltable/catalog/catalog.py +1 -1
- pixeltable/catalog/column.py +29 -11
- pixeltable/catalog/dir.py +2 -2
- pixeltable/catalog/insertable_table.py +5 -55
- pixeltable/catalog/named_function.py +2 -2
- pixeltable/catalog/schema_object.py +2 -7
- pixeltable/catalog/table.py +307 -186
- pixeltable/catalog/table_version.py +109 -63
- pixeltable/catalog/table_version_path.py +28 -5
- pixeltable/catalog/view.py +20 -10
- pixeltable/dataframe.py +128 -25
- pixeltable/env.py +29 -18
- pixeltable/exec/exec_context.py +5 -0
- pixeltable/exec/exec_node.py +1 -0
- pixeltable/exec/in_memory_data_node.py +29 -24
- pixeltable/exec/sql_scan_node.py +1 -1
- pixeltable/exprs/column_ref.py +13 -8
- pixeltable/exprs/data_row.py +4 -0
- pixeltable/exprs/expr.py +16 -1
- pixeltable/exprs/function_call.py +4 -4
- pixeltable/exprs/row_builder.py +29 -20
- pixeltable/exprs/similarity_expr.py +4 -3
- pixeltable/ext/functions/yolox.py +2 -1
- pixeltable/func/__init__.py +1 -0
- pixeltable/func/aggregate_function.py +14 -12
- pixeltable/func/callable_function.py +8 -6
- pixeltable/func/expr_template_function.py +13 -19
- pixeltable/func/function.py +3 -6
- pixeltable/func/query_template_function.py +84 -0
- pixeltable/func/signature.py +68 -23
- pixeltable/func/udf.py +13 -10
- pixeltable/functions/__init__.py +6 -91
- pixeltable/functions/eval.py +26 -14
- pixeltable/functions/fireworks.py +25 -23
- pixeltable/functions/globals.py +62 -0
- pixeltable/functions/huggingface.py +20 -16
- pixeltable/functions/image.py +170 -1
- pixeltable/functions/openai.py +95 -128
- pixeltable/functions/string.py +10 -2
- pixeltable/functions/together.py +95 -84
- pixeltable/functions/util.py +16 -0
- pixeltable/functions/video.py +94 -16
- pixeltable/functions/whisper.py +78 -0
- pixeltable/globals.py +1 -1
- pixeltable/io/__init__.py +10 -0
- pixeltable/io/external_store.py +370 -0
- pixeltable/io/globals.py +51 -22
- pixeltable/io/label_studio.py +639 -0
- pixeltable/io/parquet.py +1 -1
- pixeltable/iterators/__init__.py +9 -0
- pixeltable/iterators/string.py +40 -0
- pixeltable/metadata/__init__.py +6 -8
- pixeltable/metadata/converters/convert_10.py +2 -4
- pixeltable/metadata/converters/convert_12.py +7 -2
- pixeltable/metadata/converters/convert_13.py +6 -8
- pixeltable/metadata/converters/convert_14.py +2 -4
- pixeltable/metadata/converters/convert_15.py +44 -0
- pixeltable/metadata/converters/convert_16.py +18 -0
- pixeltable/metadata/converters/util.py +66 -0
- pixeltable/metadata/schema.py +3 -3
- pixeltable/plan.py +8 -7
- pixeltable/store.py +1 -1
- pixeltable/tool/create_test_db_dump.py +147 -54
- pixeltable/tool/embed_udf.py +9 -0
- pixeltable/type_system.py +1 -2
- pixeltable/utils/code.py +34 -0
- {pixeltable-0.2.8.dist-info → pixeltable-0.2.9.dist-info}/METADATA +1 -1
- pixeltable-0.2.9.dist-info/RECORD +131 -0
- pixeltable/datatransfer/__init__.py +0 -1
- pixeltable/datatransfer/label_studio.py +0 -452
- pixeltable/datatransfer/remote.py +0 -85
- pixeltable/functions/pil/image.py +0 -147
- pixeltable-0.2.8.dist-info/RECORD +0 -124
- {pixeltable-0.2.8.dist-info → pixeltable-0.2.9.dist-info}/LICENSE +0 -0
- {pixeltable-0.2.8.dist-info → pixeltable-0.2.9.dist-info}/WHEEL +0 -0
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
|
|
3
|
-
import abc
|
|
4
|
-
from typing import Any
|
|
5
|
-
|
|
6
|
-
import pixeltable.type_system as ts
|
|
7
|
-
from pixeltable import Table
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class Remote(abc.ABC):
|
|
11
|
-
"""
|
|
12
|
-
Abstract base class that represents a remote data store. Subclasses of `Remote` provide
|
|
13
|
-
functionality for synchronizing between Pixeltable tables and stateful remote stores.
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
|
-
@abc.abstractmethod
|
|
17
|
-
def get_export_columns(self) -> dict[str, ts.ColumnType]:
|
|
18
|
-
"""
|
|
19
|
-
Returns the names and Pixeltable types that this `Remote` expects to see in a data export.
|
|
20
|
-
|
|
21
|
-
Returns:
|
|
22
|
-
A `dict` mapping names of expected columns to their Pixeltable types.
|
|
23
|
-
"""
|
|
24
|
-
|
|
25
|
-
@abc.abstractmethod
|
|
26
|
-
def get_import_columns(self) -> dict[str, ts.ColumnType]:
|
|
27
|
-
"""
|
|
28
|
-
Returns the names and Pixeltable types that this `Remote` provides in a data import.
|
|
29
|
-
|
|
30
|
-
Returns:
|
|
31
|
-
A `dict` mapping names of provided columns to their Pixeltable types.
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
|
-
@abc.abstractmethod
|
|
35
|
-
def sync(self, t: Table, col_mapping: dict[str, str], export_data: bool, import_data: bool) -> None:
|
|
36
|
-
"""
|
|
37
|
-
Synchronizes the given [`Table`][pixeltable.Table] with this `Remote`. This method
|
|
38
|
-
should generally not be called directly; instead, call
|
|
39
|
-
[`t.sync()`][pixeltable.Table.sync].
|
|
40
|
-
|
|
41
|
-
Args:
|
|
42
|
-
t: The table to synchronize with this remote.
|
|
43
|
-
col_mapping: A `dict` mapping columns in the Pixeltable table to columns in the remote store.
|
|
44
|
-
export_data: If `True`, data from this table will be exported to the remote during synchronization.
|
|
45
|
-
import_data: If `True`, data from this table will be imported from the remote during synchronization.
|
|
46
|
-
"""
|
|
47
|
-
|
|
48
|
-
@abc.abstractmethod
|
|
49
|
-
def to_dict(self) -> dict[str, Any]: ...
|
|
50
|
-
|
|
51
|
-
@classmethod
|
|
52
|
-
@abc.abstractmethod
|
|
53
|
-
def from_dict(cls, md: dict[str, Any]) -> Remote: ...
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
# A remote that cannot be synced, used mainly for testing.
|
|
57
|
-
class MockRemote(Remote):
|
|
58
|
-
|
|
59
|
-
def __init__(self, export_cols: dict[str, ts.ColumnType], import_cols: dict[str, ts.ColumnType]):
|
|
60
|
-
self.export_cols = export_cols
|
|
61
|
-
self.import_cols = import_cols
|
|
62
|
-
|
|
63
|
-
def get_export_columns(self) -> dict[str, ts.ColumnType]:
|
|
64
|
-
return self.export_cols
|
|
65
|
-
|
|
66
|
-
def get_import_columns(self) -> dict[str, ts.ColumnType]:
|
|
67
|
-
return self.import_cols
|
|
68
|
-
|
|
69
|
-
def sync(self, t: Table, col_mapping: dict[str, str], export_data: bool, import_data: bool) -> NotImplemented:
|
|
70
|
-
raise NotImplementedError()
|
|
71
|
-
|
|
72
|
-
def to_dict(self) -> dict[str, Any]:
|
|
73
|
-
return {
|
|
74
|
-
# TODO Change in next schema version
|
|
75
|
-
'push_cols': {k: v.as_dict() for k, v in self.export_cols.items()},
|
|
76
|
-
'pull_cols': {k: v.as_dict() for k, v in self.import_cols.items()}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
@classmethod
|
|
80
|
-
def from_dict(cls, md: dict[str, Any]) -> Remote:
|
|
81
|
-
return cls(
|
|
82
|
-
# TODO Change in next schema version
|
|
83
|
-
{k: ts.ColumnType.from_dict(v) for k, v in md['push_cols'].items()},
|
|
84
|
-
{k: ts.ColumnType.from_dict(v) for k, v in md['pull_cols'].items()}
|
|
85
|
-
)
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
from typing import Tuple, Optional
|
|
2
|
-
|
|
3
|
-
import PIL.Image
|
|
4
|
-
from PIL.Image import Dither
|
|
5
|
-
|
|
6
|
-
import pixeltable.func as func
|
|
7
|
-
from pixeltable.type_system import FloatType, ImageType, IntType, ArrayType, ColumnType, StringType, JsonType
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
@func.udf(
|
|
11
|
-
py_fn=PIL.Image.alpha_composite, return_type=ImageType(), param_types=[ImageType(), ImageType()])
|
|
12
|
-
def alpha_composite(im1: PIL.Image.Image, im2: PIL.Image.Image) -> PIL.Image.Image:
|
|
13
|
-
pass
|
|
14
|
-
@func.udf(
|
|
15
|
-
py_fn=PIL.Image.blend, return_type=ImageType(), param_types=[ImageType(), ImageType(), FloatType()])
|
|
16
|
-
def blend(im1: PIL.Image.Image, im2: PIL.Image.Image, alpha: float) -> PIL.Image.Image:
|
|
17
|
-
pass
|
|
18
|
-
@func.udf(
|
|
19
|
-
py_fn=PIL.Image.composite, return_type=ImageType(), param_types=[ImageType(), ImageType(), ImageType()])
|
|
20
|
-
def composite(image1: PIL.Image.Image, image2: PIL.Image.Image, mask: PIL.Image.Image) -> PIL.Image.Image:
|
|
21
|
-
pass
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
# PIL.Image.Image methods
|
|
25
|
-
|
|
26
|
-
# Image.convert()
|
|
27
|
-
@func.udf(param_types=[ImageType(), StringType()])
|
|
28
|
-
def convert(self: PIL.Image.Image, mode: str) -> PIL.Image.Image:
|
|
29
|
-
return self.convert(mode)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
@convert.conditional_return_type
|
|
33
|
-
def _(self: PIL.Image.Image, mode: str) -> ColumnType:
|
|
34
|
-
input_type = self.col_type
|
|
35
|
-
assert input_type.is_image_type()
|
|
36
|
-
return ImageType(size=input_type.size, mode=mode, nullable=input_type.nullable)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
# Image.crop()
|
|
40
|
-
@func.udf(
|
|
41
|
-
py_fn=PIL.Image.Image.crop,
|
|
42
|
-
param_types=[ImageType(), ArrayType((4,), dtype=IntType())])
|
|
43
|
-
def crop(self: PIL.Image.Image, box: Tuple[int, int, int, int]) -> PIL.Image.Image:
|
|
44
|
-
pass
|
|
45
|
-
|
|
46
|
-
@crop.conditional_return_type
|
|
47
|
-
def _(self: PIL.Image.Image, box: Tuple[int, int, int, int]) -> ColumnType:
|
|
48
|
-
input_type = self.col_type
|
|
49
|
-
assert input_type.is_image_type()
|
|
50
|
-
if isinstance(box, list) and all(isinstance(x, int) for x in box):
|
|
51
|
-
return ImageType(size=(box[2] - box[0], box[3] - box[1]), mode=input_type.mode, nullable=input_type.nullable)
|
|
52
|
-
return ImageType(mode=input_type.mode, nullable=input_type.nullable) # we can't compute the size statically
|
|
53
|
-
|
|
54
|
-
# Image.getchannel()
|
|
55
|
-
@func.udf(py_fn=PIL.Image.Image.getchannel, param_types=[ImageType(), IntType()])
|
|
56
|
-
def getchannel(self: PIL.Image.Image, channel: int) -> PIL.Image.Image:
|
|
57
|
-
pass
|
|
58
|
-
|
|
59
|
-
@getchannel.conditional_return_type
|
|
60
|
-
def _(self: PIL.Image.Image) -> ColumnType:
|
|
61
|
-
input_type = self.col_type
|
|
62
|
-
assert input_type.is_image_type()
|
|
63
|
-
return ImageType(size=input_type.size, mode='L', nullable=input_type.nullable)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
# Image.resize()
|
|
67
|
-
@func.udf(param_types=[ImageType(), ArrayType((2, ), dtype=IntType())])
|
|
68
|
-
def resize(self: PIL.Image.Image, size: Tuple[int, int]) -> PIL.Image.Image:
|
|
69
|
-
return self.resize(size)
|
|
70
|
-
|
|
71
|
-
@resize.conditional_return_type
|
|
72
|
-
def _(self: PIL.Image.Image, size: Tuple[int, int]) -> ColumnType:
|
|
73
|
-
input_type = self.col_type
|
|
74
|
-
assert input_type.is_image_type()
|
|
75
|
-
return ImageType(size=size, mode=input_type.mode, nullable=input_type.nullable)
|
|
76
|
-
|
|
77
|
-
# Image.rotate()
|
|
78
|
-
@func.udf(param_types=[ImageType(), IntType()])
|
|
79
|
-
def rotate(self: PIL.Image.Image, angle: int) -> PIL.Image.Image:
|
|
80
|
-
return self.rotate(angle)
|
|
81
|
-
|
|
82
|
-
@func.udf(py_fn=PIL.Image.Image.effect_spread, param_types=[ImageType(), IntType()])
|
|
83
|
-
def effect_spread(self: PIL.Image.Image, distance: int) -> PIL.Image.Image:
|
|
84
|
-
pass
|
|
85
|
-
|
|
86
|
-
@func.udf(py_fn=PIL.Image.Image.transpose, param_types=[ImageType(), IntType()])
|
|
87
|
-
def transpose(self: PIL.Image.Image, method: int) -> PIL.Image.Image:
|
|
88
|
-
pass
|
|
89
|
-
|
|
90
|
-
@rotate.conditional_return_type
|
|
91
|
-
@effect_spread.conditional_return_type
|
|
92
|
-
@transpose.conditional_return_type
|
|
93
|
-
def _(self: PIL.Image.Image) -> ColumnType:
|
|
94
|
-
return self.col_type
|
|
95
|
-
|
|
96
|
-
@func.udf(
|
|
97
|
-
py_fn=PIL.Image.Image.entropy, return_type=FloatType(), param_types=[ImageType(), ImageType(), JsonType()])
|
|
98
|
-
def entropy(self: PIL.Image.Image, mask: PIL.Image.Image, extrema: Optional[list] = None) -> float:
|
|
99
|
-
pass
|
|
100
|
-
|
|
101
|
-
@func.udf(py_fn=PIL.Image.Image.getbands, return_type=JsonType(), param_types=[ImageType()])
|
|
102
|
-
def getbands(self: PIL.Image.Image) -> Tuple[str]:
|
|
103
|
-
pass
|
|
104
|
-
|
|
105
|
-
@func.udf(py_fn=PIL.Image.Image.getbbox, return_type=JsonType(), param_types=[ImageType()])
|
|
106
|
-
def getbbox(self: PIL.Image.Image) -> Tuple[int, int, int, int]:
|
|
107
|
-
pass
|
|
108
|
-
|
|
109
|
-
@func.udf(py_fn=PIL.Image.Image.getcolors, return_type=JsonType(), param_types=[ImageType(), IntType()])
|
|
110
|
-
def getcolors(self: PIL.Image.Image, maxcolors: int) -> Tuple[Tuple[int, int, int], int]:
|
|
111
|
-
pass
|
|
112
|
-
|
|
113
|
-
@func.udf(py_fn=PIL.Image.Image.getextrema, return_type=JsonType(), param_types=[ImageType()])
|
|
114
|
-
def getextrema(self: PIL.Image.Image) -> Tuple[int, int]:
|
|
115
|
-
pass
|
|
116
|
-
|
|
117
|
-
@func.udf(
|
|
118
|
-
py_fn=PIL.Image.Image.getpalette, return_type=JsonType(), param_types=[ImageType(), StringType()])
|
|
119
|
-
def getpalette(self: PIL.Image.Image, mode: Optional[str] = None) -> Tuple[int]:
|
|
120
|
-
pass
|
|
121
|
-
|
|
122
|
-
@func.udf(
|
|
123
|
-
return_type=JsonType(), param_types=[ImageType(), ArrayType((2,), dtype=IntType())])
|
|
124
|
-
def getpixel(self: PIL.Image.Image, xy: tuple[int, int]) -> Tuple[int]:
|
|
125
|
-
# `xy` will be a list; `tuple(xy)` is necessary for pillow 9 compatibility
|
|
126
|
-
return self.getpixel(tuple(xy))
|
|
127
|
-
|
|
128
|
-
@func.udf(py_fn=PIL.Image.Image.getprojection, return_type=JsonType(), param_types=[ImageType()])
|
|
129
|
-
def getprojection(self: PIL.Image.Image) -> Tuple[int]:
|
|
130
|
-
pass
|
|
131
|
-
|
|
132
|
-
@func.udf(py_fn=PIL.Image.Image.histogram, return_type=JsonType(), param_types=[ImageType(), ImageType(), JsonType()])
|
|
133
|
-
def histogram(self: PIL.Image.Image, mask: PIL.Image.Image, extrema: Optional[list] = None) -> Tuple[int]:
|
|
134
|
-
pass
|
|
135
|
-
|
|
136
|
-
@func.udf(
|
|
137
|
-
py_fn=PIL.Image.Image.quantize, return_type=ImageType(),
|
|
138
|
-
param_types=[ImageType(), IntType(), IntType(nullable=True), IntType(), IntType(nullable=True), IntType()])
|
|
139
|
-
def quantize(
|
|
140
|
-
self: PIL.Image.Image, colors: int = 256, method: Optional[int] = None, kmeans: int = 0,
|
|
141
|
-
palette: Optional[int] = None, dither: int = Dither.FLOYDSTEINBERG) -> PIL.Image.Image:
|
|
142
|
-
pass
|
|
143
|
-
|
|
144
|
-
@func.udf(
|
|
145
|
-
py_fn=PIL.Image.Image.reduce, return_type=ImageType(), param_types=[ImageType(), IntType(), JsonType()])
|
|
146
|
-
def reduce(self: PIL.Image.Image, factor: int, box: Optional[Tuple[int]]) -> PIL.Image.Image:
|
|
147
|
-
pass
|
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
pixeltable/__init__.py,sha256=DzVevwic1g8Tp4QYrcCIzPFFwPZ66KGWeYprlRC9Uwc,1142
|
|
2
|
-
pixeltable/__version__.py,sha256=AyN0bhxu_oExUztSHc2d8uAemad8-aDrT7QgYAM_JCs,112
|
|
3
|
-
pixeltable/catalog/__init__.py,sha256=E41bxaPeQIcgRYzTWc2vkDOboQhRymrJf4IcHQO7o_8,453
|
|
4
|
-
pixeltable/catalog/catalog.py,sha256=0TYWB1R6YBp9qCkWF7kCcX2Yw70UuburKKIemv5L1Js,7908
|
|
5
|
-
pixeltable/catalog/column.py,sha256=J8irt6PfT1ofC3wVKi-hDGjNUZ1Ceq2qzbmZyEw-ddA,8335
|
|
6
|
-
pixeltable/catalog/dir.py,sha256=pG1nMpG123POo6WMSHhAmnwXOQ26uUJfUcbzL-Jb4ws,919
|
|
7
|
-
pixeltable/catalog/globals.py,sha256=yLEGNbsSnLzjWNHVJacfjA9hbw13Q6QXLOSCRmdTlq0,943
|
|
8
|
-
pixeltable/catalog/insertable_table.py,sha256=vMa_XUWT3DG3ZlxkScDZ9-mYNw31G8XB4ODUlxXt7NU,8927
|
|
9
|
-
pixeltable/catalog/named_function.py,sha256=a96gnKtx-nz5_MzDIiD4t4Hxqdjkg9ZtijRQxvWA5WQ,1147
|
|
10
|
-
pixeltable/catalog/path.py,sha256=QgccEi_QOfaKt8YsR2zLtd_z7z7QQkU_1kprJFi2SPQ,1677
|
|
11
|
-
pixeltable/catalog/path_dict.py,sha256=xfvxg1Ze5jZCARUGASF2DRbQPh7pRVTYhuJ_u82gYUo,5941
|
|
12
|
-
pixeltable/catalog/schema_object.py,sha256=-UxmPLbuEBqJiJi_GGRbFdr7arAFxTqs4bt6TFmSt3M,1059
|
|
13
|
-
pixeltable/catalog/table.py,sha256=50UOSt7zltvthygiiXbgP-XMOiYUpcIaEXiM1uJFcaA,38220
|
|
14
|
-
pixeltable/catalog/table_version.py,sha256=BeP-4Io6euT6hOQXVJwpZNjZ6ZNehqOH6S98zvQsU9E,52751
|
|
15
|
-
pixeltable/catalog/table_version_path.py,sha256=2Ofzd0n36flcNm86KWwIWDBAfgnV5Z-FxAHdMSPgMLc,5482
|
|
16
|
-
pixeltable/catalog/view.py,sha256=BIL3s4DV3tWbOcqtqnhn46B2UvLaBhppfJUlNEt5nec,9734
|
|
17
|
-
pixeltable/dataframe.py,sha256=lzSzR7mi9C4BO39fNXYo64k3KxILyG_Z7eET6DXTgKY,31922
|
|
18
|
-
pixeltable/datatransfer/__init__.py,sha256=cRWdQ_LUNkJgmionI1RrYD71A1CSI92P4o8_XXOnFmU,27
|
|
19
|
-
pixeltable/datatransfer/label_studio.py,sha256=3DLsqfIUNVG9xVRVUU4NayLuC-xUTIM1Sz92kGvrTUc,19643
|
|
20
|
-
pixeltable/datatransfer/remote.py,sha256=t-VeDIq62mX67xBoHLi8voa4V5XqMkr-8UZ-8DhIgk0,3100
|
|
21
|
-
pixeltable/env.py,sha256=OEZv6NS8Z41rdCx73Md5j78ImnKaZf3YhdAexFJR7gw,21381
|
|
22
|
-
pixeltable/exceptions.py,sha256=MSP9zeL0AmXT93XqjdvgGN4rzno1_KRrGriq6hpemnw,376
|
|
23
|
-
pixeltable/exec/__init__.py,sha256=RK7SKvrQ7Ky3G_LXDP4Bf7lHmMM_uYZl8dJaZYs0FjY,454
|
|
24
|
-
pixeltable/exec/aggregation_node.py,sha256=cf6rVAgrGh_uaMrCIgXJIwQTmbcboJlnrH_MmPIQSd0,3321
|
|
25
|
-
pixeltable/exec/cache_prefetch_node.py,sha256=d5pEuR6AtJQkEVy9X3XeYFI_q0szMtoNAH96vYdtBE0,5241
|
|
26
|
-
pixeltable/exec/component_iteration_node.py,sha256=Uz6zEeaJMcbvF3S0W0qmLI_uWsZsaSspHKNzuAMrasg,4069
|
|
27
|
-
pixeltable/exec/data_row_batch.py,sha256=1IDYHBkSQ60dwOnAGnS-Wpp3AsnbMqKcY40zUT7ku-Q,3392
|
|
28
|
-
pixeltable/exec/exec_context.py,sha256=E82Q2bJMJ1ulud5L5D9dh2Z8vEUQ659SgT614YKDO34,924
|
|
29
|
-
pixeltable/exec/exec_node.py,sha256=Hji5NCPHfa50IWyjladXrBm4I0zseV7AV4cVdx0Q8Ew,2170
|
|
30
|
-
pixeltable/exec/expr_eval_node.py,sha256=fEzbeZ0J-kylRQ2M0nSlUeLFRTHlwNzlvBo1yqWQ2rg,10856
|
|
31
|
-
pixeltable/exec/in_memory_data_node.py,sha256=SNM2AbMQSjmGDWMNJUf_5MmlXWE3P80lsuUjNfzQckA,3171
|
|
32
|
-
pixeltable/exec/media_validation_node.py,sha256=OKfRyKpcn7AZdACy_HD4NsDC87ZfNFs1tdrQz2NiIVw,1514
|
|
33
|
-
pixeltable/exec/sql_scan_node.py,sha256=s2PVls7gfSL0zQsdDWz8dC7MAE6KWeV_EDBCilx8Ros,10250
|
|
34
|
-
pixeltable/exprs/__init__.py,sha256=7dwrdk-NpF66OT-m5yNtFEhq-o1T476dnXHjluw2K1s,951
|
|
35
|
-
pixeltable/exprs/arithmetic_expr.py,sha256=sWBYCBKI6IHj9ASwDcm2BlkQ5gleVtKtmpiPvzFNBJM,4386
|
|
36
|
-
pixeltable/exprs/array_slice.py,sha256=VmWc6iFusrM85MjyEBBCfXG1Jnt8-Gr6-J88BXxNoOE,2131
|
|
37
|
-
pixeltable/exprs/column_property_ref.py,sha256=0PHiBys0fxe2LgjaMId5UHob4E-ZggyPLnnW41RgA0E,2706
|
|
38
|
-
pixeltable/exprs/column_ref.py,sha256=5GoddEyH1nLeeKYqX2g2WOBoCqnmghwt3Hg3D6JdzvI,5430
|
|
39
|
-
pixeltable/exprs/comparison.py,sha256=hP3M_lMWcFgENBICFosZPw2lRm1R6_qM_O9bKPmWJGI,4789
|
|
40
|
-
pixeltable/exprs/compound_predicate.py,sha256=Gh22MKi625m5A_RunVRd-a1XFi-fitikqBVz2VNXKrs,3830
|
|
41
|
-
pixeltable/exprs/data_row.py,sha256=TN4WeAz7D3xiSCDYgCinkVpTaSkkJhGgNkNqviBHVqs,8425
|
|
42
|
-
pixeltable/exprs/expr.py,sha256=NvkJmxAbAxfQYfoegXyBaD0_fm-3lnotUrvf_R6Z0Gk,24163
|
|
43
|
-
pixeltable/exprs/expr_set.py,sha256=Q64Q2yI0CTq2Ma_E-BUYlMotSstVuMm4OFZnBCedHRk,1222
|
|
44
|
-
pixeltable/exprs/function_call.py,sha256=d3TXU2MbfgQyth1-GEeZJcEZs_BX9548gN5TCwGLNX0,17118
|
|
45
|
-
pixeltable/exprs/globals.py,sha256=KhK4xwkLHv4NsXXcLdjRu2OFSvEnlC7GG-8Gs_IbQtI,1858
|
|
46
|
-
pixeltable/exprs/image_member_access.py,sha256=KSYdTIaLh53dNRjv3SJFchPMPo7o5diJSQkV1NsyB4Y,3547
|
|
47
|
-
pixeltable/exprs/in_predicate.py,sha256=burxrBCH1MXqU-wrNWJvD0PRGzJdWy85intOSftQK54,3696
|
|
48
|
-
pixeltable/exprs/inline_array.py,sha256=293WuUEhYXrcp8-AnPDVIWQBPQMrPviB88A619Ls_Es,4499
|
|
49
|
-
pixeltable/exprs/inline_dict.py,sha256=TWYokJ14Nq-evODcYFVO471WSEDbz6cJqIdRb2PkbZQ,3885
|
|
50
|
-
pixeltable/exprs/is_null.py,sha256=nvpOXtQj1UeYJpkCWzbaGuQElzrA2HSG3XNQugOv-pw,1041
|
|
51
|
-
pixeltable/exprs/json_mapper.py,sha256=I60VNgus64ai80gnFCIsRn0VRWYXMkqH5VNvnATsN9s,4559
|
|
52
|
-
pixeltable/exprs/json_path.py,sha256=Wz_5zFsyc9TPhsSbsDjDmQ3Nb0uVIwMCx5nh-cQYBiE,6526
|
|
53
|
-
pixeltable/exprs/literal.py,sha256=5NNza-WL1dd3hNznwwkr_yAcTGXSIRYUszGfy30lruI,2396
|
|
54
|
-
pixeltable/exprs/object_ref.py,sha256=eTcx84aWRI59fIiGvbdv3_cfL0XW4xEFQ4lwpLpJkM8,1250
|
|
55
|
-
pixeltable/exprs/predicate.py,sha256=OSDgjfSqiK7J_5GZMUXMvjfyomKEGi0JNxeB073SGXw,1859
|
|
56
|
-
pixeltable/exprs/row_builder.py,sha256=cpQa7GHR2dZYxhCAwZBfz-MqO0oP-NS44mAYoVUOt7A,15662
|
|
57
|
-
pixeltable/exprs/rowid_ref.py,sha256=74w4rEy21YysTVbyKNc3op-pYFqDAx8VJdtl7ZPpxHs,4268
|
|
58
|
-
pixeltable/exprs/similarity_expr.py,sha256=IvSeUFMjyj-ZFZTae8UJKa2YlDGn6512RyTIvLIcG7w,2829
|
|
59
|
-
pixeltable/exprs/type_cast.py,sha256=JMg8p1qYoFfiAXfJPSbTEnfrK7lRO_JMaqlPHOrhNQU,1793
|
|
60
|
-
pixeltable/exprs/variable.py,sha256=Kg_O4ytcHYZFijIyMHYBJn063cTKU1-YE583FAz8Qaw,1361
|
|
61
|
-
pixeltable/ext/__init__.py,sha256=0uugfuME1FybVo-MdxaVNGagRjhcvNTnv5MZUem6Cyo,269
|
|
62
|
-
pixeltable/ext/functions/whisperx.py,sha256=CnpSPZJgufXa01vgUubVkyxQuZIdublJzkwbm5kS1YQ,1078
|
|
63
|
-
pixeltable/ext/functions/yolox.py,sha256=JCG57Kbu0hNc1wRGDY3Mhhr6LQUY0fOgSSh-JV1plkw,3644
|
|
64
|
-
pixeltable/func/__init__.py,sha256=LCB5iB2aZyMrX-hn_oNBYnB1SE60t50hE23av_v2F50,348
|
|
65
|
-
pixeltable/func/aggregate_function.py,sha256=fB2kwLaeBKWCAOihOUdACR-2XDbMN14zJQIpQBVP0Bk,9398
|
|
66
|
-
pixeltable/func/callable_function.py,sha256=nEEmXFvd8TW9TBPbDnC3q8phj9ARokAsB-OJ1_hTkGo,4612
|
|
67
|
-
pixeltable/func/expr_template_function.py,sha256=7PNIzqkNOsCfU0KXCzrh_fczKMpZihu6FHV4NOgeVDM,4349
|
|
68
|
-
pixeltable/func/function.py,sha256=fANPfafLwY0Mq6CF21VYbuF-hRxxsPLHn5waoj1mOGY,5611
|
|
69
|
-
pixeltable/func/function_registry.py,sha256=1ibSQxEPm3Zd3r497vSlckQiDG9sfCnyJx3zcSm9t7c,11456
|
|
70
|
-
pixeltable/func/globals.py,sha256=sEwn6lGgHMp6VQORb_P5qRd_-Q2_bUSqvqM9-XPN_ec,1483
|
|
71
|
-
pixeltable/func/signature.py,sha256=erOPFuSuaxkXnRyFd3nCYLuprUWcYFox3Hk3ZKUPWfM,6697
|
|
72
|
-
pixeltable/func/udf.py,sha256=eu6Dt1SGlMvIBDNUxSc467-VBns5X12UU47FihlO_to,6540
|
|
73
|
-
pixeltable/functions/__init__.py,sha256=uO-XB4QUbx3Jjs9GoaTXoJY2jn0AuXTL32YLkL_3_CI,3297
|
|
74
|
-
pixeltable/functions/eval.py,sha256=_2FANDJqwtIDzTxtcKc0Yacf7b4LTAjyy2fPDw1FG_s,8404
|
|
75
|
-
pixeltable/functions/fireworks.py,sha256=dVGFZ6Kb2sahyySoLkSatLHsSnEXjAvLc0_hCHXUxXg,985
|
|
76
|
-
pixeltable/functions/huggingface.py,sha256=SlzPc01TS4oeFhJlsbwYCtG3h_LF1r-CnWisIfO37qc,7224
|
|
77
|
-
pixeltable/functions/image.py,sha256=xR_S_0BuX6Ycc5E366GpOfP0JptD7beQwHE_fLl8ZVM,431
|
|
78
|
-
pixeltable/functions/openai.py,sha256=lDmp9v7k-TCHUyMsPVTIwfjygWEihrlhnnJuOhvek1I,8046
|
|
79
|
-
pixeltable/functions/pil/image.py,sha256=6eNdMy2lZliFb8Lw12aBRUaShH07VEsFmhHSG21Jjt4,5992
|
|
80
|
-
pixeltable/functions/string.py,sha256=RYOgZwifjC943YloEMi3PdflnjFqOYB2FddrUvzgtXs,516
|
|
81
|
-
pixeltable/functions/together.py,sha256=Iu2_pZjOH6jXq6Sdqmu8LqtG1ELTtBEQ4eSOdYkig9c,4249
|
|
82
|
-
pixeltable/functions/util.py,sha256=DW7SwsftTRYo5h6iYl2Ec3WGmUA1D1Hrv4bPt-j7fKM,262
|
|
83
|
-
pixeltable/functions/video.py,sha256=wanwNQ1dyo5mP0NZ5F6gf6MEMUX40lcHXkz04WyOsbA,3876
|
|
84
|
-
pixeltable/globals.py,sha256=-2_ndBGunTXYm0A99nocSfKXRsQtiiesKVl2pBv0We4,14157
|
|
85
|
-
pixeltable/index/__init__.py,sha256=XBwetNQQwnz0fiKwonOKhyy_U32l_cjt77kNvEIdjWs,102
|
|
86
|
-
pixeltable/index/base.py,sha256=YAQ5Dz1mfI0dfu9rxWHWroE8TjB90yKfPtXAzoADq38,1568
|
|
87
|
-
pixeltable/index/btree.py,sha256=NE4GYhcJWYJhdKyeHI0sQBlFvUaIgGOF9KLyCZOfFjE,1822
|
|
88
|
-
pixeltable/index/embedding_index.py,sha256=AYphEggN-0B4GNrm4nMmi46CEtrQw5tguyk67BK2sWo,7627
|
|
89
|
-
pixeltable/io/__init__.py,sha256=Io5ZLrcvRPeqRQwnU2iODvWMqkYroWErkbp7dLxE4Kk,197
|
|
90
|
-
pixeltable/io/globals.py,sha256=ArnuWVhdKHT9ds84PZBl0-fszmEu-W62P4Su21c9oN4,2642
|
|
91
|
-
pixeltable/io/hf_datasets.py,sha256=h5M1NkXOvEU8kaeT3AON1A18Vmhnc1lVo5a3TZ5AAic,8004
|
|
92
|
-
pixeltable/io/pandas.py,sha256=cDHUDW2CGiBbsEJB9zE5vkXopTKxDdI-CZxNcp0OnIk,6478
|
|
93
|
-
pixeltable/io/parquet.py,sha256=Z1b92gsPeCBf4P9_jgWWHAEHtu51nhuC8nSJgoKiywQ,8150
|
|
94
|
-
pixeltable/iterators/__init__.py,sha256=kokLguXBY_nxBTqUiXZVvCxTv-vGsX4cK8tgIbsW5G8,108
|
|
95
|
-
pixeltable/iterators/base.py,sha256=cnEh1tNN2JAxRzrLTg3dhun3N1oNQ8vifCm6ts3_UiE,1687
|
|
96
|
-
pixeltable/iterators/document.py,sha256=netSCJatG8NcgbHZ69BvQVICdAorQlYi8OlcpqwLQD4,19436
|
|
97
|
-
pixeltable/iterators/video.py,sha256=xtxODL1AfZwTfHVzWekhTCLA8gwTJIvJFdxC0KecD9Q,3836
|
|
98
|
-
pixeltable/metadata/__init__.py,sha256=beGPpClpNaN7seM_AeKli5R33TSIkb7_mIBWoExT_5M,2228
|
|
99
|
-
pixeltable/metadata/converters/convert_10.py,sha256=0mSGCn7vqtef63riPi9msUaaUvsSQIj-NFj9QFDYPdA,733
|
|
100
|
-
pixeltable/metadata/converters/convert_12.py,sha256=g9rHTcKlDQZbM3_k4eBv0FBdWmQXHWCnMwx1_l6KpMI,107
|
|
101
|
-
pixeltable/metadata/converters/convert_13.py,sha256=FEgOH5PKf05xVoCaioDDDHOSuoWPyBzodojmsSMMZ5U,1366
|
|
102
|
-
pixeltable/metadata/converters/convert_14.py,sha256=UAWHEipZ-NrQtI5zZN1u9C5AD24ZpYXsdpC3Te0t-qE,402
|
|
103
|
-
pixeltable/metadata/schema.py,sha256=ZYBbt_jESRrX7BAx35xKY1CpIgRuJnd2LJYo4MrPnn0,8399
|
|
104
|
-
pixeltable/plan.py,sha256=A_kPsX3bjLyfYbeQ6eCgDbrb_Oldk4w8HdFRqRSDpPY,32653
|
|
105
|
-
pixeltable/store.py,sha256=foQe9y8rRbl35f3naL7rbYVrD8LO00cmD53vWP2A9XI,18850
|
|
106
|
-
pixeltable/tool/create_test_db_dump.py,sha256=17MdBqsSNj7j61w0Re9pS4aDIEdML_4hnE-uZJcEW4I,7537
|
|
107
|
-
pixeltable/tool/create_test_video.py,sha256=OLfccymYReIpzE8osZn4rQvLXxxiPC_l0vc06U74hVM,2899
|
|
108
|
-
pixeltable/type_system.py,sha256=nljZs4O_dsVFMs4aB3z7Szc9LgFtl5eOuloxJkk7tPE,29503
|
|
109
|
-
pixeltable/utils/__init__.py,sha256=UYlrf6TIWJT0g-Hac0b34-dEk478B5Qx8dGco34YlIk,439
|
|
110
|
-
pixeltable/utils/arrow.py,sha256=83_7aG5UR2qtTktw_otLkQs-RQbLk0VVM0JLJkbweNU,3692
|
|
111
|
-
pixeltable/utils/coco.py,sha256=ISpFBhR4eO1jOcg_SPb0thVI4KdS6H0RyNQauZIA5A4,7287
|
|
112
|
-
pixeltable/utils/documents.py,sha256=Q7e5U2Hk0go83MdKzD_MIiMscwbcFsLMgRw2IU_vQF4,2213
|
|
113
|
-
pixeltable/utils/filecache.py,sha256=UoNONG2VaAc2IBB0e3sQdsvyOPOes2XSDc5_CsA4qek,7839
|
|
114
|
-
pixeltable/utils/help.py,sha256=cCnxJ4VP9MJ57iDqExmnDcM-JG3a1lw_q7g-D7bpSVI,252
|
|
115
|
-
pixeltable/utils/http_server.py,sha256=WQ5ILMzlz4TlwI9j5YqAPgEZyhrN1GytMNDbLD9occk,2422
|
|
116
|
-
pixeltable/utils/media_store.py,sha256=x71wnJDZDHcdd13VCfL4AkHQ6IJB41gNA-zBvXJwFos,3116
|
|
117
|
-
pixeltable/utils/pytorch.py,sha256=BR4tgfUWw-2rwWTOgzXj5qdMBpe1Arpp5SK4ax6jjpk,3483
|
|
118
|
-
pixeltable/utils/s3.py,sha256=rkanuhk9DWvSfmbOLQW1j1Iov4sl2KhxGGKN-AJ8LSE,432
|
|
119
|
-
pixeltable/utils/sql.py,sha256=5n5_OmXAGtqFdL6z5XvgnU-vlx6Ba6f1WJrO1ZwUle8,765
|
|
120
|
-
pixeltable/utils/transactional_directory.py,sha256=UGzCrGtLR3hEEf8sYGuWBzLVFAEQml3vdIavigWeTBM,1349
|
|
121
|
-
pixeltable-0.2.8.dist-info/LICENSE,sha256=0UNMmwuqWPC0xDY1NWMm4uNJ2_MyA1pnTNRgQTvuBiQ,746
|
|
122
|
-
pixeltable-0.2.8.dist-info/METADATA,sha256=VKFyaYflvsFwUgiC1Y2iukgPHGI4W9sQpnLmUCRdMiQ,9806
|
|
123
|
-
pixeltable-0.2.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
124
|
-
pixeltable-0.2.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|