dtlpy 1.113.10__py3-none-any.whl → 1.114.13__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.
- dtlpy/__init__.py +488 -488
- dtlpy/__version__.py +1 -1
- dtlpy/assets/__init__.py +26 -26
- dtlpy/assets/__pycache__/__init__.cpython-38.pyc +0 -0
- dtlpy/assets/code_server/config.yaml +2 -2
- dtlpy/assets/code_server/installation.sh +24 -24
- dtlpy/assets/code_server/launch.json +13 -13
- dtlpy/assets/code_server/settings.json +2 -2
- dtlpy/assets/main.py +53 -53
- dtlpy/assets/main_partial.py +18 -18
- dtlpy/assets/mock.json +11 -11
- dtlpy/assets/model_adapter.py +83 -83
- dtlpy/assets/package.json +61 -61
- dtlpy/assets/package_catalog.json +29 -29
- dtlpy/assets/package_gitignore +307 -307
- dtlpy/assets/service_runners/__init__.py +33 -33
- dtlpy/assets/service_runners/converter.py +96 -96
- dtlpy/assets/service_runners/multi_method.py +49 -49
- dtlpy/assets/service_runners/multi_method_annotation.py +54 -54
- dtlpy/assets/service_runners/multi_method_dataset.py +55 -55
- dtlpy/assets/service_runners/multi_method_item.py +52 -52
- dtlpy/assets/service_runners/multi_method_json.py +52 -52
- dtlpy/assets/service_runners/single_method.py +37 -37
- dtlpy/assets/service_runners/single_method_annotation.py +43 -43
- dtlpy/assets/service_runners/single_method_dataset.py +43 -43
- dtlpy/assets/service_runners/single_method_item.py +41 -41
- dtlpy/assets/service_runners/single_method_json.py +42 -42
- dtlpy/assets/service_runners/single_method_multi_input.py +45 -45
- dtlpy/assets/voc_annotation_template.xml +23 -23
- dtlpy/caches/base_cache.py +32 -32
- dtlpy/caches/cache.py +473 -473
- dtlpy/caches/dl_cache.py +201 -201
- dtlpy/caches/filesystem_cache.py +89 -89
- dtlpy/caches/redis_cache.py +84 -84
- dtlpy/dlp/__init__.py +20 -20
- dtlpy/dlp/cli_utilities.py +367 -367
- dtlpy/dlp/command_executor.py +764 -764
- dtlpy/dlp/dlp +1 -1
- dtlpy/dlp/dlp.bat +1 -1
- dtlpy/dlp/dlp.py +128 -128
- dtlpy/dlp/parser.py +651 -651
- dtlpy/entities/__init__.py +83 -83
- dtlpy/entities/analytic.py +311 -311
- dtlpy/entities/annotation.py +1879 -1879
- dtlpy/entities/annotation_collection.py +699 -699
- dtlpy/entities/annotation_definitions/__init__.py +20 -20
- dtlpy/entities/annotation_definitions/base_annotation_definition.py +100 -100
- dtlpy/entities/annotation_definitions/box.py +195 -195
- dtlpy/entities/annotation_definitions/classification.py +67 -67
- dtlpy/entities/annotation_definitions/comparison.py +72 -72
- dtlpy/entities/annotation_definitions/cube.py +204 -204
- dtlpy/entities/annotation_definitions/cube_3d.py +149 -149
- dtlpy/entities/annotation_definitions/description.py +32 -32
- dtlpy/entities/annotation_definitions/ellipse.py +124 -124
- dtlpy/entities/annotation_definitions/free_text.py +62 -62
- dtlpy/entities/annotation_definitions/gis.py +69 -69
- dtlpy/entities/annotation_definitions/note.py +139 -139
- dtlpy/entities/annotation_definitions/point.py +117 -117
- dtlpy/entities/annotation_definitions/polygon.py +182 -182
- dtlpy/entities/annotation_definitions/polyline.py +111 -111
- dtlpy/entities/annotation_definitions/pose.py +92 -92
- dtlpy/entities/annotation_definitions/ref_image.py +86 -86
- dtlpy/entities/annotation_definitions/segmentation.py +240 -240
- dtlpy/entities/annotation_definitions/subtitle.py +34 -34
- dtlpy/entities/annotation_definitions/text.py +85 -85
- dtlpy/entities/annotation_definitions/undefined_annotation.py +74 -74
- dtlpy/entities/app.py +220 -220
- dtlpy/entities/app_module.py +107 -107
- dtlpy/entities/artifact.py +174 -174
- dtlpy/entities/assignment.py +399 -399
- dtlpy/entities/base_entity.py +214 -214
- dtlpy/entities/bot.py +113 -113
- dtlpy/entities/codebase.py +296 -296
- dtlpy/entities/collection.py +38 -38
- dtlpy/entities/command.py +169 -169
- dtlpy/entities/compute.py +442 -442
- dtlpy/entities/dataset.py +1285 -1285
- dtlpy/entities/directory_tree.py +44 -44
- dtlpy/entities/dpk.py +470 -470
- dtlpy/entities/driver.py +222 -222
- dtlpy/entities/execution.py +397 -397
- dtlpy/entities/feature.py +124 -124
- dtlpy/entities/feature_set.py +145 -145
- dtlpy/entities/filters.py +641 -641
- dtlpy/entities/gis_item.py +107 -107
- dtlpy/entities/integration.py +184 -184
- dtlpy/entities/item.py +953 -953
- dtlpy/entities/label.py +123 -123
- dtlpy/entities/links.py +85 -85
- dtlpy/entities/message.py +175 -175
- dtlpy/entities/model.py +694 -691
- dtlpy/entities/node.py +1005 -1005
- dtlpy/entities/ontology.py +803 -803
- dtlpy/entities/organization.py +287 -287
- dtlpy/entities/package.py +657 -657
- dtlpy/entities/package_defaults.py +5 -5
- dtlpy/entities/package_function.py +185 -185
- dtlpy/entities/package_module.py +113 -113
- dtlpy/entities/package_slot.py +118 -118
- dtlpy/entities/paged_entities.py +290 -267
- dtlpy/entities/pipeline.py +593 -593
- dtlpy/entities/pipeline_execution.py +279 -279
- dtlpy/entities/project.py +394 -394
- dtlpy/entities/prompt_item.py +499 -499
- dtlpy/entities/recipe.py +301 -301
- dtlpy/entities/reflect_dict.py +102 -102
- dtlpy/entities/resource_execution.py +138 -138
- dtlpy/entities/service.py +958 -958
- dtlpy/entities/service_driver.py +117 -117
- dtlpy/entities/setting.py +294 -294
- dtlpy/entities/task.py +491 -491
- dtlpy/entities/time_series.py +143 -143
- dtlpy/entities/trigger.py +426 -426
- dtlpy/entities/user.py +118 -118
- dtlpy/entities/webhook.py +124 -124
- dtlpy/examples/__init__.py +19 -19
- dtlpy/examples/add_labels.py +135 -135
- dtlpy/examples/add_metadata_to_item.py +21 -21
- dtlpy/examples/annotate_items_using_model.py +65 -65
- dtlpy/examples/annotate_video_using_model_and_tracker.py +75 -75
- dtlpy/examples/annotations_convert_to_voc.py +9 -9
- dtlpy/examples/annotations_convert_to_yolo.py +9 -9
- dtlpy/examples/convert_annotation_types.py +51 -51
- dtlpy/examples/converter.py +143 -143
- dtlpy/examples/copy_annotations.py +22 -22
- dtlpy/examples/copy_folder.py +31 -31
- dtlpy/examples/create_annotations.py +51 -51
- dtlpy/examples/create_video_annotations.py +83 -83
- dtlpy/examples/delete_annotations.py +26 -26
- dtlpy/examples/filters.py +113 -113
- dtlpy/examples/move_item.py +23 -23
- dtlpy/examples/play_video_annotation.py +13 -13
- dtlpy/examples/show_item_and_mask.py +53 -53
- dtlpy/examples/triggers.py +49 -49
- dtlpy/examples/upload_batch_of_items.py +20 -20
- dtlpy/examples/upload_items_and_custom_format_annotations.py +55 -55
- dtlpy/examples/upload_items_with_modalities.py +43 -43
- dtlpy/examples/upload_segmentation_annotations_from_mask_image.py +44 -44
- dtlpy/examples/upload_yolo_format_annotations.py +70 -70
- dtlpy/exceptions.py +125 -125
- dtlpy/miscellaneous/__init__.py +20 -20
- dtlpy/miscellaneous/dict_differ.py +95 -95
- dtlpy/miscellaneous/git_utils.py +217 -217
- dtlpy/miscellaneous/json_utils.py +14 -14
- dtlpy/miscellaneous/list_print.py +105 -105
- dtlpy/miscellaneous/zipping.py +130 -130
- dtlpy/ml/__init__.py +20 -20
- dtlpy/ml/base_feature_extractor_adapter.py +27 -27
- dtlpy/ml/base_model_adapter.py +945 -940
- dtlpy/ml/metrics.py +461 -461
- dtlpy/ml/predictions_utils.py +274 -274
- dtlpy/ml/summary_writer.py +57 -57
- dtlpy/ml/train_utils.py +60 -60
- dtlpy/new_instance.py +252 -252
- dtlpy/repositories/__init__.py +56 -56
- dtlpy/repositories/analytics.py +85 -85
- dtlpy/repositories/annotations.py +916 -916
- dtlpy/repositories/apps.py +383 -383
- dtlpy/repositories/artifacts.py +452 -452
- dtlpy/repositories/assignments.py +599 -599
- dtlpy/repositories/bots.py +213 -213
- dtlpy/repositories/codebases.py +559 -559
- dtlpy/repositories/collections.py +332 -348
- dtlpy/repositories/commands.py +158 -158
- dtlpy/repositories/compositions.py +61 -61
- dtlpy/repositories/computes.py +434 -406
- dtlpy/repositories/datasets.py +1291 -1291
- dtlpy/repositories/downloader.py +895 -895
- dtlpy/repositories/dpks.py +433 -433
- dtlpy/repositories/drivers.py +266 -266
- dtlpy/repositories/executions.py +817 -817
- dtlpy/repositories/feature_sets.py +226 -226
- dtlpy/repositories/features.py +238 -238
- dtlpy/repositories/integrations.py +484 -484
- dtlpy/repositories/items.py +909 -915
- dtlpy/repositories/messages.py +94 -94
- dtlpy/repositories/models.py +877 -867
- dtlpy/repositories/nodes.py +80 -80
- dtlpy/repositories/ontologies.py +511 -511
- dtlpy/repositories/organizations.py +525 -525
- dtlpy/repositories/packages.py +1941 -1941
- dtlpy/repositories/pipeline_executions.py +448 -448
- dtlpy/repositories/pipelines.py +642 -642
- dtlpy/repositories/projects.py +539 -539
- dtlpy/repositories/recipes.py +399 -399
- dtlpy/repositories/resource_executions.py +137 -137
- dtlpy/repositories/schema.py +120 -120
- dtlpy/repositories/service_drivers.py +213 -213
- dtlpy/repositories/services.py +1704 -1704
- dtlpy/repositories/settings.py +339 -339
- dtlpy/repositories/tasks.py +1124 -1124
- dtlpy/repositories/times_series.py +278 -278
- dtlpy/repositories/triggers.py +536 -536
- dtlpy/repositories/upload_element.py +257 -257
- dtlpy/repositories/uploader.py +651 -651
- dtlpy/repositories/webhooks.py +249 -249
- dtlpy/services/__init__.py +22 -22
- dtlpy/services/aihttp_retry.py +131 -131
- dtlpy/services/api_client.py +1782 -1782
- dtlpy/services/api_reference.py +40 -40
- dtlpy/services/async_utils.py +133 -133
- dtlpy/services/calls_counter.py +44 -44
- dtlpy/services/check_sdk.py +68 -68
- dtlpy/services/cookie.py +115 -115
- dtlpy/services/create_logger.py +156 -156
- dtlpy/services/events.py +84 -84
- dtlpy/services/logins.py +235 -235
- dtlpy/services/reporter.py +256 -256
- dtlpy/services/service_defaults.py +91 -91
- dtlpy/utilities/__init__.py +20 -20
- dtlpy/utilities/annotations/__init__.py +16 -16
- dtlpy/utilities/annotations/annotation_converters.py +269 -269
- dtlpy/utilities/base_package_runner.py +264 -264
- dtlpy/utilities/converter.py +1650 -1650
- dtlpy/utilities/dataset_generators/__init__.py +1 -1
- dtlpy/utilities/dataset_generators/dataset_generator.py +670 -670
- dtlpy/utilities/dataset_generators/dataset_generator_tensorflow.py +23 -23
- dtlpy/utilities/dataset_generators/dataset_generator_torch.py +21 -21
- dtlpy/utilities/local_development/__init__.py +1 -1
- dtlpy/utilities/local_development/local_session.py +179 -179
- dtlpy/utilities/reports/__init__.py +2 -2
- dtlpy/utilities/reports/figures.py +343 -343
- dtlpy/utilities/reports/report.py +71 -71
- dtlpy/utilities/videos/__init__.py +17 -17
- dtlpy/utilities/videos/video_player.py +598 -598
- dtlpy/utilities/videos/videos.py +470 -470
- {dtlpy-1.113.10.data → dtlpy-1.114.13.data}/scripts/dlp +1 -1
- dtlpy-1.114.13.data/scripts/dlp.bat +2 -0
- {dtlpy-1.113.10.data → dtlpy-1.114.13.data}/scripts/dlp.py +128 -128
- {dtlpy-1.113.10.dist-info → dtlpy-1.114.13.dist-info}/LICENSE +200 -200
- {dtlpy-1.113.10.dist-info → dtlpy-1.114.13.dist-info}/METADATA +172 -172
- dtlpy-1.114.13.dist-info/RECORD +240 -0
- {dtlpy-1.113.10.dist-info → dtlpy-1.114.13.dist-info}/WHEEL +1 -1
- tests/features/environment.py +551 -550
- dtlpy-1.113.10.data/scripts/dlp.bat +0 -2
- dtlpy-1.113.10.dist-info/RECORD +0 -244
- tests/assets/__init__.py +0 -0
- tests/assets/models_flow/__init__.py +0 -0
- tests/assets/models_flow/failedmain.py +0 -52
- tests/assets/models_flow/main.py +0 -62
- tests/assets/models_flow/main_model.py +0 -54
- {dtlpy-1.113.10.dist-info → dtlpy-1.114.13.dist-info}/entry_points.txt +0 -0
- {dtlpy-1.113.10.dist-info → dtlpy-1.114.13.dist-info}/top_level.txt +0 -0
|
@@ -1,172 +1,172 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: dtlpy
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: SDK and CLI for Dataloop platform
|
|
5
|
-
Home-page: https://github.com/dataloop-ai/dtlpy
|
|
6
|
-
Author: Dataloop Team
|
|
7
|
-
Author-email: info@dataloop.ai
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Classifier: Programming Language :: Python
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Requires-Python: >=3.7
|
|
18
|
-
Description-Content-Type: text/markdown
|
|
19
|
-
License-File: LICENSE
|
|
20
|
-
Requires-Dist: urllib3
|
|
21
|
-
Requires-Dist: tqdm
|
|
22
|
-
Requires-Dist: certifi
|
|
23
|
-
Requires-Dist: webvtt-py
|
|
24
|
-
Requires-Dist: aiohttp
|
|
25
|
-
Requires-Dist: requests-toolbelt
|
|
26
|
-
Requires-Dist: requests
|
|
27
|
-
Requires-Dist: numpy
|
|
28
|
-
Requires-Dist: pandas
|
|
29
|
-
Requires-Dist: tabulate
|
|
30
|
-
Requires-Dist: Pillow
|
|
31
|
-
Requires-Dist: PyJWT
|
|
32
|
-
Requires-Dist: jinja2
|
|
33
|
-
Requires-Dist: attrs
|
|
34
|
-
Requires-Dist: prompt-toolkit
|
|
35
|
-
Requires-Dist: fuzzyfinder
|
|
36
|
-
Requires-Dist: dictdiffer
|
|
37
|
-
Requires-Dist: validators
|
|
38
|
-
Requires-Dist: pathspec
|
|
39
|
-
Requires-Dist: filelock
|
|
40
|
-
Requires-Dist: diskcache
|
|
41
|
-
Requires-Dist: redis
|
|
42
|
-
Requires-Dist: inquirer
|
|
43
|
-
Requires-Dist: dtlpymetrics
|
|
44
|
-
Requires-Dist: dataclasses
|
|
45
|
-
|
|
46
|
-
# **DTLPY – SDK and CLI for Dataloop.ai**
|
|
47
|
-
|
|
48
|
-

|
|
49
|
-
|
|
50
|
-
[](https://sdk-docs.dataloop.ai/en/latest/?badge=latest)
|
|
51
|
-
[](https://pypi.org/project/dtlpy/)
|
|
52
|
-
[](https://github.com/dataloop-ai/dtlpy)
|
|
53
|
-
[](https://github.com/dataloop-ai/dtlpy/blob/master/LICENSE)
|
|
54
|
-
[](https://pepy.tech/project/dtlpy)
|
|
55
|
-
|
|
56
|
-
📚 [Platform Documentation](https://dataloop.ai/docs) | 📖 [SDK Documentation](https://console.dataloop.ai/sdk-docs/latest) | [Developer docs](https://developers.dataloop.ai/)
|
|
57
|
-
|
|
58
|
-
An open-source SDK and CLI toolkit to interact seamlessly with the [Dataloop.ai](https://dataloop.ai/) platform, providing powerful data management, annotation capabilities, and workflow automation.
|
|
59
|
-
|
|
60
|
-
---
|
|
61
|
-
|
|
62
|
-
## **Table of Contents**
|
|
63
|
-
|
|
64
|
-
- [Overview](#overview)
|
|
65
|
-
- [Installation](#installation)
|
|
66
|
-
- [Usage](#usage)
|
|
67
|
-
- [SDK Usage](#sdk-usage)
|
|
68
|
-
- [CLI Usage](#cli-usage)
|
|
69
|
-
- [Python Version Support](#python-version-support)
|
|
70
|
-
- [Development](#development)
|
|
71
|
-
- [Resources](#resources)
|
|
72
|
-
- [Contribution Guidelines](#contribution-guidelines)
|
|
73
|
-
|
|
74
|
-
---
|
|
75
|
-
|
|
76
|
-
## **Overview**
|
|
77
|
-
|
|
78
|
-
DTLPY provides a robust Python SDK and a powerful CLI, enabling developers and data scientists to automate tasks, manage datasets, annotations, and streamline workflows within the Dataloop platform.
|
|
79
|
-
|
|
80
|
-
---
|
|
81
|
-
|
|
82
|
-
## **Installation**
|
|
83
|
-
|
|
84
|
-
Install DTLPY directly from PyPI using pip:
|
|
85
|
-
|
|
86
|
-
```bash
|
|
87
|
-
pip install dtlpy
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
Alternatively, for the latest development version, install directly from GitHub:
|
|
91
|
-
|
|
92
|
-
```bash
|
|
93
|
-
pip install git+https://github.com/dataloop-ai/dtlpy.git
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
## **Usage**
|
|
99
|
-
|
|
100
|
-
### **SDK Usage**
|
|
101
|
-
|
|
102
|
-
Here's a basic example to get started with the DTLPY SDK:
|
|
103
|
-
|
|
104
|
-
```python
|
|
105
|
-
import dtlpy as dl
|
|
106
|
-
|
|
107
|
-
# Authenticate
|
|
108
|
-
dl.login()
|
|
109
|
-
|
|
110
|
-
# Access a project
|
|
111
|
-
project = dl.projects.get(project_name='your-project-name')
|
|
112
|
-
|
|
113
|
-
# Access dataset
|
|
114
|
-
dataset = project.datasets.get(dataset_name='your-dataset-name')
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
### **CLI Usage**
|
|
118
|
-
|
|
119
|
-
DTLPY also provides a convenient command-line interface:
|
|
120
|
-
|
|
121
|
-
```bash
|
|
122
|
-
dlp login
|
|
123
|
-
dlp projects ls
|
|
124
|
-
dlp datasets ls --project-name your-project-name
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
---
|
|
128
|
-
|
|
129
|
-
## **Python Version Support**
|
|
130
|
-
|
|
131
|
-
DTLPY supports multiple Python versions as follows:
|
|
132
|
-
|
|
133
|
-
| Python Version | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 3.5 |
|
|
134
|
-
|--------------------|------|------|-----|-----|-----|-----|-----|
|
|
135
|
-
| **dtlpy >= 1.99** | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
|
|
136
|
-
| **dtlpy 1.76–1.98**| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
137
|
-
| **dtlpy >= 1.61** | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
138
|
-
| **dtlpy 1.50–1.60**| ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
139
|
-
| **dtlpy <= 1.49** | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
140
|
-
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
## **Development**
|
|
144
|
-
|
|
145
|
-
To set up the development environment, clone the repository and install dependencies:
|
|
146
|
-
|
|
147
|
-
```bash
|
|
148
|
-
git clone https://github.com/dataloop-ai/dtlpy.git
|
|
149
|
-
cd dtlpy
|
|
150
|
-
pip install -r requirements.txt
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
## **Resources**
|
|
154
|
-
|
|
155
|
-
- [Dataloop Platform](https://console.dataloop.ai)
|
|
156
|
-
- [Full SDK Documentation](https://console.dataloop.ai/sdk-docs/latest)
|
|
157
|
-
- [Platform Documentation](https://dataloop.ai/docs)
|
|
158
|
-
- [SDK Examples and Tutorials](https://github.com/dataloop-ai/dtlpy-documentation)
|
|
159
|
-
- [Developer docs](https://developers.dataloop.ai/)
|
|
160
|
-
|
|
161
|
-
---
|
|
162
|
-
|
|
163
|
-
## **Contribution Guidelines**
|
|
164
|
-
|
|
165
|
-
We encourage contributions! Please ensure:
|
|
166
|
-
|
|
167
|
-
- Clear and descriptive commit messages
|
|
168
|
-
- Code follows existing formatting and conventions
|
|
169
|
-
- Comprehensive tests for new features or bug fixes
|
|
170
|
-
- Updates to documentation if relevant
|
|
171
|
-
|
|
172
|
-
Create pull requests for review. All contributions will be reviewed carefully and integrated accordingly.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dtlpy
|
|
3
|
+
Version: 1.114.13
|
|
4
|
+
Summary: SDK and CLI for Dataloop platform
|
|
5
|
+
Home-page: https://github.com/dataloop-ai/dtlpy
|
|
6
|
+
Author: Dataloop Team
|
|
7
|
+
Author-email: info@dataloop.ai
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Classifier: Programming Language :: Python
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Requires-Python: >=3.7
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: urllib3>=1.26
|
|
21
|
+
Requires-Dist: tqdm>=4.63
|
|
22
|
+
Requires-Dist: certifi>=2020.12.5
|
|
23
|
+
Requires-Dist: webvtt-py==0.4.3
|
|
24
|
+
Requires-Dist: aiohttp>=3.8
|
|
25
|
+
Requires-Dist: requests-toolbelt>=1.0.0
|
|
26
|
+
Requires-Dist: requests>=2.25.0
|
|
27
|
+
Requires-Dist: numpy>=1.16.2
|
|
28
|
+
Requires-Dist: pandas>=0.24.2
|
|
29
|
+
Requires-Dist: tabulate>=0.8.9
|
|
30
|
+
Requires-Dist: Pillow>=7.2
|
|
31
|
+
Requires-Dist: PyJWT>=2.4
|
|
32
|
+
Requires-Dist: jinja2>=2.11.3
|
|
33
|
+
Requires-Dist: attrs<=22.2.0
|
|
34
|
+
Requires-Dist: prompt-toolkit>=2.0.9
|
|
35
|
+
Requires-Dist: fuzzyfinder<=2.1.0
|
|
36
|
+
Requires-Dist: dictdiffer>=0.8.1
|
|
37
|
+
Requires-Dist: validators<=0.18.2
|
|
38
|
+
Requires-Dist: pathspec>=0.8.1
|
|
39
|
+
Requires-Dist: filelock>=3.0.12
|
|
40
|
+
Requires-Dist: diskcache>=5.4
|
|
41
|
+
Requires-Dist: redis>=3.5
|
|
42
|
+
Requires-Dist: inquirer
|
|
43
|
+
Requires-Dist: dtlpymetrics
|
|
44
|
+
Requires-Dist: dataclasses
|
|
45
|
+
|
|
46
|
+
# **DTLPY – SDK and CLI for Dataloop.ai**
|
|
47
|
+
|
|
48
|
+

|
|
49
|
+
|
|
50
|
+
[](https://sdk-docs.dataloop.ai/en/latest/?badge=latest)
|
|
51
|
+
[](https://pypi.org/project/dtlpy/)
|
|
52
|
+
[](https://github.com/dataloop-ai/dtlpy)
|
|
53
|
+
[](https://github.com/dataloop-ai/dtlpy/blob/master/LICENSE)
|
|
54
|
+
[](https://pepy.tech/project/dtlpy)
|
|
55
|
+
|
|
56
|
+
📚 [Platform Documentation](https://dataloop.ai/docs) | 📖 [SDK Documentation](https://console.dataloop.ai/sdk-docs/latest) | [Developer docs](https://developers.dataloop.ai/)
|
|
57
|
+
|
|
58
|
+
An open-source SDK and CLI toolkit to interact seamlessly with the [Dataloop.ai](https://dataloop.ai/) platform, providing powerful data management, annotation capabilities, and workflow automation.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## **Table of Contents**
|
|
63
|
+
|
|
64
|
+
- [Overview](#overview)
|
|
65
|
+
- [Installation](#installation)
|
|
66
|
+
- [Usage](#usage)
|
|
67
|
+
- [SDK Usage](#sdk-usage)
|
|
68
|
+
- [CLI Usage](#cli-usage)
|
|
69
|
+
- [Python Version Support](#python-version-support)
|
|
70
|
+
- [Development](#development)
|
|
71
|
+
- [Resources](#resources)
|
|
72
|
+
- [Contribution Guidelines](#contribution-guidelines)
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## **Overview**
|
|
77
|
+
|
|
78
|
+
DTLPY provides a robust Python SDK and a powerful CLI, enabling developers and data scientists to automate tasks, manage datasets, annotations, and streamline workflows within the Dataloop platform.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## **Installation**
|
|
83
|
+
|
|
84
|
+
Install DTLPY directly from PyPI using pip:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
pip install dtlpy
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Alternatively, for the latest development version, install directly from GitHub:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
pip install git+https://github.com/dataloop-ai/dtlpy.git
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## **Usage**
|
|
99
|
+
|
|
100
|
+
### **SDK Usage**
|
|
101
|
+
|
|
102
|
+
Here's a basic example to get started with the DTLPY SDK:
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
import dtlpy as dl
|
|
106
|
+
|
|
107
|
+
# Authenticate
|
|
108
|
+
dl.login()
|
|
109
|
+
|
|
110
|
+
# Access a project
|
|
111
|
+
project = dl.projects.get(project_name='your-project-name')
|
|
112
|
+
|
|
113
|
+
# Access dataset
|
|
114
|
+
dataset = project.datasets.get(dataset_name='your-dataset-name')
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### **CLI Usage**
|
|
118
|
+
|
|
119
|
+
DTLPY also provides a convenient command-line interface:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
dlp login
|
|
123
|
+
dlp projects ls
|
|
124
|
+
dlp datasets ls --project-name your-project-name
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## **Python Version Support**
|
|
130
|
+
|
|
131
|
+
DTLPY supports multiple Python versions as follows:
|
|
132
|
+
|
|
133
|
+
| Python Version | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 3.5 |
|
|
134
|
+
|--------------------|------|------|-----|-----|-----|-----|-----|
|
|
135
|
+
| **dtlpy >= 1.99** | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
|
|
136
|
+
| **dtlpy 1.76–1.98**| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
137
|
+
| **dtlpy >= 1.61** | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
138
|
+
| **dtlpy 1.50–1.60**| ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
139
|
+
| **dtlpy <= 1.49** | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## **Development**
|
|
144
|
+
|
|
145
|
+
To set up the development environment, clone the repository and install dependencies:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
git clone https://github.com/dataloop-ai/dtlpy.git
|
|
149
|
+
cd dtlpy
|
|
150
|
+
pip install -r requirements.txt
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## **Resources**
|
|
154
|
+
|
|
155
|
+
- [Dataloop Platform](https://console.dataloop.ai)
|
|
156
|
+
- [Full SDK Documentation](https://console.dataloop.ai/sdk-docs/latest)
|
|
157
|
+
- [Platform Documentation](https://dataloop.ai/docs)
|
|
158
|
+
- [SDK Examples and Tutorials](https://github.com/dataloop-ai/dtlpy-documentation)
|
|
159
|
+
- [Developer docs](https://developers.dataloop.ai/)
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## **Contribution Guidelines**
|
|
164
|
+
|
|
165
|
+
We encourage contributions! Please ensure:
|
|
166
|
+
|
|
167
|
+
- Clear and descriptive commit messages
|
|
168
|
+
- Code follows existing formatting and conventions
|
|
169
|
+
- Comprehensive tests for new features or bug fixes
|
|
170
|
+
- Updates to documentation if relevant
|
|
171
|
+
|
|
172
|
+
Create pull requests for review. All contributions will be reviewed carefully and integrated accordingly.
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
dtlpy/__init__.py,sha256=JsvOgsQ6u4HJvogCxXxA9uZIPdctukUH5GrZlGeF5Xg,20932
|
|
2
|
+
dtlpy/__version__.py,sha256=cClg_g2GfN9TVjUkkCvRmkRRv2xASel5XW_dk45cb6I,22
|
|
3
|
+
dtlpy/exceptions.py,sha256=3-QaX1marJ1oCNNnEgnvqPlhHq8mVKjufI157pzxGZU,2996
|
|
4
|
+
dtlpy/new_instance.py,sha256=GUJOGshjRD6VZnD7GSB6vRQNI_BDpNtx314HP7xeHFc,10216
|
|
5
|
+
dtlpy/assets/__init__.py,sha256=AzcOoxymAF5O2ujLGtBIXWcA_AZx20Z0BzKLQsQWw94,1002
|
|
6
|
+
dtlpy/assets/lock_open.png,sha256=BH9uyf5uYvgZrDpDw9qCUnT3UbkXG8XbeRmWDpWlV4M,18215
|
|
7
|
+
dtlpy/assets/main.py,sha256=ZzihXeha0F56LdKj3fi-WSKZSgjPFtTcV7lOsmFWT-A,1433
|
|
8
|
+
dtlpy/assets/main_partial.py,sha256=Bd76_Iebp_AlDgQtSQr7jyknsetCem359Ng4_l77dv8,285
|
|
9
|
+
dtlpy/assets/mock.json,sha256=5Qeb71I7vHO14WWpnpOsogMgI_O3ubiadhuFjXEu-jY,160
|
|
10
|
+
dtlpy/assets/model_adapter.py,sha256=H0tZZ63P3syrWzt6SKwuanWtvdTf4lLKL12AFIfj8Rk,3251
|
|
11
|
+
dtlpy/assets/package.json,sha256=o_bdHP1tEjICVcav_NC1AWwsh3SFip_9NTGh7ElkRj4,1320
|
|
12
|
+
dtlpy/assets/package_catalog.json,sha256=7QL3u_WOLlCCdPrtoUF3lv02Qp41pmWQDsIXeVlli6U,597
|
|
13
|
+
dtlpy/assets/package_gitignore,sha256=iV1dYabFRgtDmNbduR59DC7T9mJHOCPX7S9rb6T71XQ,4712
|
|
14
|
+
dtlpy/assets/project_dataset_recipe_ontology.png,sha256=PKwLXvL289IoKJukoVlSzKKLfh08AIxsUlU2s88U_20,10807
|
|
15
|
+
dtlpy/assets/voc_annotation_template.xml,sha256=GuDPUUvtf0hP_MW2NVomky4qPTlOqY3UGE2Qe7WGWFg,765
|
|
16
|
+
dtlpy/assets/__pycache__/__init__.cpython-38.pyc,sha256=HH1gZ35V0w6e3c5YWpx1j4905AY--ITi4_6-W_aS244,1111
|
|
17
|
+
dtlpy/assets/code_server/config.yaml,sha256=TZqkKBnpkDdi7g4Zy3lpoio9uFDltC_hr1eitKjFTO8,50
|
|
18
|
+
dtlpy/assets/code_server/installation.sh,sha256=kDC6T5KMS_Rx8vJ9tT8v5WLKsldhRq7LQjsGnbiNTvc,862
|
|
19
|
+
dtlpy/assets/code_server/launch.json,sha256=Stq7OBIgI_34fsdZBwY_pyat7Tbc3NYN9kcr6dbeSDk,344
|
|
20
|
+
dtlpy/assets/code_server/settings.json,sha256=LCiQpqk7kK-AQo9xQK9b4jT6NWpT8MVbJD00BddmR5c,66
|
|
21
|
+
dtlpy/assets/service_runners/__init__.py,sha256=Zwmc-x14tSXSJ8ZGOUsLVG3eBjrqSAAv-DgWgnZsJnI,1676
|
|
22
|
+
dtlpy/assets/service_runners/converter.py,sha256=CX3gQR0tEfDZe67rGZqNgyLOrfO0O30B3SURM4BZl5o,2915
|
|
23
|
+
dtlpy/assets/service_runners/multi_method.py,sha256=WSrTJ9l-gjldCSms3issxIsJUZj7FzIrbEOQkvJUD0U,1249
|
|
24
|
+
dtlpy/assets/service_runners/multi_method_annotation.py,sha256=LE7vEodGIsb3_TCHLq5nuD-tCN8CC7eXWwkDkiDQFPU,1602
|
|
25
|
+
dtlpy/assets/service_runners/multi_method_dataset.py,sha256=XFft9Y8DjYCpEtsSMwbLGqqZnuNXHHXZhhPmeyjsY0w,1647
|
|
26
|
+
dtlpy/assets/service_runners/multi_method_item.py,sha256=xQ5V8NZ6tjkwWiNDb6ljjLZdXoQ4r9hpI-6tuWRhtOw,1403
|
|
27
|
+
dtlpy/assets/service_runners/multi_method_json.py,sha256=8IW0D6bctk_ci0hSDZrUPuExKLxXEGYnHz2eie8glIU,1605
|
|
28
|
+
dtlpy/assets/service_runners/single_method.py,sha256=oIHmCLJDjzBi7oiZqLLpZpXC_UshGsKn_Zs4PFlt-Qk,826
|
|
29
|
+
dtlpy/assets/service_runners/single_method_annotation.py,sha256=3A8is3Ax6N3tkTj0spITrQpZhLvedzebmYNSZCSuiVc,1187
|
|
30
|
+
dtlpy/assets/service_runners/single_method_dataset.py,sha256=76hSrVPySYTgRgnz0AJlxg0O8sh7VlcY-0-hnwmsiEw,1290
|
|
31
|
+
dtlpy/assets/service_runners/single_method_item.py,sha256=PnuVqdhgOdI9wIbyPf1GHKv0gQJ5-VsF-jGvxzGK1wU,1046
|
|
32
|
+
dtlpy/assets/service_runners/single_method_json.py,sha256=D3kV9unHiFpAxOjteSILXk4Mh4TxgYyu_T-xDfKmmdI,1287
|
|
33
|
+
dtlpy/assets/service_runners/single_method_multi_input.py,sha256=on8Neo69G4oe5e1vcqmCTvy60I4tnGxhmDRqlYN-6Mk,1304
|
|
34
|
+
dtlpy/caches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
dtlpy/caches/base_cache.py,sha256=n-ngWcqgcbjBkxSfjgSaOyaMXzj21yBzUOlBZNogHJw,753
|
|
36
|
+
dtlpy/caches/cache.py,sha256=S2qyB4RMw9xLpKXuJGnih7mAN3iepufhIZuwJeGe70U,17390
|
|
37
|
+
dtlpy/caches/dl_cache.py,sha256=shUPDylOz4SHi_qZB7sgxsksCdK7OZFePwl6SG10Qus,5896
|
|
38
|
+
dtlpy/caches/filesystem_cache.py,sha256=jQqI91a7K7db6K04UuleKPdYWQykEw0OMB40eaKs1qs,2826
|
|
39
|
+
dtlpy/caches/redis_cache.py,sha256=a7n_kmv5ugJ53dTsTOgU6DlzWCiecmp8oWaOqhEvm0A,2415
|
|
40
|
+
dtlpy/dlp/__init__.py,sha256=By841bihrX1JLnYMgx_wQJSrJTjUKavpTPq_CI5eWuA,888
|
|
41
|
+
dtlpy/dlp/cli_utilities.py,sha256=2t60Iul_i-W6YM96LI0GU3RT3njb7r6sDHT4tpBVN4k,16422
|
|
42
|
+
dtlpy/dlp/command_executor.py,sha256=1F89fVNCFNn6enfluk8Tv2DAK2_RdWTG-e43spJX1DY,32877
|
|
43
|
+
dtlpy/dlp/dlp,sha256=R99eKZP_pZ7egsYawtuw2lRL_6b0P7spq7JpGAY3H7Y,11
|
|
44
|
+
dtlpy/dlp/dlp.bat,sha256=2V2sDEhvV2Tm7nMoyFdIxo5ODq-msgt9LJesLoPVmX0,38
|
|
45
|
+
dtlpy/dlp/dlp.py,sha256=XnUyp3q0ACldaq0tPpG2UwDsk3yQNaE_nJ3QgJjHgnc,4532
|
|
46
|
+
dtlpy/dlp/parser.py,sha256=2tqkCNjRY-q8Aaua7jmyXY53W9ItU5IEaZ_Pqma_JBc,31202
|
|
47
|
+
dtlpy/entities/__init__.py,sha256=jsote0CW1IE90E7Wsa3BC6Bb20wA_sZXdZZLSHGg20g,5065
|
|
48
|
+
dtlpy/entities/analytic.py,sha256=WLHiBqP1wGa1xhzRPk4W3yCjdGflRM7aVwJvU7qAhso,12236
|
|
49
|
+
dtlpy/entities/annotation.py,sha256=CfNlbCNoCbsjorPhdBs5NDrEIB5qeO863lrmmfa_K64,68540
|
|
50
|
+
dtlpy/entities/annotation_collection.py,sha256=mNEvztCL3Yr0vj0cwfdGb84lHDUFW0E9nRomDheHyU4,30537
|
|
51
|
+
dtlpy/entities/app.py,sha256=vkUr08z8GnC-5vhfK9ERhXd1I5Jf6KIJU4gmJ6EUdzU,7216
|
|
52
|
+
dtlpy/entities/app_module.py,sha256=S2NdZMCGIUc_pCsMqg3UPzl5e76nf2j9zvAn5wF7e2I,3752
|
|
53
|
+
dtlpy/entities/artifact.py,sha256=s23DzZpVc6QMAGvNRAuN4K3U2nKuSrY8gVD49XdyUhw,5885
|
|
54
|
+
dtlpy/entities/assignment.py,sha256=OHNnRaXt07xagvkJhF0kAdllkuEBywdrVdAn7tvR4Yg,15121
|
|
55
|
+
dtlpy/entities/base_entity.py,sha256=zGcfjcs_Cm8FyRwZjmQPQK0-Esnrz5H3yydqFTMBa2k,6732
|
|
56
|
+
dtlpy/entities/bot.py,sha256=dfuw0CkGzcwjb1Ov0KpIs0mIW5d6piHHzI0ZHjL7Vek,3932
|
|
57
|
+
dtlpy/entities/codebase.py,sha256=fGt8KQVc1nASxsDXdIyQ7vCtfZNbxAdZvTy6zXdXpso,9295
|
|
58
|
+
dtlpy/entities/collection.py,sha256=LqVLG6-5vZmno7FtXveBW5FcrtpSN96hXFYfA94Hp34,1198
|
|
59
|
+
dtlpy/entities/command.py,sha256=dQJuqo20_qmcUpJAJkRnM5l4bNFNlaxviCo_rIaVV6U,5470
|
|
60
|
+
dtlpy/entities/compute.py,sha256=hB8DSMNNp3l4E9xF1I7tSeapqOMGOIitwKK_6q_5-Vg,15026
|
|
61
|
+
dtlpy/entities/dataset.py,sha256=J3BO4vE_BaVcTz0GMM_yilkaqoeV-X5NSFT77APeU0o,55123
|
|
62
|
+
dtlpy/entities/directory_tree.py,sha256=j0-kIa--HBaAZKE14b-SoI3JaZkmYnvtpkBt4vSo8_Q,1230
|
|
63
|
+
dtlpy/entities/dpk.py,sha256=fnS0qV6wXCmGrc5HJJM0NxfpT_KDwMMpXzhCWweYjgk,18393
|
|
64
|
+
dtlpy/entities/driver.py,sha256=LR9ctjTuG3_kp4hU0NJliBTTyqaX5hECQv4sqhqMTxI,7419
|
|
65
|
+
dtlpy/entities/execution.py,sha256=WavoDhkDo6c7P8TubxHoEhTbITB4ILc9kbLvRFGVDbc,14070
|
|
66
|
+
dtlpy/entities/feature.py,sha256=kRiPN8v9v6cL-mHGlQK5l9YsIMTn8HdVEkoZMKKX0Ds,3856
|
|
67
|
+
dtlpy/entities/feature_set.py,sha256=yp0SJTZ3X81fYpB96TLTEWCz0_tjEwBT1T9gXPBU_eQ,4588
|
|
68
|
+
dtlpy/entities/filters.py,sha256=jF0vmU7tlCeBvCFujotiHM6C1b0je-487lTtoQn2AWQ,23285
|
|
69
|
+
dtlpy/entities/gis_item.py,sha256=DdQHePdOBKPBah6Ff0ceW07b8ytODqVehjdJdbu2YxA,4089
|
|
70
|
+
dtlpy/entities/integration.py,sha256=V5mIHMWUDT8KmQiZ7l-KGKp96czZqUan4q3Hj1WgD1k,6185
|
|
71
|
+
dtlpy/entities/item.py,sha256=LP3xK1EySf9b7FiucqSkhLsz27AwVqZqunRYjSJ2TCM,35544
|
|
72
|
+
dtlpy/entities/label.py,sha256=y7kiq-FmsEc3LrXEXUPf53EZ3ijhhobAmLeJ6UUvb2c,3992
|
|
73
|
+
dtlpy/entities/links.py,sha256=_WIIbRQJPcpKU_PgZknncJ_ktQINaHa2EpUxREDsXm8,2601
|
|
74
|
+
dtlpy/entities/message.py,sha256=rgZgm0H73eogzMG7T4aX-tqpGMbwk2uUo-nUyC-XPyk,6040
|
|
75
|
+
dtlpy/entities/model.py,sha256=ZrwoHYrSJJKXjIRsAeS3EUBugV0NCzjHV0WarTuCUSw,28243
|
|
76
|
+
dtlpy/entities/node.py,sha256=EHEmqyAXZ7tq8vojJXIjlro8yHAegjbykrknjSnyvSM,40204
|
|
77
|
+
dtlpy/entities/ontology.py,sha256=MaTxc5vFXpWXyRsYpA7btitBOb6kHu-Z8uXp8R8inD4,32903
|
|
78
|
+
dtlpy/entities/organization.py,sha256=eaPnM8MUe6DtW2MAoo5v7FxctRx4Nb02TY1cmPW5RdA,10161
|
|
79
|
+
dtlpy/entities/package.py,sha256=RkI38G2QbIyU1kKdKaR7w5VjItHQ6H7jXSzZ9gcPD00,27020
|
|
80
|
+
dtlpy/entities/package_defaults.py,sha256=HGrGoZmtWVV4K8746BOrmqwmLV8gqbJfo-eQg5KHKcQ,216
|
|
81
|
+
dtlpy/entities/package_function.py,sha256=GdLLkt3f4_Vu1lG9U45IZpGL5svywJWI2NNmgRNF1w8,6499
|
|
82
|
+
dtlpy/entities/package_module.py,sha256=1CgN4SNngcT3da0Rmrn-5nqWGGaAe4erfmfwxkL4iio,5264
|
|
83
|
+
dtlpy/entities/package_slot.py,sha256=b6h808eO3J-U730zmq3Crs2Y_0ixNe8spgW1XfW8gJk,4064
|
|
84
|
+
dtlpy/entities/paged_entities.py,sha256=AOulZwsIZPHrQkuuUjpwD7ZdO8fpuuD2OQqZi3-r9-k,10822
|
|
85
|
+
dtlpy/entities/pipeline.py,sha256=XgSpfQ1_f79JVu-LzMe4VTn8nBF_ONpin0SEMG8ObB4,21444
|
|
86
|
+
dtlpy/entities/pipeline_execution.py,sha256=xbtG99GHVwZ8YNkx-X760h7OZPhNVJB1G0p1Zvv9QZs,10217
|
|
87
|
+
dtlpy/entities/project.py,sha256=KIYPcuCJq1dZ-hJXV2aXDL4N2I1BBD8YajMXCd_dnr8,15047
|
|
88
|
+
dtlpy/entities/prompt_item.py,sha256=CmyG6XjRSgq2DkYgFMqHPlblBMFEv3HBu06QDbc1bNk,21522
|
|
89
|
+
dtlpy/entities/recipe.py,sha256=gOyWVxWlUees1hIpHCvvjhN-5FpDMtlFb1CxsgWiAVY,12218
|
|
90
|
+
dtlpy/entities/reflect_dict.py,sha256=11pCUyRsTfwSRP2vErSvhq-CdUMMEwfkGUvcDxek94k,3375
|
|
91
|
+
dtlpy/entities/resource_execution.py,sha256=93Knb8xZXTOvEWks4BZSXz7ROnheNdIsD2tQ-iF3m14,5171
|
|
92
|
+
dtlpy/entities/service.py,sha256=Y_dw7jClMGduQXWSTbnHsqYldplrCq_kmEvvHL6RLG0,34188
|
|
93
|
+
dtlpy/entities/service_driver.py,sha256=q8SE7Ef-8xMbeduMGprVS4dnJ6ii3bj8JfVU9SoX4Pc,4034
|
|
94
|
+
dtlpy/entities/setting.py,sha256=sfjJFKow-d3UxAGtiLQ9htoznusF9CJE9ph2-dFBrU0,8855
|
|
95
|
+
dtlpy/entities/task.py,sha256=U4UurUb02LrZRAp3UY90wqCTtl2NPmVj8hfZs6xC2dU,20002
|
|
96
|
+
dtlpy/entities/time_series.py,sha256=pVyxlv3KwnEvmfo0WrxbB8zTJB9cOHzJmK3U92ufC8g,4160
|
|
97
|
+
dtlpy/entities/trigger.py,sha256=rvMh9rl0cIaa6bGHu7hdZjx_b8Pw2BnAfkGWl63kGn0,14722
|
|
98
|
+
dtlpy/entities/user.py,sha256=J5fIx0txKtFsBWhY56CFggNYxmfxvy1nycR6E6yBulc,3983
|
|
99
|
+
dtlpy/entities/webhook.py,sha256=cB4ZsFiEK-QWqlIvQUth2-lQEcDbHzPQJWi1BmaX2GQ,3663
|
|
100
|
+
dtlpy/entities/annotation_definitions/__init__.py,sha256=iUHtvaftdMwEAT77T4c2T785maTZP6b2q9YnbeUJ4W0,686
|
|
101
|
+
dtlpy/entities/annotation_definitions/base_annotation_definition.py,sha256=d_6TNmRWqxywtisGGwsUL5lp4YOW31ZMMuVzX_zfBYU,2647
|
|
102
|
+
dtlpy/entities/annotation_definitions/box.py,sha256=qhepgQjdAC2C_bG8-HwCQjvCrm_VXX1VawksRJLNRok,6240
|
|
103
|
+
dtlpy/entities/annotation_definitions/classification.py,sha256=MSJbbaOiZBlLpUkNvMEGMVkupqfchIxBqhoobziiUho,1626
|
|
104
|
+
dtlpy/entities/annotation_definitions/comparison.py,sha256=fC3AQx-yM1mzlcWgqoI1_NAZuF_AwnjC_WaSjtMVgxw,1878
|
|
105
|
+
dtlpy/entities/annotation_definitions/cube.py,sha256=WhjSCQcUAmTgfJObyjTALkhzC8EolZdSqtYQIYEXERI,8758
|
|
106
|
+
dtlpy/entities/annotation_definitions/cube_3d.py,sha256=6A1Vvh7zUDo_fDgz6DAnFYdF1JDmvnKuG0zCxGBON4Y,5954
|
|
107
|
+
dtlpy/entities/annotation_definitions/description.py,sha256=AMlnhvHkqScRYGSHhwKYcZcLUcZmy1F1Mxj0Ydl0Qr0,951
|
|
108
|
+
dtlpy/entities/annotation_definitions/ellipse.py,sha256=k6I21mMioZ20gkYDxa9JsnhWkJYKL1zfo0Ve1l0-FaA,4178
|
|
109
|
+
dtlpy/entities/annotation_definitions/free_text.py,sha256=iUqOwx-FPMgNDh__GajonhggP4mO9XI7ZBDPMO0RtC0,1693
|
|
110
|
+
dtlpy/entities/annotation_definitions/gis.py,sha256=2nmkwMY_ob5y0X3sjh7Zsl3wImqSpDizki1KcOktu-U,2148
|
|
111
|
+
dtlpy/entities/annotation_definitions/note.py,sha256=VB2ructTUTNQzhwqO02etd2TWlYhQL4XrO8iOE9LDTg,4244
|
|
112
|
+
dtlpy/entities/annotation_definitions/point.py,sha256=uxe97tdyyIH4_aoZLiGXbtTGED1IGqYOIMFd8t9GZdA,3388
|
|
113
|
+
dtlpy/entities/annotation_definitions/polygon.py,sha256=HY19doR-lEXNn6g4wUlefHQ3bjlIUKzw4SoaAVfpDIY,6528
|
|
114
|
+
dtlpy/entities/annotation_definitions/polyline.py,sha256=fEmAO__VUBw5HWcwQRnYwMqfnk84z6COILkmOHSHEXk,3348
|
|
115
|
+
dtlpy/entities/annotation_definitions/pose.py,sha256=qb6LDawmP5ztoCcVMLsI92Js16nvTFuGmcB0lfkjJao,2619
|
|
116
|
+
dtlpy/entities/annotation_definitions/ref_image.py,sha256=J-8udIaan6Jl5gy5nCKGNLn7Bh-LdOFNsS3HN6zH5Sw,2912
|
|
117
|
+
dtlpy/entities/annotation_definitions/segmentation.py,sha256=5L-k6sCrkXUN7JeMbzS9OXbEW_KXSm-ADQz40Cujx4o,7830
|
|
118
|
+
dtlpy/entities/annotation_definitions/subtitle.py,sha256=3qmplBw_ZP-CCG3RlZzDTNm_okjDTAeiWJEHSCtJXK0,1039
|
|
119
|
+
dtlpy/entities/annotation_definitions/text.py,sha256=7-WhyzwCsyygHhjtBlmuzilf4C9SeAWdIshuRWyf12E,2644
|
|
120
|
+
dtlpy/entities/annotation_definitions/undefined_annotation.py,sha256=sDp3Zdt7XQGhSO-KlY3AbBjOCQtQr579FZwkj94yUH8,1956
|
|
121
|
+
dtlpy/examples/__init__.py,sha256=48T82JuL8YJ9_tU2Pnk3tQul_YDJcbAlndQHoh7hBbI,760
|
|
122
|
+
dtlpy/examples/add_labels.py,sha256=OZD9-zBdMZ-7j4tnVuYx19swCBOnapB143Mib0NE7aA,4774
|
|
123
|
+
dtlpy/examples/add_metadata_to_item.py,sha256=9zzfQrQAOFDZ1lCgdWxpLbNxdeS8VBzRYolcuBJUM9k,634
|
|
124
|
+
dtlpy/examples/annotate_items_using_model.py,sha256=0rvrpuzYMyk9OyC4DYpjKT9kiYTwTyxPNYL6ykW0qSs,2747
|
|
125
|
+
dtlpy/examples/annotate_video_using_model_and_tracker.py,sha256=vNLdBw9Q_WfyO52_EuaOtwtiKOMrXmFwHi_MW60rK-g,2647
|
|
126
|
+
dtlpy/examples/annotations_convert_to_voc.py,sha256=clk78Tb2OIfZdinudk33YlElIZAXEWW3MQhoksu4v94,323
|
|
127
|
+
dtlpy/examples/annotations_convert_to_yolo.py,sha256=nEcUC0Is8J4eZ6BbyDppTGh5Fasw1bMSlqpt-RpDAro,330
|
|
128
|
+
dtlpy/examples/convert_annotation_types.py,sha256=L_dEmbkElTtBdlU2a9G9HwuP_gUGp9CWrsQn_y1khZw,1768
|
|
129
|
+
dtlpy/examples/converter.py,sha256=8mQTalyXir0U6Lu0Mfqrh4_-NNT9xYgwu8XmyfvipnQ,5035
|
|
130
|
+
dtlpy/examples/copy_annotations.py,sha256=7RSiTfir_avZA1h9daw1NJ7RIhVbXygD6fyboNFnWLQ,848
|
|
131
|
+
dtlpy/examples/copy_folder.py,sha256=AIv5z4BGaJtsCV8izaT5ASqE-f9_v3SgX19SXcOEMzw,1379
|
|
132
|
+
dtlpy/examples/create_annotations.py,sha256=sngxzvEALTsf1NDOklUSWKER2Ab2bKnLR3oOc4Oh_O0,1988
|
|
133
|
+
dtlpy/examples/create_video_annotations.py,sha256=eR3ROVJqu6Km6P_nQDR6lymcQsxw_05L_sP_GoNhKQc,3614
|
|
134
|
+
dtlpy/examples/delete_annotations.py,sha256=Se8OHWsBjUJnYr9n1GBQ_iSFP6UgRMsq5G5E2Lp4390,687
|
|
135
|
+
dtlpy/examples/filters.py,sha256=hZ8AiOmdj0FwOPFI51byB2P-mElVkZfwZCBuj7-TLuw,4036
|
|
136
|
+
dtlpy/examples/move_item.py,sha256=ITUDYOlzkFJFVtq_p52QE5qXC2hFXC6wcMBQNG6cHM0,751
|
|
137
|
+
dtlpy/examples/play_video_annotation.py,sha256=aVd_ZXqa229XgOr0x8cX9GryIAJjDBIfxsNdVVgH9vw,415
|
|
138
|
+
dtlpy/examples/show_item_and_mask.py,sha256=s70BKJ5TShIQZVdQhUFvhbyT9N814q4nuBKmF35S9IE,1737
|
|
139
|
+
dtlpy/examples/triggers.py,sha256=mFXRO4LTNfxz9RuFy8D3kuAS_hTu-u4RXY43OQ5y9dY,1640
|
|
140
|
+
dtlpy/examples/upload_batch_of_items.py,sha256=6effjb1rehrZebPYiHvi6RGVD26YE-U6OZLcgch_iPs,691
|
|
141
|
+
dtlpy/examples/upload_items_and_custom_format_annotations.py,sha256=82te9XKBwqkq0wrc7Fepfj-UkIdPyf-tUhnMtPB0Ceg,2363
|
|
142
|
+
dtlpy/examples/upload_items_with_modalities.py,sha256=C3NQaKlBj82nWFdj6L9ABUhurzzu1YVlO3gnIvV4o7c,1891
|
|
143
|
+
dtlpy/examples/upload_segmentation_annotations_from_mask_image.py,sha256=w4KuK7Q554AxAP3-ZHn9fHP_-_Jl0n1meOo-5ArMV0s,1432
|
|
144
|
+
dtlpy/examples/upload_yolo_format_annotations.py,sha256=0bQWtWgve1zqXkalnVOGWG7e_lAyIaev4_TmITPUkss,2680
|
|
145
|
+
dtlpy/miscellaneous/__init__.py,sha256=Wi71lvQ7lqKd34QykWZ2NAP-bfcpMzImJaPso-EMTWM,849
|
|
146
|
+
dtlpy/miscellaneous/dict_differ.py,sha256=ZVQrgj2X3yjutu9X2J84YP7eDp__erglPXWaUUPY-9g,3584
|
|
147
|
+
dtlpy/miscellaneous/git_utils.py,sha256=qU9RM6H794331A9_kMSgzhOqFuTMSqUaOnItTyEWJ6E,8188
|
|
148
|
+
dtlpy/miscellaneous/json_utils.py,sha256=meDnMsOtGZlhUfogrCsg-RKd5FLCfeKgji_pdAyi2vY,442
|
|
149
|
+
dtlpy/miscellaneous/list_print.py,sha256=oUSBNVaroekOIRaXjWeTVQxSifMhsmPPxzZbSPEeqTk,4933
|
|
150
|
+
dtlpy/miscellaneous/zipping.py,sha256=-UeVNFTzF7iLo87QpISBLL1sZHnl0p5zrNmzharobd4,5513
|
|
151
|
+
dtlpy/ml/__init__.py,sha256=coDyt1yOZrmc3FIFPnQ_GGUVtcr2U1OqBAcP2u8p63U,819
|
|
152
|
+
dtlpy/ml/base_feature_extractor_adapter.py,sha256=V6dE9O3JRp2f6Xw0GO09mwdJFdW88Fu6_MsPXQ9m58g,1205
|
|
153
|
+
dtlpy/ml/base_model_adapter.py,sha256=8RAHci9M_FAX6o9Q3Ba0i-P3WM-Szbjy-8EC9FXC-SA,52474
|
|
154
|
+
dtlpy/ml/metrics.py,sha256=CEavVQ9FoF_iHHaQCs2tPOdA2QvRvVSY11by4wIpeyA,20498
|
|
155
|
+
dtlpy/ml/predictions_utils.py,sha256=eNUaReXLDCex1y1TAxuFfQV_sCGk4iT77UJFMHMw6zI,12758
|
|
156
|
+
dtlpy/ml/summary_writer.py,sha256=JuFlqJsUqTBfLlRI1HtffiJA5tcCqDbarAKuoRPnZew,2841
|
|
157
|
+
dtlpy/ml/train_utils.py,sha256=46Mn0dG7oUFR4X5S1SIzertK3_xWBW7vObnlfKGbzXo,2500
|
|
158
|
+
dtlpy/repositories/__init__.py,sha256=gCdsnjmzhgA5TJVAa9wMydu0e94KRseH1lJUzAuSzFs,2117
|
|
159
|
+
dtlpy/repositories/analytics.py,sha256=s9_VULCtbMmAylB21rnUvyc2VWc6th8Z9ZZe_zS00rs,3051
|
|
160
|
+
dtlpy/repositories/annotations.py,sha256=v01HU4Dyhbe-n-yKi_nusZ_IdIZHrNh947HYjrEBx5Y,44511
|
|
161
|
+
dtlpy/repositories/apps.py,sha256=UBRDZhvjRMmNcpJ7fGI4-WNixEePC-IQk1wrxj3e-CQ,16385
|
|
162
|
+
dtlpy/repositories/artifacts.py,sha256=wNDWmwFuRRX3MZddn2Qn7v-FAhuzwrNFN0yo5t8-TM0,19533
|
|
163
|
+
dtlpy/repositories/assignments.py,sha256=5pqswUueSgHJjkjdQ4Y3q0r8fOWPrCKGjJHgVelVERE,26105
|
|
164
|
+
dtlpy/repositories/bots.py,sha256=Xbph8kNHQOPV3aQCykltYGwApgu_leTm4-a6XGtE2RI,8317
|
|
165
|
+
dtlpy/repositories/codebases.py,sha256=fCYcVD5zDjhROvIXwC08Wtx-kUJsTX79X6owG1-Nnzo,25227
|
|
166
|
+
dtlpy/repositories/collections.py,sha256=lg4fPtdwscNC8_T3vS52LSbphRu4XzcR7N-ihavR1Hw,13279
|
|
167
|
+
dtlpy/repositories/commands.py,sha256=MappD0VQUjSn8OBbWcWIUODMevH_AIt6mIn_59iDvU0,6006
|
|
168
|
+
dtlpy/repositories/compositions.py,sha256=bw1NcZigG4v_JZstQxOWQ3UcZq_a5rQiiNx84WvPhCw,2211
|
|
169
|
+
dtlpy/repositories/computes.py,sha256=2xwvK5LvFZoMqilpjgsK_9lchPgcOCLo1nWE44Uxbk0,16956
|
|
170
|
+
dtlpy/repositories/datasets.py,sha256=H-j3rLPiGg7bIiV9rGHV4UHlUMlqkaqOYlrADJ_Bo3w,60649
|
|
171
|
+
dtlpy/repositories/downloader.py,sha256=OkyxSA9X7_WTcsgsy_E9baQXsOeJsmPqF1pO31ZXseQ,46224
|
|
172
|
+
dtlpy/repositories/dpks.py,sha256=XrmOk747Y6M1nf02LLIvqYC1trdOOgVT7z4rhLSpk-g,18949
|
|
173
|
+
dtlpy/repositories/drivers.py,sha256=-2S5VlMNBaVnj0b0EyvfPbv_kJY1hhRa_sZInUS5XZw,11083
|
|
174
|
+
dtlpy/repositories/executions.py,sha256=O4nkq0FFhNOA7uAdqXRC52dcwhZxYMThaQfqqZCQVLc,33415
|
|
175
|
+
dtlpy/repositories/feature_sets.py,sha256=UiHMceYolJJUDUEAV0z_APzCmdxCMQ3iy6RBepNfSXc,9892
|
|
176
|
+
dtlpy/repositories/features.py,sha256=JCnzf90AHqsGA5uSe4j-iOXY7YazGFB13lbaqhuRf0M,10161
|
|
177
|
+
dtlpy/repositories/integrations.py,sha256=bJ39gYcyhnlkGMd9aMBvb0L5tjoQPYOU60wUk8w4vzI,19975
|
|
178
|
+
dtlpy/repositories/items.py,sha256=Wj-wWSeME_VxO_xAgH_I-WGkqs1plJrtTpmnN8OJGNM,40782
|
|
179
|
+
dtlpy/repositories/messages.py,sha256=-OyZMoLLsAzHOurMmFPMZE9-FFCLd6iCeLpBCSDYjA4,3160
|
|
180
|
+
dtlpy/repositories/models.py,sha256=oZ1xtcx_V1Tl6eSv-54S1W1XXesRuNaYUqEHsswFHiY,39579
|
|
181
|
+
dtlpy/repositories/nodes.py,sha256=wvn8sqqkmLNkGl_ob1lZPt9afzDebA-QVvs1hvJCelM,3141
|
|
182
|
+
dtlpy/repositories/ontologies.py,sha256=WIPutseCvKjw0c4eklMiSYHyzh7YCxxpHv-Vyvapz2U,20088
|
|
183
|
+
dtlpy/repositories/organizations.py,sha256=zXJCkQ2d8sdZGt9QoGf-rXyWr2owNFsad4wo7uOFVyw,23350
|
|
184
|
+
dtlpy/repositories/packages.py,sha256=yxqq6oIPm_rypXuh0YK2003Q6sM_nSNOvHdSKprqoAo,88748
|
|
185
|
+
dtlpy/repositories/pipeline_executions.py,sha256=RUmGcBCJUEoHlVJeAKUU3M-Ozp5FG_iak_pfgphPJsw,17455
|
|
186
|
+
dtlpy/repositories/pipelines.py,sha256=lzSV8jYfVQSLjUfnWccvl6kr_pWY0aisW9TV2mPjfyc,24364
|
|
187
|
+
dtlpy/repositories/projects.py,sha256=sLLOykgN0EcsEGt_2_zojBAmr76kNM-oNs_bzvV-by4,22162
|
|
188
|
+
dtlpy/repositories/recipes.py,sha256=py6kPHyu_LisSmmoA7K9HNTAJskTXslkD-MZoekXx5s,16242
|
|
189
|
+
dtlpy/repositories/resource_executions.py,sha256=dFhSo1IxehzUND97GCRRLdA70jPm8XY3g9Hl8VIXfg0,5511
|
|
190
|
+
dtlpy/repositories/schema.py,sha256=QGFv7JZ3qJRbBpvR8VxLniyMHqpBbzAju863r0-Mf7k,4073
|
|
191
|
+
dtlpy/repositories/service_drivers.py,sha256=O4KWOqSlkXPUy9I7I7VzHU_h4CtYJQ_y_JCvMzs7qsI,6979
|
|
192
|
+
dtlpy/repositories/services.py,sha256=0EQfEOMFNyqh3Yp93FigNMh2q_pjPQTthANM9mNTZrY,70560
|
|
193
|
+
dtlpy/repositories/settings.py,sha256=o9QDQRf5DIHTzHQ0M9GGPqI5d4CLSP5jMEzHL_z7M3g,11984
|
|
194
|
+
dtlpy/repositories/tasks.py,sha256=eErZnYi8snNtkK3Hw3p42T352hdBchESBscsblsu00M,51284
|
|
195
|
+
dtlpy/repositories/times_series.py,sha256=xpbs3H3FTUolPy157xxOSlI7KHfqATtENVOGMhGw5KM,11698
|
|
196
|
+
dtlpy/repositories/triggers.py,sha256=_eMVkmdOnS_5XeqbGGOSmXsesuHlC6mnslelljZjMJY,22526
|
|
197
|
+
dtlpy/repositories/upload_element.py,sha256=nf8yz0NBHpla8Irn6fIbxrD00qXcNfNTmpvKOVmSRjs,10934
|
|
198
|
+
dtlpy/repositories/uploader.py,sha256=DH0ephkWAT7w0QqYND2FsdHrV8PElwRy2u8IMBI8chQ,32715
|
|
199
|
+
dtlpy/repositories/webhooks.py,sha256=rdjsqt8geo1Dp-xMIAtk3SRe7uAWw9JZ-FjS45v2C30,9282
|
|
200
|
+
dtlpy/services/__init__.py,sha256=BA5Wr0xWhBqSy8ayz1lu0aQnhH1JP6LA8e2UokJPP4M,926
|
|
201
|
+
dtlpy/services/aihttp_retry.py,sha256=k27de_S2sKAWTGjOm6qfiipwLDh0iislksbzTE2voaw,5153
|
|
202
|
+
dtlpy/services/api_client.py,sha256=KRiVB3nUrGCWtQcmJXW0g22yvbQp-V09cXQKn6OZqcA,73246
|
|
203
|
+
dtlpy/services/api_reference.py,sha256=jlP-7JvxILf3_fNni7aSXf8iFPPXRks3KDxmQht4qpE,1555
|
|
204
|
+
dtlpy/services/async_utils.py,sha256=V46H_LIF2xp3kQ-JJ1DomKlV_4hamdqsuS3ZsWuzGlI,4093
|
|
205
|
+
dtlpy/services/calls_counter.py,sha256=HXCUY7CfbQGjz3DKiYzV4smK5O04N9wbbg7kfwGUFgk,1080
|
|
206
|
+
dtlpy/services/check_sdk.py,sha256=zIoeJq7TIiamqfJzN0MLo9lCltcJSI7-Xq7_mV75ZWc,2685
|
|
207
|
+
dtlpy/services/cookie.py,sha256=oXuLcJ8wrGOpuqsifCbKR9NoMCKnHvkivgRz-sZ5sbw,3809
|
|
208
|
+
dtlpy/services/create_logger.py,sha256=zHy1A-qaNYjjRLL2fMMoLjqj_IwMnSpgeeXxo5ztjpI,6506
|
|
209
|
+
dtlpy/services/events.py,sha256=hy47MkkBfzeNxd-pKW8svR3qzF80oKzl1XFdmf6hl7A,3770
|
|
210
|
+
dtlpy/services/logins.py,sha256=C801uQps4rvWzrJ_DwkWnTH-vQDFyTd3h9bgY2FRIHs,9001
|
|
211
|
+
dtlpy/services/reporter.py,sha256=-TpkDYeXgn7dZvgZLlxs52-mmJ6tNyJKZlvuiKsOhO8,9396
|
|
212
|
+
dtlpy/services/service_defaults.py,sha256=QPhpQq6AvFi2XmOfSx-2asymrRaZ8kRTDq014ofI5UM,3951
|
|
213
|
+
dtlpy/utilities/__init__.py,sha256=nsADzasz6BmK6YIhblbqHYm6_WT467QvSCP_03iG7yM,918
|
|
214
|
+
dtlpy/utilities/base_package_runner.py,sha256=utKJx3-ZIK1PRDw-pr-oXgIpJWwnZD24OTzdNvbCooc,8786
|
|
215
|
+
dtlpy/utilities/converter.py,sha256=Ufe9z_NyKjn67oSs1p988N-UbBh9Nyg9fU3BxI66vgY,76506
|
|
216
|
+
dtlpy/utilities/annotations/__init__.py,sha256=FhfCWdhssPoqQm_UqETGJeteMJA-PzwGcnSu938uLLQ,744
|
|
217
|
+
dtlpy/utilities/annotations/annotation_converters.py,sha256=WpfQLz0kZpUF91iy4mf22VVPK4NfHZBQukpXi_5rTxY,11065
|
|
218
|
+
dtlpy/utilities/dataset_generators/__init__.py,sha256=1g_AxbvHQxi1uF51iG55O2coJbDdIDcgpamrNbRMwcc,66
|
|
219
|
+
dtlpy/utilities/dataset_generators/dataset_generator.py,sha256=3qDWMLlCfPCtl81o7cBdBAJJXG_vnq0RSfH8b9empoM,32149
|
|
220
|
+
dtlpy/utilities/dataset_generators/dataset_generator_tensorflow.py,sha256=bcCOGm437-CjhZTMmvwtTKF_W6nReu4A-XJdBqN-MuA,739
|
|
221
|
+
dtlpy/utilities/dataset_generators/dataset_generator_torch.py,sha256=YTUwI_J6odEsN64XBHNWgDAghjMf9J3lpqxQK1BSWx4,557
|
|
222
|
+
dtlpy/utilities/local_development/__init__.py,sha256=6mvaU2KelS75j4gimx07sMGlglqX4VBjXZPQ9Sqga8E,71
|
|
223
|
+
dtlpy/utilities/local_development/local_session.py,sha256=uO10jFfO1hEMorSqnQK2AwSjkyhZjCyZS1jFcNwegZo,6630
|
|
224
|
+
dtlpy/utilities/reports/__init__.py,sha256=-Cw_3KGxX2s7oJv_5IOhOgdBah8uIEyDKsAIYVNVre4,126
|
|
225
|
+
dtlpy/utilities/reports/figures.py,sha256=oM44kUeyTT6iAayqT099vzedBmqUl9QgFNvwppuV5oY,13353
|
|
226
|
+
dtlpy/utilities/reports/report.py,sha256=zer2AqDmmuuu_A31TjHI9yS4RnjAlIeQZ5xWzOM6djc,2710
|
|
227
|
+
dtlpy/utilities/videos/__init__.py,sha256=erjgtnnSJYk3k9j4PGzJwu3Ohv7H7DMnKySvJUQoaQs,751
|
|
228
|
+
dtlpy/utilities/videos/video_player.py,sha256=KJiMcrGo17qwaSnOF-SsccAR8BVChC_HMgTV6zW1bJ8,24670
|
|
229
|
+
dtlpy/utilities/videos/videos.py,sha256=PjPx_2hwAxctoz96XBd407ds8JZpzur4Z54rtJlVO-8,22345
|
|
230
|
+
dtlpy-1.114.13.data/scripts/dlp,sha256=R99eKZP_pZ7egsYawtuw2lRL_6b0P7spq7JpGAY3H7Y,11
|
|
231
|
+
dtlpy-1.114.13.data/scripts/dlp.bat,sha256=2V2sDEhvV2Tm7nMoyFdIxo5ODq-msgt9LJesLoPVmX0,38
|
|
232
|
+
dtlpy-1.114.13.data/scripts/dlp.py,sha256=sN0lxOiBmYOVijl1vCm3wkyr2TGas75AGaHV7pxt6oo,4521
|
|
233
|
+
tests/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
|
+
tests/features/environment.py,sha256=FLJTz1dYMfeWauwRHED_weESoOKc_ZfcgvGiWoS2lYA,19484
|
|
235
|
+
dtlpy-1.114.13.dist-info/LICENSE,sha256=WtjCEwlcVzkh1ziO35P2qfVEkLjr87Flro7xlHz3CEY,11556
|
|
236
|
+
dtlpy-1.114.13.dist-info/METADATA,sha256=2e9CVIIpxAxGmwh6hdjRX9kjuv3tcVq3NqubeIKrLvc,5576
|
|
237
|
+
dtlpy-1.114.13.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
238
|
+
dtlpy-1.114.13.dist-info/entry_points.txt,sha256=C4PyKthCs_no88HU39eioO68oei64STYXC2ooGZTc4Y,43
|
|
239
|
+
dtlpy-1.114.13.dist-info/top_level.txt,sha256=ZWuLmQGUOtWAdgTf4Fbx884w1o0vBYq9dEc1zLv9Mig,12
|
|
240
|
+
dtlpy-1.114.13.dist-info/RECORD,,
|