rapidata 2.27.4__py3-none-any.whl → 2.27.6__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 rapidata might be problematic. Click here for more details.
- rapidata/__init__.py +1 -1
- rapidata/api_client/__init__.py +19 -1
- rapidata/api_client/api/__init__.py +1 -0
- rapidata/api_client/api/client_api.py +319 -46
- rapidata/api_client/api/leaderboard_api.py +2506 -0
- rapidata/api_client/models/__init__.py +18 -1
- rapidata/api_client/models/client_model.py +191 -0
- rapidata/api_client/models/create_customer_client_result.py +89 -0
- rapidata/api_client/models/create_leaderboard_model.py +91 -0
- rapidata/api_client/models/create_leaderboard_participant_model.py +87 -0
- rapidata/api_client/models/create_leaderboard_participant_result.py +89 -0
- rapidata/api_client/models/create_leaderboard_result.py +87 -0
- rapidata/api_client/models/dynamic_client_registration_request.py +175 -0
- rapidata/api_client/models/get_leaderboard_by_id_result.py +91 -0
- rapidata/api_client/models/get_participant_by_id_result.py +102 -0
- rapidata/api_client/models/json_web_key.py +258 -0
- rapidata/api_client/models/json_web_key_set.py +115 -0
- rapidata/api_client/models/leaderboard_query_result.py +93 -0
- rapidata/api_client/models/leaderboard_query_result_paged_result.py +105 -0
- rapidata/api_client/models/participant_by_leaderboard.py +102 -0
- rapidata/api_client/models/participant_by_leaderboard_paged_result.py +105 -0
- rapidata/api_client/models/participant_status.py +39 -0
- rapidata/api_client/models/prompt_by_leaderboard_result.py +90 -0
- rapidata/api_client/models/prompt_by_leaderboard_result_paged_result.py +105 -0
- rapidata/api_client_README.md +29 -2
- rapidata/rapidata_client/order/_rapidata_dataset.py +91 -41
- rapidata/rapidata_client/order/_rapidata_order_builder.py +2 -44
- rapidata/rapidata_client/validation/validation_set_manager.py +14 -0
- {rapidata-2.27.4.dist-info → rapidata-2.27.6.dist-info}/METADATA +1 -1
- {rapidata-2.27.4.dist-info → rapidata-2.27.6.dist-info}/RECORD +32 -13
- {rapidata-2.27.4.dist-info → rapidata-2.27.6.dist-info}/LICENSE +0 -0
- {rapidata-2.27.4.dist-info → rapidata-2.27.6.dist-info}/WHEEL +0 -0
|
@@ -149,50 +149,8 @@ class RapidataOrderBuilder:
|
|
|
149
149
|
logger.debug(f"Order created: {order}")
|
|
150
150
|
logger.debug("Adding media to the order.")
|
|
151
151
|
|
|
152
|
-
if
|
|
153
|
-
|
|
154
|
-
self.__dataset._add_media_from_paths(assets, self.__multi_metadata, max_upload_workers)
|
|
155
|
-
|
|
156
|
-
elif (
|
|
157
|
-
all(isinstance(item, TextAsset) for item in self.__assets) and self.__dataset
|
|
158
|
-
):
|
|
159
|
-
assets = cast(list[TextAsset], self.__assets)
|
|
160
|
-
self.__dataset._add_texts(assets, self.__multi_metadata)
|
|
161
|
-
|
|
162
|
-
elif (
|
|
163
|
-
all(isinstance(item, MultiAsset) for item in self.__assets) and self.__dataset
|
|
164
|
-
):
|
|
165
|
-
multi_assets = cast(list[MultiAsset], self.__assets)
|
|
166
|
-
|
|
167
|
-
# Check if all MultiAssets contain the same type of assets
|
|
168
|
-
first_asset_type = type(multi_assets[0].assets[0])
|
|
169
|
-
if not all(
|
|
170
|
-
isinstance(asset, first_asset_type)
|
|
171
|
-
for multi_asset in multi_assets
|
|
172
|
-
for asset in multi_asset.assets
|
|
173
|
-
):
|
|
174
|
-
raise ValueError(
|
|
175
|
-
"All MultiAssets must contain the same type of assets (either all MediaAssets or all TextAssets)."
|
|
176
|
-
)
|
|
177
|
-
|
|
178
|
-
# Process based on the asset type
|
|
179
|
-
if issubclass(first_asset_type, MediaAsset):
|
|
180
|
-
self.__dataset._add_media_from_paths(
|
|
181
|
-
multi_assets, self.__multi_metadata, max_upload_workers
|
|
182
|
-
)
|
|
183
|
-
|
|
184
|
-
elif issubclass(first_asset_type, TextAsset):
|
|
185
|
-
self.__dataset._add_texts(multi_assets, self.__multi_metadata)
|
|
186
|
-
|
|
187
|
-
else:
|
|
188
|
-
raise ValueError(
|
|
189
|
-
"MultiAsset must contain MediaAssets or TextAssets objects."
|
|
190
|
-
)
|
|
191
|
-
|
|
192
|
-
elif self.__dataset:
|
|
193
|
-
raise ValueError(
|
|
194
|
-
"Media paths must all be of the same type: MediaAsset, TextAsset, or MultiAsset."
|
|
195
|
-
)
|
|
152
|
+
if self.__dataset:
|
|
153
|
+
self.__dataset._add_datapoints(self.__assets, self.__multi_metadata, max_upload_workers)
|
|
196
154
|
|
|
197
155
|
logger.debug("Media added to the order.")
|
|
198
156
|
logger.debug("Setting order to preview")
|
|
@@ -73,6 +73,8 @@ class ValidationSetManager:
|
|
|
73
73
|
```
|
|
74
74
|
This would mean: first datapoint correct answer is "yes", second datapoint is "no" or "maybe"
|
|
75
75
|
"""
|
|
76
|
+
if not datapoints:
|
|
77
|
+
raise ValueError("Datapoints cannot be empty")
|
|
76
78
|
|
|
77
79
|
if len(datapoints) != len(truths):
|
|
78
80
|
raise ValueError("The number of datapoints and truths must be equal")
|
|
@@ -154,6 +156,8 @@ class ValidationSetManager:
|
|
|
154
156
|
```
|
|
155
157
|
This would mean: first comparison image1.jpg has a cat, second comparison image4.jpg has a cat
|
|
156
158
|
"""
|
|
159
|
+
if not datapoints:
|
|
160
|
+
raise ValueError("Datapoints cannot be empty")
|
|
157
161
|
|
|
158
162
|
if len(datapoints) != len(truths):
|
|
159
163
|
raise ValueError("The number of datapoints and truths must be equal")
|
|
@@ -229,6 +233,8 @@ class ValidationSetManager:
|
|
|
229
233
|
```
|
|
230
234
|
This would mean: first datapoint the correct words are "this" and "example", second datapoint is "with"
|
|
231
235
|
"""
|
|
236
|
+
if not datapoints:
|
|
237
|
+
raise ValueError("Datapoints cannot be empty")
|
|
232
238
|
|
|
233
239
|
if not all([isinstance(truth, (list, tuple)) for truth in truths]):
|
|
234
240
|
raise ValueError("Truths must be a list of lists or tuples")
|
|
@@ -291,6 +297,8 @@ class ValidationSetManager:
|
|
|
291
297
|
```
|
|
292
298
|
This would mean: first datapoint the object is in the top left corner, second datapoint the object is in the center
|
|
293
299
|
"""
|
|
300
|
+
if not datapoints:
|
|
301
|
+
raise ValueError("Datapoints cannot be empty")
|
|
294
302
|
|
|
295
303
|
if len(datapoints) != len(truths):
|
|
296
304
|
raise ValueError("The number of datapoints and truths must be equal")
|
|
@@ -364,6 +372,8 @@ class ValidationSetManager:
|
|
|
364
372
|
```
|
|
365
373
|
This would mean: first datapoint the object is in the top left corner, second datapoint the object is in the center
|
|
366
374
|
"""
|
|
375
|
+
if not datapoints:
|
|
376
|
+
raise ValueError("Datapoints cannot be empty")
|
|
367
377
|
|
|
368
378
|
if len(datapoints) != len(truths):
|
|
369
379
|
raise ValueError("The number of datapoints and truths must be equal")
|
|
@@ -437,6 +447,8 @@ class ValidationSetManager:
|
|
|
437
447
|
```
|
|
438
448
|
This would mean: first datapoint the correct interval is from 0 to 10, second datapoint the correct interval is from 20 to 30
|
|
439
449
|
"""
|
|
450
|
+
if not datapoints:
|
|
451
|
+
raise ValueError("Datapoints cannot be empty")
|
|
440
452
|
|
|
441
453
|
if len(datapoints) != len(truths):
|
|
442
454
|
raise ValueError("The number of datapoints and truths must be equal")
|
|
@@ -486,6 +498,8 @@ class ValidationSetManager:
|
|
|
486
498
|
rapids (list[Rapid]): The list of rapids to add to the validation set.
|
|
487
499
|
dimensions (list[str], optional): The dimensions to add to the validation set accross which users will be tracked. Defaults to [] which is the default dimension.
|
|
488
500
|
"""
|
|
501
|
+
if not rapids:
|
|
502
|
+
raise ValueError("Rapids cannot be empty")
|
|
489
503
|
|
|
490
504
|
return self._submit(name=name, rapids=rapids, dimensions=dimensions)
|
|
491
505
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
3
|
-
rapidata/api_client/api/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=h-fS9jURWePpNXWIPSVFdQz2xJ-oaHFEIy0Y_2epD1w,812
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=hJ8b6i_S5KZCpmLupQJRh839MRweXxX85ti0Px7vI78,30530
|
|
3
|
+
rapidata/api_client/api/__init__.py,sha256=K67VMR3zWtv824onw87pEm-K2xrDphRIY04TtKg_k2U,1359
|
|
4
4
|
rapidata/api_client/api/campaign_api.py,sha256=ZEYXEp8_mzsElbklLXBLGnKEfPB1mx8-G5CXfSnibq0,80791
|
|
5
|
-
rapidata/api_client/api/client_api.py,sha256=
|
|
5
|
+
rapidata/api_client/api/client_api.py,sha256=KKgUrEKfqmEAqUCRqcYKRb6G3GLwD6R-JSUsShmo7r8,54313
|
|
6
6
|
rapidata/api_client/api/coco_api.py,sha256=IdXoawGadGo9FaVUbqxHOGYgNmSLjvvEZczBGjtH2-w,46574
|
|
7
7
|
rapidata/api_client/api/compare_workflow_api.py,sha256=BG_cNnR1UO48Jfy2_ZLEcR2mknD0wXbDYKHLNVt4Szw,12833
|
|
8
8
|
rapidata/api_client/api/customer_rapid_api.py,sha256=pGZT7eb5PLRai-9JawPFYzNAYSjwnVbpEyoM5SRHKmY,64539
|
|
@@ -11,6 +11,7 @@ rapidata/api_client/api/dataset_api.py,sha256=nEgh23gbo1BsTCWwVkbOyDkAmI791bcBUk
|
|
|
11
11
|
rapidata/api_client/api/evaluation_workflow_api.py,sha256=E0Phmx54jzXx7LZYGquTqzZSrX2aE5PS9rAs5HdDjvs,15151
|
|
12
12
|
rapidata/api_client/api/feedback_api.py,sha256=efOJOVsdDKXZ8eqIuOR_XsSrrpu_6UihFUDXWZA7Vfo,22342
|
|
13
13
|
rapidata/api_client/api/identity_api.py,sha256=0DXxrczQiOSWsiq2I0JKmOzEGHDahg6Zw7LnhO4BCjc,89157
|
|
14
|
+
rapidata/api_client/api/leaderboard_api.py,sha256=qG2OseTfPxXYatWf5X0i1eFrsYuVGjMUS8GBpKhxrPQ,98183
|
|
14
15
|
rapidata/api_client/api/newsletter_api.py,sha256=3NU6HO5Gtm-RH-nx5hcp2CCE4IZmWHwTfCLMMz-Xpq4,22655
|
|
15
16
|
rapidata/api_client/api/order_api.py,sha256=aAf6bS4gTdSlDI42wjUMDRw0lYP4L3VQjk7JsZsEqKk,413101
|
|
16
17
|
rapidata/api_client/api/pipeline_api.py,sha256=n4JPczdE01qc1AbIgx9nqJvd7ltdo_LsHX4N_lyLwNs,110546
|
|
@@ -25,7 +26,7 @@ rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlG
|
|
|
25
26
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
26
27
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
27
28
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
28
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
29
|
+
rapidata/api_client/models/__init__.py,sha256=aoUMmhAIXeqRbGnephIae8YP795GFZmTxfosiUxugUw,28630
|
|
29
30
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
30
31
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=VsCi27NBGxAtupB_sQZCzUEsTNNgSGV_Mo-Fi0UY1Jw,11657
|
|
31
32
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
@@ -72,6 +73,7 @@ rapidata/api_client/models/classification_metadata.py,sha256=UaMdCqQ7vxF8Ltn9cGM
|
|
|
72
73
|
rapidata/api_client/models/classification_metadata_filter_config.py,sha256=Piv8LaeS856jP5SCbXpOAR-zbqVtXQTUtXxdIC6ViB4,3128
|
|
73
74
|
rapidata/api_client/models/classification_metadata_model.py,sha256=3ueV8gx1rwf86-zMXqrgJA5v_712buXEelP1Tv5Wk8A,3052
|
|
74
75
|
rapidata/api_client/models/classify_payload.py,sha256=UmIU4mE6pR3KdrxEzFTgPTsN0H8YUPiUaZuy2JOTnAE,3104
|
|
76
|
+
rapidata/api_client/models/client_model.py,sha256=bfDEDHkMya9HIUq3zrY49CoaOiWPTeFTJ8BUGJbRJM0,9600
|
|
75
77
|
rapidata/api_client/models/clients_query_result.py,sha256=5zOp8vWYs_nBVQc624nM-UesEHtLUqx-3TJ9Ibsdc4Y,3561
|
|
76
78
|
rapidata/api_client/models/clients_query_result_paged_result.py,sha256=EielWNLAwC_usC_Zqaw0t9fXoHQShOluoCKFzExYanY,3518
|
|
77
79
|
rapidata/api_client/models/clone_dataset_model.py,sha256=FF8AFEmI1VGDI0w9BRF3L_kPK_ZHYWRz-dB0WObI0mM,3259
|
|
@@ -112,6 +114,7 @@ rapidata/api_client/models/create_client_result.py,sha256=OHBnTMyW5Nno39JHoJkcQb
|
|
|
112
114
|
rapidata/api_client/models/create_complex_order_model.py,sha256=46n1IJRAIyCYCGXKvF5LjMVf4pXILC-kP86oU6YKo1w,3337
|
|
113
115
|
rapidata/api_client/models/create_complex_order_model_pipeline.py,sha256=yF_-tOciVlAiDlWb1bptnoEFGlQis68WEI_EeviEFk8,4939
|
|
114
116
|
rapidata/api_client/models/create_complex_order_result.py,sha256=UW57ewUKFPZcx8lRjaICdYZWVPS7Yzr6eqK3-i-tf4s,3300
|
|
117
|
+
rapidata/api_client/models/create_customer_client_result.py,sha256=yJ0XbuMxewYG69u9wIC4KFUhyah6E3YT01BJT0hw-sE,2704
|
|
115
118
|
rapidata/api_client/models/create_datapoint_from_files_model.py,sha256=8CgGHc4Y5AuENVd39bgh2B-EW015pgJ99k7dfTlpo14,3825
|
|
116
119
|
rapidata/api_client/models/create_datapoint_from_files_model_metadata_inner.py,sha256=SFxzdkSS78QS4rUqQ8a8PTScI9BJbH5I5Sul6B_CF7A,8704
|
|
117
120
|
rapidata/api_client/models/create_datapoint_from_text_sources_model.py,sha256=Ka0brayvm7CyC_lZ_eL1uxJeCQxzGE1GnQrjSvoP_dQ,4368
|
|
@@ -128,6 +131,10 @@ rapidata/api_client/models/create_empty_validation_set_result.py,sha256=Z8s0Kjz2
|
|
|
128
131
|
rapidata/api_client/models/create_independent_workflow_model.py,sha256=w7lHQXKG1NpTevCmhIdWwLXcdVAdIX2pV82GgInWHqU,3272
|
|
129
132
|
rapidata/api_client/models/create_independent_workflow_model_workflow_config.py,sha256=GVVxs9VAmM2hTXWWoqKNXD9E7qRk3CO88YRm1AHxJCI,5845
|
|
130
133
|
rapidata/api_client/models/create_independent_workflow_result.py,sha256=JOhS75mAH-VvarvDDFsycahPlIezVKT1upuqIo93hC0,2719
|
|
134
|
+
rapidata/api_client/models/create_leaderboard_model.py,sha256=K8-QgaPGYeIJdh2ob_nkszdAbamrXbjFBU7WeD3C8AU,2993
|
|
135
|
+
rapidata/api_client/models/create_leaderboard_participant_model.py,sha256=-6ZgPLmnU2qzV3g0Lmv5GcN3b8ZvCyICc-HXyqFxV3Y,2630
|
|
136
|
+
rapidata/api_client/models/create_leaderboard_participant_result.py,sha256=rwnfQHLNJJj18ecQDksLZyQ7xPXmvFzD0jxg4V9s2yk,2746
|
|
137
|
+
rapidata/api_client/models/create_leaderboard_result.py,sha256=y3WVLjBUgBLF7bGCwTNTZ06EVad0cZ332jyrmzprfaY,2506
|
|
131
138
|
rapidata/api_client/models/create_legacy_client_model.py,sha256=8LcKnjv3Lq6w28ku6NG6nG9qfxWQnfPow53maGlwNdE,2802
|
|
132
139
|
rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0UytTW6dpihAeNyfCc4C1m0XfY53hQ,2672
|
|
133
140
|
rapidata/api_client/models/create_order_model.py,sha256=-HxQFak16jqqeSDAsKyBDBTlpNF0OwOx_-s--C7SYJw,12370
|
|
@@ -161,6 +168,7 @@ rapidata/api_client/models/demographic.py,sha256=7lUHDHUHxhqdsrMFmKGuVfqTPVC86FM
|
|
|
161
168
|
rapidata/api_client/models/demographic_metadata_model.py,sha256=zTow5DwlpJ1lOiSfiFkEO1QHfMW97A1YyDvJjYLpgCI,3726
|
|
162
169
|
rapidata/api_client/models/demographic_rapid_selection_config.py,sha256=83bLP2Of1i-1kTHPpVOdV6v5w_OScsGvPMSBRKnMTII,3228
|
|
163
170
|
rapidata/api_client/models/demographic_selection.py,sha256=-RIAemMmI0omKU6cVIY_a080lP7ccc5IGbn1yBGHzes,3140
|
|
171
|
+
rapidata/api_client/models/dynamic_client_registration_request.py,sha256=dRc_A3w6GCBse_Z_yj7mKUXBRFhR-U9QyyjzWc1iPwo,8425
|
|
164
172
|
rapidata/api_client/models/early_stopping_referee_model.py,sha256=FhLrKAhvoI0OAMMEoJn0DjQo3WhTU_5fyzv8sd83kRk,3489
|
|
165
173
|
rapidata/api_client/models/effort_capped_selection.py,sha256=Pk35T_CKCNga4dlctndxYnGyjMbTYjwlUL9Hsx3U-jo,3979
|
|
166
174
|
rapidata/api_client/models/elo_config.py,sha256=r06LW9FrKOUhkwv_T_TajX7ljUCBBaw1_D61ZYnk8eU,2841
|
|
@@ -204,8 +212,10 @@ rapidata/api_client/models/get_datapoints_by_dataset_id_result.py,sha256=u8DHnbn
|
|
|
204
212
|
rapidata/api_client/models/get_dataset_by_id_result.py,sha256=buK_gpa_G4uTQ3g05A3P7kW9v1pfsWU_l1EXCAGyC_o,2502
|
|
205
213
|
rapidata/api_client/models/get_dataset_progress_result.py,sha256=Zh0ALJyjWXD87FDmwQwUGOXj3cP1ozLsTHwWxQ4404E,2741
|
|
206
214
|
rapidata/api_client/models/get_failed_datapoints_result.py,sha256=yx9mD0YVaP3NCs-3MJ2lxJTUb3VfjtYqYdb4XMjQw88,3035
|
|
215
|
+
rapidata/api_client/models/get_leaderboard_by_id_result.py,sha256=rXZOGH8qzMh5LwoONXuMkRxBpFRs9lKUNFV_6l6df7w,2749
|
|
207
216
|
rapidata/api_client/models/get_order_by_id_result.py,sha256=46bKh7NsaCprCpROqRsgo4-Cr6XkG5iTfJ3H8Ni-zhY,3236
|
|
208
217
|
rapidata/api_client/models/get_order_results_result.py,sha256=zHCTEa1VgbIoGXHsBtJ3z8wZ9X8hy0zRh_GpA4pT0vA,2830
|
|
218
|
+
rapidata/api_client/models/get_participant_by_id_result.py,sha256=kr4_o9tVIMUvnPO4d_Dd2RYH1r-slDpwudWYl94XzGQ,3290
|
|
209
219
|
rapidata/api_client/models/get_pipeline_by_id_result.py,sha256=UfedDCodsDJHrKnY5ZEGozML3YkcLbq3yPOQtvmof4E,3929
|
|
210
220
|
rapidata/api_client/models/get_pipeline_by_id_result_artifacts_value.py,sha256=tvh4GD4YeU9VnXKWLiqTfqGsC-90hUa_zAd-qkcwEPs,8476
|
|
211
221
|
rapidata/api_client/models/get_public_orders_result.py,sha256=1Eq-R7wX2fKREuu-o1u5pVqHnc89-_--pkz78y80oEM,3001
|
|
@@ -242,8 +252,12 @@ rapidata/api_client/models/in_progress_rapid_model.py,sha256=Id7FaxjoTJIA7XPebOD
|
|
|
242
252
|
rapidata/api_client/models/inspect_report_result.py,sha256=z60C3oklTSwB9SPrCKfqGqNqnMko4pmYeBG4X61go6c,2724
|
|
243
253
|
rapidata/api_client/models/issue_auth_token_result.py,sha256=CkXxxJXAhN1ibABO4VVw-zIPzkq0NW_NTun8iNCpB2w,2575
|
|
244
254
|
rapidata/api_client/models/issue_client_auth_token_result.py,sha256=VDZ3-wCqDh4S0KCA3Z8crojS9tjgebLta07JS5w0oYA,2581
|
|
255
|
+
rapidata/api_client/models/json_web_key.py,sha256=-rzhQcNFhAwLp0NzNIBBrxW3kMy9eXrTBVjLx7gGah0,9197
|
|
256
|
+
rapidata/api_client/models/json_web_key_set.py,sha256=p-28nu1i9n3s-29i_cX-QbtCFogP253IWgjIqE_aS1o,3812
|
|
245
257
|
rapidata/api_client/models/labeling_selection.py,sha256=x-Fxo_p7kojoQsXlWBbuej-b0cF3ISAl-g2zKt9vhjc,3892
|
|
246
258
|
rapidata/api_client/models/language_user_filter_model.py,sha256=PZqalLtE_mlZ9ND8h4NU1fnbtT-zcIe1uxRSeWwHvqI,2990
|
|
259
|
+
rapidata/api_client/models/leaderboard_query_result.py,sha256=9s8qDcGw09dkW3q6D2Wmb6Q-oTxppjAZkRBCHSMMvPo,2798
|
|
260
|
+
rapidata/api_client/models/leaderboard_query_result_paged_result.py,sha256=GFUzMXIWMB-YnsqK-MtsauGPNLsbL-vy_Ya1TEy9WGM,3550
|
|
247
261
|
rapidata/api_client/models/legacy_issue_client_auth_token_result.py,sha256=5-CxYQ1zTDhtVInsrHF-3Nr_1cy0kz5geXU_ZtE9ris,2605
|
|
248
262
|
rapidata/api_client/models/legacy_request_password_reset_command.py,sha256=gCJhaFM2b2dLTnwf6HuErjhwY-Oe-xhg0J5i001TFB8,3222
|
|
249
263
|
rapidata/api_client/models/legacy_submit_password_reset_command.py,sha256=q-JvgxeFBxHDTem34MiefKYavjPoQtcW25ujaSXkyCc,3452
|
|
@@ -303,6 +317,9 @@ rapidata/api_client/models/order_state.py,sha256=Vnt5CdDKom-CVsoG0sDaAXYgNkUTnkT
|
|
|
303
317
|
rapidata/api_client/models/original_filename_metadata.py,sha256=_VViiu2YOW6P4KaMZsbfYneXEcEnm4AroVEVVzOpHlM,3215
|
|
304
318
|
rapidata/api_client/models/original_filename_metadata_model.py,sha256=LsbJg_t1FdhwdfF4URn6rxB2huUim6e15PrdxLTcaQo,3111
|
|
305
319
|
rapidata/api_client/models/page_info.py,sha256=8vmnkRGqq38mIQCOMInYrPLFDBALxkWZUM-Z_M1-XK4,2766
|
|
320
|
+
rapidata/api_client/models/participant_by_leaderboard.py,sha256=laGhegj2RMayDjgxK5XSzRGmHo4i-d1rJtEvcpCKrcI,3214
|
|
321
|
+
rapidata/api_client/models/participant_by_leaderboard_paged_result.py,sha256=r92XzY-nGOdV2_TYHZe9kG5ksPDzyBQ8Nwkqs_c5yoE,3566
|
|
322
|
+
rapidata/api_client/models/participant_status.py,sha256=-7uRqxrNRVQWFyT7e6WiAFDujlXqVunQtrG3a-7YwKM,824
|
|
306
323
|
rapidata/api_client/models/pipeline_id_workflow_artifact_id_put_request.py,sha256=4HeDc5IvTpjPHH6xy5OAlpPL8dWwxrR9Vwsej3dK6LA,5979
|
|
307
324
|
rapidata/api_client/models/pipeline_id_workflow_put_request.py,sha256=yblj0m6_Dql5JCbnQD93JEvkL-H5ZvgG__DMGj5uMAg,5909
|
|
308
325
|
rapidata/api_client/models/polygon_payload.py,sha256=s59uxEbr0sA8zfOFdcjcb9cDf06q4M4dUxG6zu__WmE,2936
|
|
@@ -319,6 +336,8 @@ rapidata/api_client/models/probabilistic_attach_category_referee_config.py,sha25
|
|
|
319
336
|
rapidata/api_client/models/probabilistic_attach_category_referee_info.py,sha256=YQogmjE7X6LzBXqab8muv5c-O5Mj8eYZXZk9sKmaMlA,3299
|
|
320
337
|
rapidata/api_client/models/problem_details.py,sha256=00OWbk93SWXdEVNs8rceJq6CAlG4KIRYRR1sqasZ35Q,4506
|
|
321
338
|
rapidata/api_client/models/prompt_asset_metadata_input.py,sha256=NSSUbq1Y-8psDPX5Z5qJU6fLy2LuJQZ7aoz76RjiH7w,3421
|
|
339
|
+
rapidata/api_client/models/prompt_by_leaderboard_result.py,sha256=KRf0XbpOBjCwZPx4VPZk5MFRV7J-KEZG5yUHAC3ODKo,2679
|
|
340
|
+
rapidata/api_client/models/prompt_by_leaderboard_result_paged_result.py,sha256=xOR0FR1Q1JM-DhWircDWLoBOyr8PmXIUgEDiPgmnRcc,3575
|
|
322
341
|
rapidata/api_client/models/prompt_metadata.py,sha256=Oa3fQq-h5EIL7ndpP8FMvfF4sU8PowBqca8LeKNVzac,3060
|
|
323
342
|
rapidata/api_client/models/prompt_metadata_input.py,sha256=x6GF0wKB043lMXOYCk217L9I7O0wp7aZaZc2nouVzbg,2976
|
|
324
343
|
rapidata/api_client/models/prompt_metadata_model.py,sha256=zE8RJv5aG1UZ4B0N-l3bQgPJJxxXRJ6mvNGmh43bnsg,2956
|
|
@@ -446,7 +465,7 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
|
|
|
446
465
|
rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
|
|
447
466
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
448
467
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
449
|
-
rapidata/api_client_README.md,sha256=
|
|
468
|
+
rapidata/api_client_README.md,sha256=81eV2jPGLgFdtvjLD_SSn2jixfyHOO5MPvj3hvF65qk,60685
|
|
450
469
|
rapidata/rapidata_client/__init__.py,sha256=xiMeESpBd-q11SnzRNSupqGqncLIjrQJgxdoilC1muA,1080
|
|
451
470
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
471
|
rapidata/rapidata_client/api/rapidata_exception.py,sha256=BIdmHRrJUGW-Mqhp1H_suemZaR6w9TgjWq-ZW5iUPdQ,3878
|
|
@@ -489,8 +508,8 @@ rapidata/rapidata_client/metadata/_prompt_metadata.py,sha256=ecycAq_t2HCEptxgNxy
|
|
|
489
508
|
rapidata/rapidata_client/metadata/_public_text_metadata.py,sha256=uXavDp1ucy_9u5n0girqWD_SkFr7tplGMK_2aqyyHIA,529
|
|
490
509
|
rapidata/rapidata_client/metadata/_select_words_metadata.py,sha256=-MK5yQDi_G3BKEes6aaVyCcobB-sEy29b6bfo5f4pic,594
|
|
491
510
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
|
-
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=
|
|
493
|
-
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=
|
|
511
|
+
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=v5b86EDF0ITIOV4k4QU8gQ4eFPz2ow-4HV_mmC9tb4c,21264
|
|
512
|
+
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=ioNGmWQF4KMdzvm-GIfAeflK8AgKaczZ1FfKkrZ1xXY,12649
|
|
494
513
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=uk2p6Hx2KTN4Oq2S35esdip7yLR44y-kkamS-5TBPFE,12752
|
|
495
514
|
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=K9Nc66UmBfFQjSe78SMdZTOa4z3j5TRyvBnEX0Cs0u4,38306
|
|
496
515
|
rapidata/rapidata_client/order/rapidata_results.py,sha256=UllYpuqpm2inKdRNhClaUwApuxsMLrvrGDsrHA5KqbY,8111
|
|
@@ -528,7 +547,7 @@ rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MD
|
|
|
528
547
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=t3_Kn6doKXdnJdtbwefXnYKPiTKHneJl9E2inkDSqL8,589
|
|
529
548
|
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=xcCPTTiWS-1TK_Bd0Qpt916dSdvEs3j6XeY_Xddo39k,4968
|
|
530
549
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=s5VAq8H5CKACWfmIQuz9kHC8t2nd-xEHGGUj9pIfXKI,14386
|
|
531
|
-
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=
|
|
550
|
+
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=hhtnrXw09FGcL7Xnm58I-vQT4mdhtOWsbR8HhOfeoeU,30323
|
|
532
551
|
rapidata/rapidata_client/workflow/__init__.py,sha256=7nXcY91xkxjHudBc9H0fP35eBBtgwHGWTQKbb-M4h7Y,477
|
|
533
552
|
rapidata/rapidata_client/workflow/_base_workflow.py,sha256=XyIZFKS_RxAuwIHS848S3AyLEHqd07oTD_5jm2oUbsw,762
|
|
534
553
|
rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=9bT54wxVJgxC-zLk6MVNbseFpzYrvFPjt7DHvxqYfnk,1736
|
|
@@ -544,7 +563,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
|
|
|
544
563
|
rapidata/service/credential_manager.py,sha256=pUEEtp6VrFWYhfUUtyqmS0AlRqe2Y0kFkY6o22IT4KM,8682
|
|
545
564
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
546
565
|
rapidata/service/openapi_service.py,sha256=J07TB4P3cz9KCU7k_fwuMQwGXlq_nJx_m1_xHbZoCg0,4867
|
|
547
|
-
rapidata-2.27.
|
|
548
|
-
rapidata-2.27.
|
|
549
|
-
rapidata-2.27.
|
|
550
|
-
rapidata-2.27.
|
|
566
|
+
rapidata-2.27.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
567
|
+
rapidata-2.27.6.dist-info/METADATA,sha256=v6CiMxdWsWEeWVkPHVlGXs1JsDZqXZpbeTNQAAg-Jm0,1264
|
|
568
|
+
rapidata-2.27.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
569
|
+
rapidata-2.27.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|