unitlab 2.1.4__tar.gz → 2.1.5__tar.gz
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.
- {unitlab-2.1.4/src/unitlab.egg-info → unitlab-2.1.5}/PKG-INFO +1 -2
- {unitlab-2.1.4 → unitlab-2.1.5}/setup.py +1 -2
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/dataset.py +0 -3
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/exceptions.py +0 -1
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/main.py +0 -1
- {unitlab-2.1.4 → unitlab-2.1.5/src/unitlab.egg-info}/PKG-INFO +1 -2
- {unitlab-2.1.4 → unitlab-2.1.5}/LICENSE.md +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/README.md +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/setup.cfg +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/__init__.py +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/__main__.py +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/client.py +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab/utils.py +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab.egg-info/SOURCES.txt +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab.egg-info/dependency_links.txt +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab.egg-info/entry_points.txt +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab.egg-info/requires.txt +0 -0
- {unitlab-2.1.4 → unitlab-2.1.5}/src/unitlab.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: unitlab
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.5
|
4
4
|
Home-page: https://github.com/teamunitlab/unitlab-sdk
|
5
5
|
Author: Unitlab Inc.
|
6
6
|
Author-email: team@unitlab.ai
|
@@ -10,7 +10,6 @@ Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
14
13
|
Classifier: Programming Language :: Python :: 3.8
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="unitlab",
|
5
|
-
version="2.1.
|
5
|
+
version="2.1.5",
|
6
6
|
license="MIT",
|
7
7
|
author="Unitlab Inc.",
|
8
8
|
author_email="team@unitlab.ai",
|
@@ -14,7 +14,6 @@ setup(
|
|
14
14
|
"Intended Audience :: Developers",
|
15
15
|
"License :: OSI Approved :: MIT License",
|
16
16
|
"Programming Language :: Python :: 3",
|
17
|
-
"Programming Language :: Python :: 3.7",
|
18
17
|
"Programming Language :: Python :: 3.8",
|
19
18
|
"Programming Language :: Python :: 3.9",
|
20
19
|
"Programming Language :: Python :: 3.10",
|
@@ -286,9 +286,6 @@ class DatasetUploadHandler(COCO):
|
|
286
286
|
def get_img_point_payload(self, anns):
|
287
287
|
return self.get_img_semantic_segmentation_payload(anns)
|
288
288
|
|
289
|
-
def get_img_skeleton_payload(self, anns):
|
290
|
-
logger.warning("Not implemented yet")
|
291
|
-
|
292
289
|
def get_payload(self, img_id):
|
293
290
|
image = self.imgs[img_id]
|
294
291
|
ann_ids = self.getAnnIds(imgIds=img_id)
|
@@ -10,7 +10,6 @@ class UnitlabError(Exception):
|
|
10
10
|
message: An informative message about the exception.
|
11
11
|
detail: The detail of the exception raised by Python or another library. Defaults to :obj:`None`.
|
12
12
|
"""
|
13
|
-
|
14
13
|
super().__init__(message, detail)
|
15
14
|
self.message = message
|
16
15
|
self.detail = detail
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: unitlab
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.5
|
4
4
|
Home-page: https://github.com/teamunitlab/unitlab-sdk
|
5
5
|
Author: Unitlab Inc.
|
6
6
|
Author-email: team@unitlab.ai
|
@@ -10,7 +10,6 @@ Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
14
13
|
Classifier: Programming Language :: Python :: 3.8
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|