superb-ai-onprem 0.1.0__py3-none-any.whl → 0.1.1__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 superb-ai-onprem might be problematic. Click here for more details.
- spb_onprem/__init__.py +11 -14
- spb_onprem/_version.py +2 -2
- spb_onprem/entities.py +34 -0
- spb_onprem/searches.py +24 -0
- {superb_ai_onprem-0.1.0.dist-info → superb_ai_onprem-0.1.1.dist-info}/METADATA +1 -1
- {superb_ai_onprem-0.1.0.dist-info → superb_ai_onprem-0.1.1.dist-info}/RECORD +9 -7
- {superb_ai_onprem-0.1.0.dist-info → superb_ai_onprem-0.1.1.dist-info}/WHEEL +0 -0
- {superb_ai_onprem-0.1.0.dist-info → superb_ai_onprem-0.1.1.dist-info}/licenses/LICENSE +0 -0
- {superb_ai_onprem-0.1.0.dist-info → superb_ai_onprem-0.1.1.dist-info}/top_level.txt +0 -0
spb_onprem/__init__.py
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
try:
|
|
2
2
|
from ._version import version as __version__
|
|
3
3
|
except ImportError:
|
|
4
|
-
__version__ = "0.
|
|
4
|
+
__version__ = "0.1.0"
|
|
5
5
|
|
|
6
6
|
# Services
|
|
7
7
|
from .datasets.service import DatasetService
|
|
8
8
|
from .data.service import DataService
|
|
9
9
|
from .slices.service import SliceService
|
|
10
10
|
|
|
11
|
-
# Core Entities
|
|
12
|
-
from .
|
|
11
|
+
# Core Entities and Enums
|
|
12
|
+
from .entities import (
|
|
13
|
+
# Core Entities
|
|
13
14
|
Data,
|
|
14
15
|
Scene,
|
|
15
16
|
Annotation,
|
|
16
17
|
AnnotationVersion,
|
|
17
18
|
Prediction,
|
|
18
19
|
DataMeta,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
# Enums
|
|
24
|
-
from .data.enums import (
|
|
20
|
+
Dataset,
|
|
21
|
+
Slice,
|
|
22
|
+
|
|
23
|
+
# Enums
|
|
25
24
|
DataType,
|
|
26
25
|
SceneType,
|
|
27
26
|
DataMetaTypes,
|
|
@@ -29,16 +28,13 @@ from .data.enums import (
|
|
|
29
28
|
)
|
|
30
29
|
|
|
31
30
|
# Filters
|
|
32
|
-
from .
|
|
31
|
+
from .searches import (
|
|
33
32
|
AnnotationFilter,
|
|
34
33
|
DataListFilter,
|
|
35
34
|
DataFilterOptions,
|
|
36
|
-
)
|
|
37
|
-
from .datasets.params.datasets import (
|
|
38
35
|
DatasetsFilter,
|
|
39
36
|
DatasetsFilterOptions,
|
|
40
|
-
|
|
41
|
-
from .slices.params.slices import (
|
|
37
|
+
SlicesFilter,
|
|
42
38
|
SlicesFilterOptions,
|
|
43
39
|
)
|
|
44
40
|
|
|
@@ -70,5 +66,6 @@ __all__ = (
|
|
|
70
66
|
"DataFilterOptions",
|
|
71
67
|
"DatasetsFilter",
|
|
72
68
|
"DatasetsFilterOptions",
|
|
69
|
+
"SlicesFilter",
|
|
73
70
|
"SlicesFilterOptions",
|
|
74
71
|
)
|
spb_onprem/_version.py
CHANGED
spb_onprem/entities.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
from .data.entities import (
|
|
2
|
+
Data,
|
|
3
|
+
Scene,
|
|
4
|
+
Annotation,
|
|
5
|
+
AnnotationVersion,
|
|
6
|
+
Prediction,
|
|
7
|
+
DataMeta,
|
|
8
|
+
)
|
|
9
|
+
from .datasets.entities import Dataset
|
|
10
|
+
from .slices.entities import Slice
|
|
11
|
+
from .data.enums import (
|
|
12
|
+
DataType,
|
|
13
|
+
SceneType,
|
|
14
|
+
DataMetaTypes,
|
|
15
|
+
DataMetaValue,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
# Core Entities
|
|
20
|
+
"Data",
|
|
21
|
+
"Scene",
|
|
22
|
+
"Annotation",
|
|
23
|
+
"AnnotationVersion",
|
|
24
|
+
"Prediction",
|
|
25
|
+
"DataMeta",
|
|
26
|
+
"Dataset",
|
|
27
|
+
"Slice",
|
|
28
|
+
|
|
29
|
+
# Enums
|
|
30
|
+
"DataType",
|
|
31
|
+
"SceneType",
|
|
32
|
+
"DataMetaTypes",
|
|
33
|
+
"DataMetaValue",
|
|
34
|
+
]
|
spb_onprem/searches.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Filters
|
|
2
|
+
from .data.params.data_list import (
|
|
3
|
+
AnnotationFilter,
|
|
4
|
+
DataListFilter,
|
|
5
|
+
DataFilterOptions,
|
|
6
|
+
)
|
|
7
|
+
from .datasets.params.datasets import (
|
|
8
|
+
DatasetsFilter,
|
|
9
|
+
DatasetsFilterOptions,
|
|
10
|
+
)
|
|
11
|
+
from .slices.params.slices import (
|
|
12
|
+
SlicesFilterOptions,
|
|
13
|
+
SlicesFilter,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"AnnotationFilter",
|
|
18
|
+
"DataListFilter",
|
|
19
|
+
"DataFilterOptions",
|
|
20
|
+
"DatasetsFilter",
|
|
21
|
+
"DatasetsFilterOptions",
|
|
22
|
+
"SlicesFilter",
|
|
23
|
+
"SlicesFilterOptions",
|
|
24
|
+
]
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
spb_onprem/__init__.py,sha256=
|
|
2
|
-
spb_onprem/_version.py,sha256
|
|
1
|
+
spb_onprem/__init__.py,sha256=D9PTLlvRk_aB9DWXMfGrb06dmy5wPYTrxKmNjyfWq1w,1225
|
|
2
|
+
spb_onprem/_version.py,sha256=Mmxse1R0ki5tjz9qzU8AQyqUsLt8nTyCAbYQp8R87PU,511
|
|
3
3
|
spb_onprem/base_model.py,sha256=f2l5lgu7NYGOpVbE4_gAhMq1jBBRhaLwPf4fwJVrOHM,124
|
|
4
4
|
spb_onprem/base_service.py,sha256=zaZ1rOhSAzi0bNc-y-WpUUYpM_cQl3hLFXpbmmCg73k,5607
|
|
5
5
|
spb_onprem/base_types.py,sha256=5HO6uy6qf08b4KSElwIaGy7UkoQG2KqVO6gcHbsqqSo,269
|
|
6
|
+
spb_onprem/entities.py,sha256=4XSE-odWBpbm_ghu36Eo2Q9ki0acpZ41vOmRyd1QT_E,547
|
|
6
7
|
spb_onprem/exceptions.py,sha256=jx5rTGsVZ5shOdbgQzk8GcSyMWFtb_3xhPq6Sylwc5o,478
|
|
8
|
+
spb_onprem/searches.py,sha256=s8ev1tsDJrVVRd6k850GtmNGeF5oSL_wVcyLoUM5BW4,468
|
|
7
9
|
spb_onprem/contents/__init__.py,sha256=9EfIMQxbJuUZVUqsTa3Ji-yDidFPQQB5gnJI4R01YWI,74
|
|
8
10
|
spb_onprem/contents/queries.py,sha256=tGMVH8ixv0CW5bJTWICCjWDM_oAN7jkfEQXdAJUVn4Q,851
|
|
9
11
|
spb_onprem/contents/service.py,sha256=KoPUffr_DEGOMIOwkue0rkidHMPfmAJG0KgJyXN6N_Y,3602
|
|
@@ -65,8 +67,8 @@ spb_onprem/slices/params/update_slice.py,sha256=kryOmCnRTQ_OU0qDKgugppLrpeUpuLwm
|
|
|
65
67
|
spb_onprem/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
68
|
spb_onprem/users/entities/__init__.py,sha256=X8HZsCTlQnuPszok3AwI-i7bsQi0Ehul5L_2jZaol5E,57
|
|
67
69
|
spb_onprem/users/entities/auth.py,sha256=UWy1dKOeUCTsXvIIqUHgPpU_RAtM82HC4X2S9ShOr98,3765
|
|
68
|
-
superb_ai_onprem-0.1.
|
|
69
|
-
superb_ai_onprem-0.1.
|
|
70
|
-
superb_ai_onprem-0.1.
|
|
71
|
-
superb_ai_onprem-0.1.
|
|
72
|
-
superb_ai_onprem-0.1.
|
|
70
|
+
superb_ai_onprem-0.1.1.dist-info/licenses/LICENSE,sha256=CdinbFiHKGkGl6cPde6WgXhMuzyUXEG6tzy2-7udZ8o,1066
|
|
71
|
+
superb_ai_onprem-0.1.1.dist-info/METADATA,sha256=mSZd6GX2uqN5bRn4zUc7SAHvW5TnOB4P4K-Wywz2Pn8,5817
|
|
72
|
+
superb_ai_onprem-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
73
|
+
superb_ai_onprem-0.1.1.dist-info/top_level.txt,sha256=AZIJi8aIRJ8vxBL6vvODXVPadF4oetwn0ji2NiAndpM,11
|
|
74
|
+
superb_ai_onprem-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|