superb-ai-onprem 0.9.0__py3-none-any.whl → 0.9.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 CHANGED
@@ -10,7 +10,6 @@ from .slices.service import SliceService
10
10
  from .activities.service import ActivityService
11
11
  from .exports.service import ExportService
12
12
  from .contents.service import ContentService
13
- from .predictions.service import PredictionService
14
13
  from .models.service import ModelService
15
14
  from .inferences.service import InferService
16
15
 
@@ -21,7 +20,6 @@ from .entities import (
21
20
  Scene,
22
21
  Annotation,
23
22
  AnnotationVersion,
24
- Prediction,
25
23
  DataMeta,
26
24
  Dataset,
27
25
  Slice,
@@ -90,7 +88,6 @@ __all__ = (
90
88
  "ActivityService",
91
89
  "ExportService",
92
90
  "ContentService",
93
- "PredictionService",
94
91
  "ModelService",
95
92
  "InferService",
96
93
 
@@ -99,7 +96,6 @@ __all__ = (
99
96
  "Scene",
100
97
  "Annotation",
101
98
  "AnnotationVersion",
102
- "Prediction",
103
99
  "DataMeta",
104
100
  "Dataset",
105
101
  "Slice",
@@ -109,7 +105,6 @@ __all__ = (
109
105
  "Export",
110
106
  "Content",
111
107
  "Frame",
112
- "PredictionSet",
113
108
  "Model",
114
109
  "Comment",
115
110
  "Reply",
spb_onprem/_version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.9.0'
32
- __version_tuple__ = version_tuple = (0, 9, 0)
31
+ __version__ = version = '0.9.1'
32
+ __version_tuple__ = version_tuple = (0, 9, 1)
33
33
 
34
34
  __commit_id__ = commit_id = None
spb_onprem/entities.py CHANGED
@@ -3,7 +3,6 @@ from .data.entities import (
3
3
  Scene,
4
4
  Annotation,
5
5
  AnnotationVersion,
6
- Prediction,
7
6
  DataMeta,
8
7
  DataSlice,
9
8
  Frame,
@@ -29,7 +28,6 @@ from .activities.entities import (
29
28
  )
30
29
  from .exports.entities import Export
31
30
  from .contents.entities import Content
32
- from .predictions.entities import PredictionSet
33
31
  from .models.entities import Model
34
32
 
35
33
  __all__ = [
@@ -38,7 +36,6 @@ __all__ = [
38
36
  "Scene",
39
37
  "Annotation",
40
38
  "AnnotationVersion",
41
- "Prediction",
42
39
  "DataMeta",
43
40
  "DataSlice",
44
41
  "Dataset",
@@ -48,7 +45,6 @@ __all__ = [
48
45
  "Export",
49
46
  "Content",
50
47
  "Frame",
51
- "PredictionSet",
52
48
  "Model",
53
49
  "Comment",
54
50
  "Reply",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: superb-ai-onprem
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: Python SDK for Superb AI On-premise
5
5
  Home-page: https://github.com/Superb-AI-Suite/superb-ai-onprem-python
6
6
  Author: Superb AI
@@ -1,9 +1,9 @@
1
- spb_onprem/__init__.py,sha256=Q5aooIhNiuf0z9-S5k5FBfM_oA_c92kCzWdjLuDX4wE,3294
2
- spb_onprem/_version.py,sha256=TvxBYkx8Rz_Q1S3JFp831BRT8Wo0Yxt6TJMtgZKenTo,704
1
+ spb_onprem/__init__.py,sha256=JZHiLuMnbQA-xFapkImbFEA8quPbG2u_iyySTMq1ENQ,3163
2
+ spb_onprem/_version.py,sha256=LwGndsRSpclYq-j3wgRr2nzOXwUYj0Jtg7Kof7R0BEw,704
3
3
  spb_onprem/base_model.py,sha256=XLtyoxRBs68LrvbFH8V4EvQGPc2W17koC310MnS37jc,442
4
4
  spb_onprem/base_service.py,sha256=_6aLM_zn4Ycd7nAc_BA395KmxH5lcSxd7gmgG9DdOf4,6518
5
5
  spb_onprem/base_types.py,sha256=5HO6uy6qf08b4KSElwIaGy7UkoQG2KqVO6gcHbsqqSo,269
6
- spb_onprem/entities.py,sha256=rpkJORjr5d6Mwmt-PU04z_6JOj7w_bYqZyf9zEKcOnA,1206
6
+ spb_onprem/entities.py,sha256=bgRWSF_ksfAD6LxVpvEx5eAHqEnFIZL4Xh2Lw2uxvi4,1103
7
7
  spb_onprem/exceptions.py,sha256=jx5rTGsVZ5shOdbgQzk8GcSyMWFtb_3xhPq6Sylwc5o,478
8
8
  spb_onprem/searches.py,sha256=D6FUAf0cpjkRxNOBnz3HDFcnVFxSu2B6xkHMWKF0dOU,1754
9
9
  spb_onprem/activities/__init__.py,sha256=iTHUza8mtiBd_QEPH-0tzrOsd_VSwSQNMbzVWfebQ6c,175
@@ -131,7 +131,7 @@ spb_onprem/slices/params/update_slice.py,sha256=kryOmCnRTQ_OU0qDKgugppLrpeUpuLwm
131
131
  spb_onprem/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
132
  spb_onprem/users/entities/__init__.py,sha256=X8HZsCTlQnuPszok3AwI-i7bsQi0Ehul5L_2jZaol5E,57
133
133
  spb_onprem/users/entities/auth.py,sha256=_KP-7yUErBxhJMm-dE3ObprPEG6e0JI2qNg6g8aK1qM,3371
134
- superb_ai_onprem-0.9.0.dist-info/licenses/LICENSE,sha256=CdinbFiHKGkGl6cPde6WgXhMuzyUXEG6tzy2-7udZ8o,1066
134
+ superb_ai_onprem-0.9.1.dist-info/licenses/LICENSE,sha256=CdinbFiHKGkGl6cPde6WgXhMuzyUXEG6tzy2-7udZ8o,1066
135
135
  tests/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
136
136
  tests/activities/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
137
137
  tests/activities/real_test.py,sha256=0gQHg7rIEuZndGZyNHMWSD5nUZPMsUGigfCjWFxMthQ,1786
@@ -152,7 +152,7 @@ tests/models/__init__.py,sha256=Z2naiUgIjI-nHGsldwze1BqpV5JfDKTaBk-vg6_h6t4,21
152
152
  tests/models/test_model_service.py,sha256=lQKFPHlfxhqcnrKHz6l2sGp53lpmC_kCHgQ-sXBbgMw,7556
153
153
  tests/predictions/__init__.py,sha256=mFAXy0xOEXVYM7quYfIhwSih3kcEDdD4rLPq5G91Igg,26
154
154
  tests/predictions/test_prediction_service.py,sha256=u2MYXNXSXKRAbv-Rz7sV0roitbD2h5U5ZIAaqeFMA1M,12632
155
- superb_ai_onprem-0.9.0.dist-info/METADATA,sha256=-1aVDfl8Ht0q8pHnHr2BIWDp2dcplV1YAZ4m5haBfho,9627
156
- superb_ai_onprem-0.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
157
- superb_ai_onprem-0.9.0.dist-info/top_level.txt,sha256=LbqU6FjWKaxO7FPS5-71e3OIS8VgBi5VrtQMWFOW25Q,17
158
- superb_ai_onprem-0.9.0.dist-info/RECORD,,
155
+ superb_ai_onprem-0.9.1.dist-info/METADATA,sha256=XnYNxEQdA1w0MoijwLSEvUbyqliFEXTpcKaFsyiFNhU,9627
156
+ superb_ai_onprem-0.9.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
157
+ superb_ai_onprem-0.9.1.dist-info/top_level.txt,sha256=LbqU6FjWKaxO7FPS5-71e3OIS8VgBi5VrtQMWFOW25Q,17
158
+ superb_ai_onprem-0.9.1.dist-info/RECORD,,