datachain 0.30.2__py3-none-any.whl → 0.30.4__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 datachain might be problematic. Click here for more details.
- datachain/__init__.py +2 -0
- datachain/catalog/__init__.py +2 -0
- datachain/catalog/catalog.py +100 -31
- datachain/catalog/loader.py +4 -2
- datachain/cli/__init__.py +1 -0
- datachain/cli/commands/datasets.py +19 -12
- datachain/data_storage/metastore.py +34 -30
- datachain/data_storage/sqlite.py +0 -4
- datachain/delta.py +23 -12
- datachain/func/string.py +8 -0
- datachain/lib/dc/__init__.py +2 -1
- datachain/lib/dc/database.py +50 -6
- datachain/lib/dc/datachain.py +48 -20
- datachain/lib/dc/datasets.py +12 -7
- datachain/lib/dc/utils.py +5 -0
- datachain/lib/namespaces.py +3 -1
- datachain/lib/projects.py +3 -1
- datachain/lib/signal_schema.py +28 -17
- datachain/listing.py +5 -9
- datachain/model/ultralytics/bbox.py +14 -12
- datachain/model/ultralytics/pose.py +14 -12
- datachain/model/ultralytics/segment.py +14 -12
- datachain/query/dataset.py +42 -28
- datachain/query/schema.py +4 -0
- datachain/utils.py +7 -0
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/METADATA +2 -2
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/RECORD +31 -31
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/WHEEL +0 -0
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/entry_points.txt +0 -0
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/licenses/LICENSE +0 -0
- {datachain-0.30.2.dist-info → datachain-0.30.4.dist-info}/top_level.txt +0 -0
datachain/query/dataset.py
CHANGED
|
@@ -10,7 +10,6 @@ from abc import ABC, abstractmethod
|
|
|
10
10
|
from collections.abc import Generator, Iterable, Iterator, Sequence
|
|
11
11
|
from copy import copy
|
|
12
12
|
from functools import wraps
|
|
13
|
-
from secrets import token_hex
|
|
14
13
|
from types import GeneratorType
|
|
15
14
|
from typing import (
|
|
16
15
|
TYPE_CHECKING,
|
|
@@ -29,7 +28,7 @@ from attrs import frozen
|
|
|
29
28
|
from fsspec.callbacks import DEFAULT_CALLBACK, Callback, TqdmCallback
|
|
30
29
|
from sqlalchemy import Column
|
|
31
30
|
from sqlalchemy.sql import func as f
|
|
32
|
-
from sqlalchemy.sql.elements import ColumnClause, ColumnElement
|
|
31
|
+
from sqlalchemy.sql.elements import ColumnClause, ColumnElement, Label
|
|
33
32
|
from sqlalchemy.sql.expression import label
|
|
34
33
|
from sqlalchemy.sql.schema import TableClause
|
|
35
34
|
from sqlalchemy.sql.selectable import Select
|
|
@@ -46,6 +45,7 @@ from datachain.dataset import DatasetDependency, DatasetStatus, RowDict
|
|
|
46
45
|
from datachain.error import DatasetNotFoundError, QueryScriptCancelError
|
|
47
46
|
from datachain.func.base import Function
|
|
48
47
|
from datachain.lib.listing import is_listing_dataset, listing_dataset_expired
|
|
48
|
+
from datachain.lib.signal_schema import SignalSchema
|
|
49
49
|
from datachain.lib.udf import UDFAdapter, _get_cache
|
|
50
50
|
from datachain.progress import CombinedDownloadCallback, TqdmCombinedDownloadCallback
|
|
51
51
|
from datachain.project import Project
|
|
@@ -795,28 +795,32 @@ class SQLSelectExcept(SQLClause):
|
|
|
795
795
|
|
|
796
796
|
@frozen
|
|
797
797
|
class SQLMutate(SQLClause):
|
|
798
|
-
args: tuple[
|
|
798
|
+
args: tuple[Label, ...]
|
|
799
|
+
new_schema: SignalSchema
|
|
799
800
|
|
|
800
801
|
def apply_sql_clause(self, query: Select) -> Select:
|
|
801
802
|
original_subquery = query.subquery()
|
|
802
|
-
|
|
803
|
-
original_subquery.c[str(c)] if isinstance(c, (str, C)) else c
|
|
804
|
-
for c in self.parse_cols(self.args)
|
|
805
|
-
]
|
|
806
|
-
to_mutate = {c.name for c in args}
|
|
803
|
+
to_mutate = {c.name for c in self.args}
|
|
807
804
|
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
805
|
+
# Drop the original versions to avoid name collisions, exclude renamed
|
|
806
|
+
# columns. Always keep system columns (sys__*) if they exist in original query
|
|
807
|
+
new_schema_columns = set(self.new_schema.db_signals())
|
|
808
|
+
base_cols = [
|
|
809
|
+
c
|
|
811
810
|
for c in original_subquery.c
|
|
811
|
+
if c.name not in to_mutate
|
|
812
|
+
and (c.name in new_schema_columns or c.name.startswith("sys__"))
|
|
812
813
|
]
|
|
813
|
-
|
|
814
|
-
#
|
|
815
|
-
|
|
816
|
-
|
|
814
|
+
|
|
815
|
+
# Create intermediate subquery to properly handle window functions
|
|
816
|
+
intermediate_query = sqlalchemy.select(*base_cols, *self.args).select_from(
|
|
817
|
+
original_subquery
|
|
817
818
|
)
|
|
819
|
+
intermediate_subquery = intermediate_query.subquery()
|
|
818
820
|
|
|
819
|
-
return sqlalchemy.select(*
|
|
821
|
+
return sqlalchemy.select(*intermediate_subquery.c).select_from(
|
|
822
|
+
intermediate_subquery
|
|
823
|
+
)
|
|
820
824
|
|
|
821
825
|
|
|
822
826
|
@frozen
|
|
@@ -1470,7 +1474,7 @@ class DatasetQuery:
|
|
|
1470
1474
|
return query
|
|
1471
1475
|
|
|
1472
1476
|
@detach
|
|
1473
|
-
def mutate(self, *args, **kwargs) -> "Self":
|
|
1477
|
+
def mutate(self, *args, new_schema, **kwargs) -> "Self":
|
|
1474
1478
|
"""
|
|
1475
1479
|
Add new columns to this query.
|
|
1476
1480
|
|
|
@@ -1482,7 +1486,7 @@ class DatasetQuery:
|
|
|
1482
1486
|
"""
|
|
1483
1487
|
query_args = [v.label(k) for k, v in dict(args, **kwargs).items()]
|
|
1484
1488
|
query = self.clone()
|
|
1485
|
-
query.steps.append(SQLMutate((*query_args,)))
|
|
1489
|
+
query.steps.append(SQLMutate((*query_args,), new_schema))
|
|
1486
1490
|
return query
|
|
1487
1491
|
|
|
1488
1492
|
@detach
|
|
@@ -1703,16 +1707,18 @@ class DatasetQuery:
|
|
|
1703
1707
|
for dep in self.catalog.get_dataset_dependencies(
|
|
1704
1708
|
dep_dataset.name,
|
|
1705
1709
|
dep_dataset_version,
|
|
1706
|
-
dep_dataset.project,
|
|
1710
|
+
namespace_name=dep_dataset.project.namespace.name,
|
|
1711
|
+
project_name=dep_dataset.project.name,
|
|
1707
1712
|
indirect=False,
|
|
1708
1713
|
):
|
|
1709
1714
|
if dep:
|
|
1710
|
-
dep_project = self.catalog.metastore.get_project(
|
|
1711
|
-
dep.project, dep.namespace
|
|
1712
|
-
)
|
|
1713
1715
|
dependencies.add(
|
|
1714
1716
|
(
|
|
1715
|
-
self.catalog.get_dataset(
|
|
1717
|
+
self.catalog.get_dataset(
|
|
1718
|
+
dep.name,
|
|
1719
|
+
namespace_name=dep.namespace,
|
|
1720
|
+
project_name=dep.project,
|
|
1721
|
+
),
|
|
1716
1722
|
dep.version,
|
|
1717
1723
|
)
|
|
1718
1724
|
)
|
|
@@ -1754,7 +1760,11 @@ class DatasetQuery:
|
|
|
1754
1760
|
if (
|
|
1755
1761
|
name
|
|
1756
1762
|
and version
|
|
1757
|
-
and self.catalog.get_dataset(
|
|
1763
|
+
and self.catalog.get_dataset(
|
|
1764
|
+
name,
|
|
1765
|
+
namespace_name=project.namespace.name,
|
|
1766
|
+
project_name=project.name,
|
|
1767
|
+
).has_version(version)
|
|
1758
1768
|
):
|
|
1759
1769
|
raise RuntimeError(f"Dataset {name} already has version {version}")
|
|
1760
1770
|
except DatasetNotFoundError:
|
|
@@ -1808,11 +1818,15 @@ class DatasetQuery:
|
|
|
1808
1818
|
# overriding dependencies
|
|
1809
1819
|
self.dependencies = set()
|
|
1810
1820
|
for dep in dependencies:
|
|
1811
|
-
dep_project = self.catalog.metastore.get_project(
|
|
1812
|
-
dep.project, dep.namespace
|
|
1813
|
-
)
|
|
1814
1821
|
self.dependencies.add(
|
|
1815
|
-
(
|
|
1822
|
+
(
|
|
1823
|
+
self.catalog.get_dataset(
|
|
1824
|
+
dep.name,
|
|
1825
|
+
namespace_name=dep.namespace,
|
|
1826
|
+
project_name=dep.project,
|
|
1827
|
+
),
|
|
1828
|
+
dep.version,
|
|
1829
|
+
)
|
|
1816
1830
|
)
|
|
1817
1831
|
|
|
1818
1832
|
self._add_dependencies(dataset, version) # type: ignore [arg-type]
|
datachain/query/schema.py
CHANGED
|
@@ -36,6 +36,10 @@ class ColumnMeta(type):
|
|
|
36
36
|
def __getattr__(cls, name: str):
|
|
37
37
|
return cls(ColumnMeta.to_db_name(name))
|
|
38
38
|
|
|
39
|
+
@staticmethod
|
|
40
|
+
def is_nested(name: str) -> bool:
|
|
41
|
+
return DEFAULT_DELIMITER in name
|
|
42
|
+
|
|
39
43
|
|
|
40
44
|
class Column(sa.ColumnClause, metaclass=ColumnMeta):
|
|
41
45
|
inherit_cache: Optional[bool] = True
|
datachain/utils.py
CHANGED
|
@@ -531,3 +531,10 @@ def safe_closing(thing: T) -> Iterator[T]:
|
|
|
531
531
|
finally:
|
|
532
532
|
if hasattr(thing, "close"):
|
|
533
533
|
thing.close()
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
def getenv_bool(name: str, default: bool = False) -> bool:
|
|
537
|
+
val = os.getenv(name)
|
|
538
|
+
if val is None:
|
|
539
|
+
return default
|
|
540
|
+
return val.lower() in ("1", "true", "yes", "on")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datachain
|
|
3
|
-
Version: 0.30.
|
|
3
|
+
Version: 0.30.4
|
|
4
4
|
Summary: Wrangle unstructured AI data at scale
|
|
5
5
|
Author-email: Dmitry Petrov <support@dvc.org>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -45,7 +45,7 @@ Requires-Dist: datamodel-code-generator>=0.25
|
|
|
45
45
|
Requires-Dist: Pillow<12,>=10.0.0
|
|
46
46
|
Requires-Dist: msgpack<2,>=1.0.4
|
|
47
47
|
Requires-Dist: psutil
|
|
48
|
-
Requires-Dist: huggingface_hub
|
|
48
|
+
Requires-Dist: huggingface_hub
|
|
49
49
|
Requires-Dist: iterative-telemetry>=0.0.10
|
|
50
50
|
Requires-Dist: platformdirs
|
|
51
51
|
Requires-Dist: dvc-studio-client<1,>=0.21
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
datachain/__init__.py,sha256=
|
|
1
|
+
datachain/__init__.py,sha256=Ze-u6SSNsTFBRFw0lVPCdoP0kt8ybKxJIhO8jfC22Cw,1744
|
|
2
2
|
datachain/__main__.py,sha256=hG3Y4ARGEqe1AWwNMd259rBlqtphx1Wk39YbueQ0yV8,91
|
|
3
3
|
datachain/asyn.py,sha256=RH_jFwJcTXxhEFomaI9yL6S3Onau6NZ6FSKfKFGtrJE,9689
|
|
4
4
|
datachain/cache.py,sha256=ESVRaCJXEThMIfGEFVHx6wJPOZA7FYk9V6WxjyuqUBY,3626
|
|
5
5
|
datachain/config.py,sha256=g8qbNV0vW2VEKpX-dGZ9pAn0DAz6G2ZFcr7SAV3PoSM,4272
|
|
6
6
|
datachain/dataset.py,sha256=ATGa-CBTFoZeTN2V40-zHEzfMBcdYK0WuoJ6H2yEAvo,25268
|
|
7
|
-
datachain/delta.py,sha256=
|
|
7
|
+
datachain/delta.py,sha256=dghGvD44LcglvL5-kUOIKk75ywBO0U7eikA3twKZC28,10202
|
|
8
8
|
datachain/error.py,sha256=OWwWMkzZYJrkcoEDGhJHMf7SfKvxcsOLRF94mjPf29I,1609
|
|
9
9
|
datachain/job.py,sha256=x5PB6d5sqx00hePNNkirESlOVAvnmkEM5ygUgQmAhsk,1262
|
|
10
|
-
datachain/listing.py,sha256=
|
|
10
|
+
datachain/listing.py,sha256=aqayl5St3D9PwdwM6nR1STkpLSw-S3U8pudO9PWi3N8,7241
|
|
11
11
|
datachain/namespace.py,sha256=MozcXYxedIbamzY56YKy9r9fgSpOm2VryhWfIf6stYk,1791
|
|
12
12
|
datachain/node.py,sha256=KWDT0ClYXB7FYI-QOvzAa-UDkLJErUI2eWm5FBteYuU,5577
|
|
13
13
|
datachain/nodes_fetcher.py,sha256=_wgaKyqEjkqdwJ_Hj6D8vUYz7hnU7g6xhm0H6ZnYxmE,1095
|
|
@@ -19,15 +19,15 @@ datachain/script_meta.py,sha256=V-LaFOZG84pD0Zc0NvejYdzwDgzITv6yHvAHggDCnuY,4978
|
|
|
19
19
|
datachain/semver.py,sha256=UB8GHPBtAP3UJGeiuJoInD7SK-DnB93_Xd1qy_CQ9cU,2074
|
|
20
20
|
datachain/studio.py,sha256=27750qCSNxIChEzhV02damIFreLMfr7UdiWqMFyk8AA,15361
|
|
21
21
|
datachain/telemetry.py,sha256=0A4IOPPp9VlP5pyW9eBfaTK3YhHGzHl7dQudQjUAx9A,994
|
|
22
|
-
datachain/utils.py,sha256=
|
|
23
|
-
datachain/catalog/__init__.py,sha256=
|
|
24
|
-
datachain/catalog/catalog.py,sha256=
|
|
22
|
+
datachain/utils.py,sha256=Md1iu-ehIo5X72ampXzvxWOBEx6Y3CtzzD2iLDQL3Vs,15634
|
|
23
|
+
datachain/catalog/__init__.py,sha256=9NBaywvAOaXdkyqiHjbBEiXs7JImR1OJsY9r8D5Q16g,403
|
|
24
|
+
datachain/catalog/catalog.py,sha256=a1AN6eDHWWzII1wi46T_1JvTsW1AeMudwR_6sVQ4f7I,67588
|
|
25
25
|
datachain/catalog/datasource.py,sha256=IkGMh0Ttg6Q-9DWfU_H05WUnZepbGa28HYleECi6K7I,1353
|
|
26
|
-
datachain/catalog/loader.py,sha256=
|
|
27
|
-
datachain/cli/__init__.py,sha256=
|
|
26
|
+
datachain/catalog/loader.py,sha256=53VnuSRkt_CO9RdlHWkzQsPF55qMxcXvEm3ecsZREw8,6150
|
|
27
|
+
datachain/cli/__init__.py,sha256=so3WxEQF03KdGvjav15Sw7a6-lriiE24uDSGbBDBp8o,8298
|
|
28
28
|
datachain/cli/utils.py,sha256=wrLnAh7Wx8O_ojZE8AE4Lxn5WoxHbOj7as8NWlLAA74,3036
|
|
29
29
|
datachain/cli/commands/__init__.py,sha256=zp3bYIioO60x_X04A4-IpZqSYVnpwOa1AdERQaRlIhI,493
|
|
30
|
-
datachain/cli/commands/datasets.py,sha256=
|
|
30
|
+
datachain/cli/commands/datasets.py,sha256=Q2zYbiWXYPjg6e_YHyUKaYRg1L6-lxv0L214bogwsUY,6565
|
|
31
31
|
datachain/cli/commands/du.py,sha256=9edEzDEs98K2VYk8Wf-ZMpUzALcgm9uD6YtoqbvtUGU,391
|
|
32
32
|
datachain/cli/commands/index.py,sha256=eglNaIe1yyIadUHHumjtNbgIjht6kme7SS7xE3YHR88,198
|
|
33
33
|
datachain/cli/commands/ls.py,sha256=CBmk838Q-EQp04lE2Qdnpsc1GXAkC4-I-b-a_828n1E,5272
|
|
@@ -49,10 +49,10 @@ datachain/client/s3.py,sha256=6DNVGLg-woPS1DVlYVX2rIlunNblsuxyOnI1rSzhW3k,7515
|
|
|
49
49
|
datachain/data_storage/__init__.py,sha256=9Wit-oe5P46V7CJQTD0BJ5MhOa2Y9h3ddJ4VWTe-Lec,273
|
|
50
50
|
datachain/data_storage/db_engine.py,sha256=n8ojCbvVMPY2e3SG8fUaaD0b9GkVfpl_Naa_6EiHfWg,3788
|
|
51
51
|
datachain/data_storage/job.py,sha256=ZkeXCNUj_VCkoKYx29hqB4AcfVUielnRjY-GYUcUxt4,426
|
|
52
|
-
datachain/data_storage/metastore.py,sha256=
|
|
52
|
+
datachain/data_storage/metastore.py,sha256=aSeTRh43hmrOhULi9YD2VlgCj8B4bjE3jqCOvnb_HQs,53851
|
|
53
53
|
datachain/data_storage/schema.py,sha256=o3JbURKXRg3IJyIVA4QjHHkn6byRuz7avbydU2FlvNY,9897
|
|
54
54
|
datachain/data_storage/serializer.py,sha256=6G2YtOFqqDzJf1KbvZraKGXl2XHZyVml2krunWUum5o,927
|
|
55
|
-
datachain/data_storage/sqlite.py,sha256=
|
|
55
|
+
datachain/data_storage/sqlite.py,sha256=edcTegzEoAEdEp62Rg9oERvHWXDcpg8d4onrD-P2xKM,30159
|
|
56
56
|
datachain/data_storage/warehouse.py,sha256=66PETLzfkgSmj-EF604m62xmFMQBXaRZSw8sdKGMam8,32613
|
|
57
57
|
datachain/diff/__init__.py,sha256=-OFZzgOplqO84iWgGY7kfe60NXaWR9JRIh9T-uJboAM,9668
|
|
58
58
|
datachain/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -67,7 +67,7 @@ datachain/func/func.py,sha256=fpslnn4edr0dH3mD8BSTndRFJiiVZvbJoBJV6HkHMqw,17400
|
|
|
67
67
|
datachain/func/numeric.py,sha256=J6FgzuIAcS6B02Cm1qPnJdB6ut21jyBDVXSBrkZNZaQ,6978
|
|
68
68
|
datachain/func/path.py,sha256=9Jas35QhEtRai4l54hMqVvuJsqxHvOx88oo4vym1H_I,4077
|
|
69
69
|
datachain/func/random.py,sha256=t7jwXsI8-hy0qAdvjAntgzy-AHtTAfozlZ1CpKR-QZE,458
|
|
70
|
-
datachain/func/string.py,sha256=
|
|
70
|
+
datachain/func/string.py,sha256=6-fZM7wHv0JZ2ZzpLFPLLYW15K_CT5VfYsmx56zBrpA,7419
|
|
71
71
|
datachain/func/window.py,sha256=ImyRpc1QI8QUSPO7KdD60e_DPVo7Ja0G5kcm6BlyMcw,1584
|
|
72
72
|
datachain/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
datachain/lib/arrow.py,sha256=geoLvyDd5uMqS3D9Ec1ODlShCUAdtwHUwl8FqbUX_hg,10776
|
|
@@ -82,11 +82,11 @@ datachain/lib/listing.py,sha256=U-2stsTEwEsq4Y80dqGfktGzkmB5-ZntnL1_rzXlH0k,7089
|
|
|
82
82
|
datachain/lib/listing_info.py,sha256=9ua40Hw0aiQByUw3oAEeNzMavJYfW0Uhe8YdCTK-m_g,1110
|
|
83
83
|
datachain/lib/meta_formats.py,sha256=zdyg6XLk3QIsSk3I7s0Ez5kaCJSlE3uq7JiGxf7UwtU,6348
|
|
84
84
|
datachain/lib/model_store.py,sha256=dkL2rcT5ag-kbgkhQPL_byEs-TCYr29qvdltroL5NxM,2734
|
|
85
|
-
datachain/lib/namespaces.py,sha256=
|
|
86
|
-
datachain/lib/projects.py,sha256=
|
|
85
|
+
datachain/lib/namespaces.py,sha256=I6gLC4ZzgyatFtHL85MWR4ml7-yuQOzxHE7IQNbt_ac,2107
|
|
86
|
+
datachain/lib/projects.py,sha256=VJgmzHzKjmNPZD1tm0a1RNHmUQwn6WLWCLpKyc4UrSk,2605
|
|
87
87
|
datachain/lib/pytorch.py,sha256=S-st2SAczYut13KMf6eSqP_OQ8otWI5TRmzhK5fN3k0,7828
|
|
88
88
|
datachain/lib/settings.py,sha256=n0YYhCVdgCdMkCSLY7kscJF9mUhlQ0a4ENWBsJFynkw,3809
|
|
89
|
-
datachain/lib/signal_schema.py,sha256=
|
|
89
|
+
datachain/lib/signal_schema.py,sha256=YMMcc9gHIzBz88zfsreGa1nOoO_56HBtZlT6jf3V1WE,39224
|
|
90
90
|
datachain/lib/tar.py,sha256=MLcVjzIgBqRuJacCNpZ6kwSZNq1i2tLyROc8PVprHsA,999
|
|
91
91
|
datachain/lib/text.py,sha256=UNHm8fhidk7wdrWqacEWaA6I9ykfYqarQ2URby7jc7M,1261
|
|
92
92
|
datachain/lib/udf.py,sha256=IB1IKF5KyA-NiyfhVzmBPpF_aITPS3zSlrt24f_Ofjo,17956
|
|
@@ -101,11 +101,11 @@ datachain/lib/convert/python_to_sql.py,sha256=wg-O5FRKX3x3Wh8ZL1b9ntMlgf1zRO4djM
|
|
|
101
101
|
datachain/lib/convert/sql_to_python.py,sha256=Gxc4FylWC_Pvvuawuc2MKZIiuAWI7wje8pyeN1MxRrU,670
|
|
102
102
|
datachain/lib/convert/unflatten.py,sha256=ysMkstwJzPMWUlnxn-Z-tXJR3wmhjHeSN_P-sDcLS6s,2010
|
|
103
103
|
datachain/lib/convert/values_to_tuples.py,sha256=j5yZMrVUH6W7b-7yUvdCTGI7JCUAYUOzHUGPoyZXAB0,4360
|
|
104
|
-
datachain/lib/dc/__init__.py,sha256=
|
|
104
|
+
datachain/lib/dc/__init__.py,sha256=UrUzmDH6YyVl8fxM5iXTSFtl5DZTUzEYm1MaazK4vdQ,900
|
|
105
105
|
datachain/lib/dc/csv.py,sha256=q6a9BpapGwP6nwy6c5cklxQumep2fUp9l2LAjtTJr6s,4411
|
|
106
|
-
datachain/lib/dc/database.py,sha256=
|
|
107
|
-
datachain/lib/dc/datachain.py,sha256=
|
|
108
|
-
datachain/lib/dc/datasets.py,sha256=
|
|
106
|
+
datachain/lib/dc/database.py,sha256=F6EOjPKwSdp26kJsOKGq49D9OxqyKEalINHEwLQav2s,14716
|
|
107
|
+
datachain/lib/dc/datachain.py,sha256=vHGrrFv1vhXadp0JExfrFMioH858Yc00hGbZkCpOdLE,99324
|
|
108
|
+
datachain/lib/dc/datasets.py,sha256=HKQXnCpIGFsYQ9ociLAUm8cwg2H0GaUmgWCF4FkKpbk,15180
|
|
109
109
|
datachain/lib/dc/hf.py,sha256=AP_MUHg6HJWae10PN9hD_beQVjrl0cleZ6Cvhtl1yoI,2901
|
|
110
110
|
datachain/lib/dc/json.py,sha256=dNijfJ-H92vU3soyR7X1IiDrWhm6yZIGG3bSnZkPdAE,2733
|
|
111
111
|
datachain/lib/dc/listings.py,sha256=V379Cb-7ZyquM0w7sWArQZkzInZy4GB7QQ1ZfowKzQY,4544
|
|
@@ -113,7 +113,7 @@ datachain/lib/dc/pandas.py,sha256=ObueUXDUFKJGu380GmazdG02ARpKAHPhSaymfmOH13E,14
|
|
|
113
113
|
datachain/lib/dc/parquet.py,sha256=zYcSgrWwyEDW9UxGUSVdIVsCu15IGEf0xL8KfWQqK94,1782
|
|
114
114
|
datachain/lib/dc/records.py,sha256=4N1Fq-j5r4GK-PR5jIO-9B2u_zTNX9l-6SmcRhQDAsw,3136
|
|
115
115
|
datachain/lib/dc/storage.py,sha256=FXroEdxOZfbuEBIWfWTkbGwrI0D4_mrLZSRsIQm0WFE,7693
|
|
116
|
-
datachain/lib/dc/utils.py,sha256=
|
|
116
|
+
datachain/lib/dc/utils.py,sha256=9OMiFu2kXIbtMqzJTEr1qbCoCBGpOmTnkWImVgFTKgo,4112
|
|
117
117
|
datachain/lib/dc/values.py,sha256=7l1n352xWrEdql2NhBcZ3hj8xyPglWiY4qHjFPjn6iw,1428
|
|
118
118
|
datachain/model/__init__.py,sha256=R9faX5OHV1xh2EW-g2MPedwbtEqt3LodJRyluB-QylI,189
|
|
119
119
|
datachain/model/bbox.py,sha256=cQNHuQuVsh6bW3n3Hj40F2Cc20cExQ9Lg_q7R2jxUMI,9324
|
|
@@ -121,17 +121,17 @@ datachain/model/pose.py,sha256=rjquA6M-I-Y30Xm6YSkGv1OY52hJZmR2AuxbIpE5uD0,3865
|
|
|
121
121
|
datachain/model/segment.py,sha256=NhcEYB_KVa0aLQYiZ4jEwkylH9QBLd8fZhmg6PVnx1Y,1967
|
|
122
122
|
datachain/model/utils.py,sha256=5elwCKleOO6CZM0IuWjFykPekrhc5m7V4jSIOcgGMms,6733
|
|
123
123
|
datachain/model/ultralytics/__init__.py,sha256=EvcNX9qUyxKXXlKCPpsXeRrabyXk5E9EkN-tyiYkfS4,750
|
|
124
|
-
datachain/model/ultralytics/bbox.py,sha256=
|
|
125
|
-
datachain/model/ultralytics/pose.py,sha256=
|
|
126
|
-
datachain/model/ultralytics/segment.py,sha256=
|
|
124
|
+
datachain/model/ultralytics/bbox.py,sha256=C-aDiBhVa_ML2oERWvksRkyMU1XuYSpb6eItHB5q0qc,4764
|
|
125
|
+
datachain/model/ultralytics/pose.py,sha256=pvoXrWWUSWT_UBaMwUb5MBHAY57Co2HFDPigFYNZWUA,3392
|
|
126
|
+
datachain/model/ultralytics/segment.py,sha256=v9_xDxd5zw_I8rXsbl7yQXgEdTs2T38zyY_Y4XGN8ok,3194
|
|
127
127
|
datachain/query/__init__.py,sha256=7DhEIjAA8uZJfejruAVMZVcGFmvUpffuZJwgRqNwe-c,263
|
|
128
128
|
datachain/query/batch.py,sha256=-goxLpE0EUvaDHu66rstj53UnfHpYfBUGux8GSpJ93k,4306
|
|
129
|
-
datachain/query/dataset.py,sha256=
|
|
129
|
+
datachain/query/dataset.py,sha256=OaGRBNSWYNaRbYn6avij0fiFN5DT-nwdM-wJ4yTfaYs,63317
|
|
130
130
|
datachain/query/dispatch.py,sha256=A0nPxn6mEN5d9dDo6S8m16Ji_9IvJLXrgF2kqXdi4fs,15546
|
|
131
131
|
datachain/query/metrics.py,sha256=DOK5HdNVaRugYPjl8qnBONvTkwjMloLqAr7Mi3TjCO0,858
|
|
132
132
|
datachain/query/params.py,sha256=O_j89mjYRLOwWNhYZl-z7mi-rkdP7WyFmaDufsdTryE,863
|
|
133
133
|
datachain/query/queue.py,sha256=v0UeK4ilmdiRoJ5OdjB5qpnHTYDxRP4vhVp5Iw_toaI,3512
|
|
134
|
-
datachain/query/schema.py,sha256=
|
|
134
|
+
datachain/query/schema.py,sha256=qLpEyvnzKlNCOrThQiTNpUKTUEsVIHT9trt-0UMt6ko,6704
|
|
135
135
|
datachain/query/session.py,sha256=gKblltJAVQAVSTswAgWGDgGbpmFlFzFVkIQojDCjgXM,6809
|
|
136
136
|
datachain/query/udf.py,sha256=e753bDJzTNjGFQn1WGTvOAWSwjDbrFI1-_DDWkWN2ls,1343
|
|
137
137
|
datachain/query/utils.py,sha256=a2PTBZ3qsG6XlUcp9XsoGiQfKkca4Q3m-VzFgiGQPAc,1230
|
|
@@ -160,9 +160,9 @@ datachain/sql/sqlite/vector.py,sha256=ncW4eu2FlJhrP_CIpsvtkUabZlQdl2D5Lgwy_cbfqR
|
|
|
160
160
|
datachain/toolkit/__init__.py,sha256=eQ58Q5Yf_Fgv1ZG0IO5dpB4jmP90rk8YxUWmPc1M2Bo,68
|
|
161
161
|
datachain/toolkit/split.py,sha256=ktGWzY4kyzjWyR86dhvzw-Zhl0lVk_LOX3NciTac6qo,2914
|
|
162
162
|
datachain/torch/__init__.py,sha256=gIS74PoEPy4TB3X6vx9nLO0Y3sLJzsA8ckn8pRWihJM,579
|
|
163
|
-
datachain-0.30.
|
|
164
|
-
datachain-0.30.
|
|
165
|
-
datachain-0.30.
|
|
166
|
-
datachain-0.30.
|
|
167
|
-
datachain-0.30.
|
|
168
|
-
datachain-0.30.
|
|
163
|
+
datachain-0.30.4.dist-info/licenses/LICENSE,sha256=8DnqK5yoPI_E50bEg_zsHKZHY2HqPy4rYN338BHQaRA,11344
|
|
164
|
+
datachain-0.30.4.dist-info/METADATA,sha256=HLbefq934ZEwQ2A7JVkUEqNy_y0_YxGVTu0iRrV1pOo,13903
|
|
165
|
+
datachain-0.30.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
166
|
+
datachain-0.30.4.dist-info/entry_points.txt,sha256=0GMJS6B_KWq0m3VT98vQI2YZodAMkn4uReZ_okga9R4,49
|
|
167
|
+
datachain-0.30.4.dist-info/top_level.txt,sha256=lZPpdU_2jJABLNIg2kvEOBi8PtsYikbN1OdMLHk8bTg,10
|
|
168
|
+
datachain-0.30.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|