rapidata 1.2.1__py3-none-any.whl → 1.2.3__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 +4 -0
- rapidata/api_client/__init__.py +4 -0
- rapidata/api_client/api/identity_api.py +289 -11
- rapidata/api_client/models/__init__.py +4 -0
- rapidata/api_client/models/add_validation_text_rapid_model.py +3 -3
- rapidata/api_client/models/create_client_model.py +9 -6
- rapidata/api_client/models/create_client_result.py +89 -0
- rapidata/api_client/models/create_complex_order_result.py +6 -1
- rapidata/api_client/models/create_legacy_client_model.py +89 -0
- rapidata/api_client/models/create_order_model_workflow.py +24 -10
- rapidata/api_client/models/evaluation_workflow_config.py +102 -0
- rapidata/api_client/models/evaluation_workflow_model.py +96 -0
- rapidata/api_client/models/workflow_config_artifact_model_workflow_config.py +23 -9
- rapidata/api_client_README.md +6 -1
- rapidata/rapidata_client/__init__.py +10 -0
- rapidata/rapidata_client/dataset/rapidata_validation_set.py +26 -6
- rapidata/rapidata_client/dataset/validation_set_builder.py +1 -1
- rapidata/rapidata_client/filter/__init__.py +7 -0
- rapidata/rapidata_client/filter/age_filter.py +16 -0
- rapidata/rapidata_client/filter/base_filter.py +9 -0
- rapidata/rapidata_client/filter/campaign_filter.py +17 -0
- rapidata/rapidata_client/filter/country_filter.py +16 -0
- rapidata/rapidata_client/filter/gender_filter.py +16 -0
- rapidata/rapidata_client/filter/language_filter.py +18 -0
- rapidata/rapidata_client/filter/user_score_filter.py +19 -0
- rapidata/rapidata_client/order/rapidata_order_builder.py +84 -56
- {rapidata-1.2.1.dist-info → rapidata-1.2.3.dist-info}/METADATA +1 -1
- {rapidata-1.2.1.dist-info → rapidata-1.2.3.dist-info}/RECORD +30 -18
- {rapidata-1.2.1.dist-info → rapidata-1.2.3.dist-info}/LICENSE +0 -0
- {rapidata-1.2.1.dist-info → rapidata-1.2.3.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from rapidata.rapidata_client.filter.base_filter import Filter
|
|
3
|
+
from rapidata.api_client.models.gender_user_filter_model import GenderUserFilterModel
|
|
4
|
+
from rapidata.api_client.models.gender import Gender
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class GenderFilter(Filter):
|
|
8
|
+
|
|
9
|
+
def __init__(self, genders: list[Gender]):
|
|
10
|
+
self.genders = genders
|
|
11
|
+
|
|
12
|
+
def to_model(self):
|
|
13
|
+
return GenderUserFilterModel(
|
|
14
|
+
_t="GenderFilter",
|
|
15
|
+
genders=self.genders,
|
|
16
|
+
)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from rapidata.rapidata_client.filter.base_filter import Filter
|
|
3
|
+
from rapidata.api_client.models.language_user_filter_model import (
|
|
4
|
+
LanguageUserFilterModel,
|
|
5
|
+
)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class LanguageFilter(Filter):
|
|
9
|
+
|
|
10
|
+
def __init__(self, language_codes: list[str]):
|
|
11
|
+
# check that all characters in the language codes are lowercase
|
|
12
|
+
if not all([code.islower() for code in language_codes]):
|
|
13
|
+
raise ValueError("Language codes must be lowercase")
|
|
14
|
+
|
|
15
|
+
self.languages = language_codes
|
|
16
|
+
|
|
17
|
+
def to_model(self):
|
|
18
|
+
return LanguageUserFilterModel(_t="LanguageFilter", languages=self.languages)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from rapidata.rapidata_client.filter.base_filter import Filter
|
|
3
|
+
from rapidata.api_client.models.user_score_user_filter_model import (
|
|
4
|
+
UserScoreUserFilterModel,
|
|
5
|
+
)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class UserScoreFilter(Filter):
|
|
9
|
+
|
|
10
|
+
def __init__(self, lower_bound: int = 0, upper_bound: int = 1):
|
|
11
|
+
self.upper_bound = upper_bound
|
|
12
|
+
self.lower_bound = lower_bound
|
|
13
|
+
|
|
14
|
+
def to_model(self):
|
|
15
|
+
return UserScoreUserFilterModel(
|
|
16
|
+
_t="UserScoreFilter",
|
|
17
|
+
upperbound=self.upper_bound,
|
|
18
|
+
lowerbound=self.lower_bound,
|
|
19
|
+
)
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from warnings import warn
|
|
2
|
+
|
|
1
3
|
from rapidata.api_client.models.aggregator_type import AggregatorType
|
|
2
4
|
from rapidata.api_client.models.capped_selection_selections_inner import (
|
|
3
5
|
CappedSelectionSelectionsInner,
|
|
@@ -21,6 +23,7 @@ from rapidata.rapidata_client.metadata.base_metadata import Metadata
|
|
|
21
23
|
from rapidata.rapidata_client.dataset.rapidata_dataset import RapidataDataset
|
|
22
24
|
from rapidata.rapidata_client.referee.naive_referee import NaiveReferee
|
|
23
25
|
from rapidata.rapidata_client.selection.base_selection import Selection
|
|
26
|
+
from rapidata.rapidata_client.filter import Filter, CountryFilter, LanguageFilter
|
|
24
27
|
from rapidata.rapidata_client.workflow import Workflow
|
|
25
28
|
from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
|
|
26
29
|
from rapidata.rapidata_client.referee import Referee
|
|
@@ -63,8 +66,7 @@ class RapidataOrderBuilder:
|
|
|
63
66
|
self._aggregator: AggregatorType | None = None
|
|
64
67
|
self._validation_set_id: str | None = None
|
|
65
68
|
self._feature_flags: FeatureFlags | None = None
|
|
66
|
-
self.
|
|
67
|
-
self._language_codes: list[str] | None = None
|
|
69
|
+
self._user_filters: list[Filter] = []
|
|
68
70
|
self._selections: list[Selection] = []
|
|
69
71
|
self._rapids_per_bag: int = 2
|
|
70
72
|
self._priority: int = 50
|
|
@@ -87,31 +89,14 @@ class RapidataOrderBuilder:
|
|
|
87
89
|
print("No referee provided, using default NaiveReferee.")
|
|
88
90
|
self._referee = NaiveReferee()
|
|
89
91
|
|
|
90
|
-
user_filters = []
|
|
91
|
-
|
|
92
|
-
if self._country_codes is not None:
|
|
93
|
-
user_filters.append(
|
|
94
|
-
CreateOrderModelUserFiltersInner(
|
|
95
|
-
CountryUserFilterModel(
|
|
96
|
-
_t="CountryFilter", countries=self._country_codes
|
|
97
|
-
)
|
|
98
|
-
)
|
|
99
|
-
)
|
|
100
|
-
|
|
101
|
-
if self._language_codes is not None:
|
|
102
|
-
user_filters.append(
|
|
103
|
-
CreateOrderModelUserFiltersInner(
|
|
104
|
-
LanguageUserFilterModel(
|
|
105
|
-
_t="LanguageFilter", languages=self._language_codes
|
|
106
|
-
)
|
|
107
|
-
)
|
|
108
|
-
)
|
|
109
|
-
|
|
110
92
|
return CreateOrderModel(
|
|
111
93
|
_t="CreateOrderModel",
|
|
112
94
|
orderName=self._name,
|
|
113
95
|
workflow=CreateOrderModelWorkflow(self._workflow.to_model()),
|
|
114
|
-
userFilters=
|
|
96
|
+
userFilters=[
|
|
97
|
+
CreateOrderModelUserFiltersInner(user_filter.to_model())
|
|
98
|
+
for user_filter in self._user_filters
|
|
99
|
+
],
|
|
115
100
|
referee=CreateOrderModelReferee(self._referee.to_model()),
|
|
116
101
|
validationSetId=self._validation_set_id,
|
|
117
102
|
featureFlags=(
|
|
@@ -149,9 +134,9 @@ class RapidataOrderBuilder:
|
|
|
149
134
|
if isinstance(
|
|
150
135
|
self._workflow, CompareWorkflow
|
|
151
136
|
): # Temporary fix; will be handled by backend in the future
|
|
152
|
-
assert all(
|
|
153
|
-
|
|
154
|
-
)
|
|
137
|
+
assert all(
|
|
138
|
+
isinstance(item, MultiAsset) for item in self._assets
|
|
139
|
+
), "The media paths must be of type MultiAsset for comparison tasks."
|
|
155
140
|
|
|
156
141
|
result = self._openapi_service.order_api.order_create_post(
|
|
157
142
|
create_order_model=order_model
|
|
@@ -167,22 +152,26 @@ class RapidataOrderBuilder:
|
|
|
167
152
|
|
|
168
153
|
if all(isinstance(item, MediaAsset) for item in self._assets):
|
|
169
154
|
assets = cast(list[MediaAsset], self._assets)
|
|
170
|
-
order.dataset.add_media_from_paths(
|
|
171
|
-
|
|
172
|
-
)
|
|
173
|
-
|
|
155
|
+
order.dataset.add_media_from_paths(assets, self._metadata, max_workers)
|
|
156
|
+
|
|
174
157
|
elif all(isinstance(item, TextAsset) for item in self._assets):
|
|
175
158
|
assets = cast(list[TextAsset], self._assets)
|
|
176
159
|
order.dataset.add_texts(assets)
|
|
177
160
|
|
|
178
161
|
elif all(isinstance(item, MultiAsset) for item in self._assets):
|
|
179
162
|
multi_assets = cast(list[MultiAsset], self._assets)
|
|
180
|
-
|
|
163
|
+
|
|
181
164
|
# Check if all MultiAssets contain the same type of assets
|
|
182
165
|
first_asset_type = type(multi_assets[0].assets[0])
|
|
183
|
-
if not all(
|
|
184
|
-
|
|
185
|
-
|
|
166
|
+
if not all(
|
|
167
|
+
isinstance(asset, first_asset_type)
|
|
168
|
+
for multi_asset in multi_assets
|
|
169
|
+
for asset in multi_asset.assets
|
|
170
|
+
):
|
|
171
|
+
raise ValueError(
|
|
172
|
+
"All MultiAssets must contain the same type of assets (either all MediaAssets or all TextAssets)."
|
|
173
|
+
)
|
|
174
|
+
|
|
186
175
|
# Process based on the asset type
|
|
187
176
|
if issubclass(first_asset_type, MediaAsset):
|
|
188
177
|
order.dataset.add_media_from_paths(
|
|
@@ -193,10 +182,14 @@ class RapidataOrderBuilder:
|
|
|
193
182
|
order.dataset.add_texts(multi_assets)
|
|
194
183
|
|
|
195
184
|
else:
|
|
196
|
-
raise ValueError(
|
|
197
|
-
|
|
185
|
+
raise ValueError(
|
|
186
|
+
"MultiAsset must contain MediaAssets or TextAssets objects."
|
|
187
|
+
)
|
|
188
|
+
|
|
198
189
|
else:
|
|
199
|
-
raise ValueError(
|
|
190
|
+
raise ValueError(
|
|
191
|
+
"Media paths must be of type MediaAsset, TextAsset, or MultiAsset."
|
|
192
|
+
)
|
|
200
193
|
|
|
201
194
|
if submit:
|
|
202
195
|
order.submit()
|
|
@@ -215,7 +208,7 @@ class RapidataOrderBuilder:
|
|
|
215
208
|
"""
|
|
216
209
|
if not isinstance(workflow, Workflow):
|
|
217
210
|
raise TypeError("Workflow must be of type Workflow.")
|
|
218
|
-
|
|
211
|
+
|
|
219
212
|
self._workflow = workflow
|
|
220
213
|
return self
|
|
221
214
|
|
|
@@ -231,7 +224,7 @@ class RapidataOrderBuilder:
|
|
|
231
224
|
"""
|
|
232
225
|
if not isinstance(referee, Referee):
|
|
233
226
|
raise TypeError("Referee must be of type Referee.")
|
|
234
|
-
|
|
227
|
+
|
|
235
228
|
self._referee = referee
|
|
236
229
|
return self
|
|
237
230
|
|
|
@@ -255,15 +248,17 @@ class RapidataOrderBuilder:
|
|
|
255
248
|
|
|
256
249
|
for a in asset:
|
|
257
250
|
if not isinstance(a, (MediaAsset, TextAsset, MultiAsset)):
|
|
258
|
-
raise TypeError(
|
|
251
|
+
raise TypeError(
|
|
252
|
+
"Media paths must be of type MediaAsset, TextAsset, or MultiAsset."
|
|
253
|
+
)
|
|
259
254
|
|
|
260
255
|
if metadata:
|
|
261
256
|
for data in metadata:
|
|
262
257
|
if not isinstance(data, Metadata):
|
|
263
258
|
raise TypeError("Metadata must be of type Metadata.")
|
|
264
|
-
|
|
259
|
+
|
|
265
260
|
self._assets = asset
|
|
266
|
-
self._metadata = metadata
|
|
261
|
+
self._metadata = metadata # type: ignore
|
|
267
262
|
return self
|
|
268
263
|
|
|
269
264
|
def feature_flags(self, feature_flags: FeatureFlags) -> "RapidataOrderBuilder":
|
|
@@ -278,10 +273,33 @@ class RapidataOrderBuilder:
|
|
|
278
273
|
"""
|
|
279
274
|
if not isinstance(feature_flags, FeatureFlags):
|
|
280
275
|
raise TypeError("Feature flags must be of type FeatureFlags.")
|
|
281
|
-
|
|
276
|
+
|
|
282
277
|
self._feature_flags = feature_flags
|
|
283
278
|
return self
|
|
284
279
|
|
|
280
|
+
def filters(self, filters: Sequence[Filter]) -> "RapidataOrderBuilder":
|
|
281
|
+
"""
|
|
282
|
+
Set the filters for the order, e.g., country, language, userscore, etc.
|
|
283
|
+
|
|
284
|
+
Args:
|
|
285
|
+
filters (Sequence[Filters]): The user filters to be set.
|
|
286
|
+
|
|
287
|
+
Returns:
|
|
288
|
+
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
289
|
+
"""
|
|
290
|
+
if not isinstance(filters, list):
|
|
291
|
+
raise TypeError("Filters must be provided as a list of Filter objects.")
|
|
292
|
+
|
|
293
|
+
for f in filters:
|
|
294
|
+
if not isinstance(f, Filter):
|
|
295
|
+
raise TypeError("Filters must be of type Filter.")
|
|
296
|
+
|
|
297
|
+
if len(self._user_filters) > 0:
|
|
298
|
+
print("Overwriting existing user filters.")
|
|
299
|
+
|
|
300
|
+
self._user_filters = filters
|
|
301
|
+
return self
|
|
302
|
+
|
|
285
303
|
def country_filter(self, country_codes: list[str]) -> "RapidataOrderBuilder":
|
|
286
304
|
"""
|
|
287
305
|
Set the target country codes for the order. E.g. `country_codes=["DE", "CH", "AT"]` for Germany, Switzerland, and Austria.
|
|
@@ -292,14 +310,18 @@ class RapidataOrderBuilder:
|
|
|
292
310
|
Returns:
|
|
293
311
|
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
294
312
|
"""
|
|
313
|
+
warn(
|
|
314
|
+
"The country_filter method is deprecated. Use the filters method instead.",
|
|
315
|
+
DeprecationWarning,
|
|
316
|
+
)
|
|
295
317
|
if not isinstance(country_codes, list):
|
|
296
318
|
raise TypeError("Country codes must be provided as a list of strings.")
|
|
297
|
-
|
|
319
|
+
|
|
298
320
|
for code in country_codes:
|
|
299
321
|
if not isinstance(code, str):
|
|
300
322
|
raise TypeError("Country codes must be of type str.")
|
|
301
|
-
|
|
302
|
-
self.
|
|
323
|
+
|
|
324
|
+
self._user_filters.append(CountryFilter(country_codes))
|
|
303
325
|
return self
|
|
304
326
|
|
|
305
327
|
def language_filter(self, language_codes: list[str]) -> "RapidataOrderBuilder":
|
|
@@ -312,13 +334,17 @@ class RapidataOrderBuilder:
|
|
|
312
334
|
Returns:
|
|
313
335
|
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
314
336
|
"""
|
|
337
|
+
warn(
|
|
338
|
+
"The language_filter method is deprecated. Use the filters method instead.",
|
|
339
|
+
DeprecationWarning,
|
|
340
|
+
)
|
|
315
341
|
if not isinstance(language_codes, list):
|
|
316
342
|
raise TypeError("Language codes must be provided as a list of strings.")
|
|
317
|
-
|
|
343
|
+
|
|
318
344
|
if not all(isinstance(code, str) for code in language_codes):
|
|
319
345
|
raise TypeError("Language codes must be of type str.")
|
|
320
|
-
|
|
321
|
-
self.
|
|
346
|
+
|
|
347
|
+
self._user_filters.append(LanguageFilter(language_codes))
|
|
322
348
|
return self
|
|
323
349
|
|
|
324
350
|
def aggregator(self, aggregator: AggregatorType) -> "RapidataOrderBuilder":
|
|
@@ -333,7 +359,7 @@ class RapidataOrderBuilder:
|
|
|
333
359
|
"""
|
|
334
360
|
if not isinstance(aggregator, AggregatorType):
|
|
335
361
|
raise TypeError("Aggregator must be of type AggregatorType.")
|
|
336
|
-
|
|
362
|
+
|
|
337
363
|
self._aggregator = aggregator
|
|
338
364
|
return self
|
|
339
365
|
|
|
@@ -349,7 +375,7 @@ class RapidataOrderBuilder:
|
|
|
349
375
|
"""
|
|
350
376
|
if not isinstance(validation_set_id, str):
|
|
351
377
|
raise TypeError("Validation set ID must be of type str.")
|
|
352
|
-
|
|
378
|
+
|
|
353
379
|
self._validation_set_id = validation_set_id
|
|
354
380
|
return self
|
|
355
381
|
|
|
@@ -379,13 +405,15 @@ class RapidataOrderBuilder:
|
|
|
379
405
|
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
380
406
|
"""
|
|
381
407
|
if not isinstance(selections, list):
|
|
382
|
-
raise TypeError(
|
|
383
|
-
|
|
408
|
+
raise TypeError(
|
|
409
|
+
"Selections must be provided as a list of Selection objects."
|
|
410
|
+
)
|
|
411
|
+
|
|
384
412
|
for selection in selections:
|
|
385
413
|
if not isinstance(selection, Selection):
|
|
386
414
|
raise TypeError("Selections must be of type Selection.")
|
|
387
|
-
|
|
388
|
-
self._selections = selections
|
|
415
|
+
|
|
416
|
+
self._selections = selections # type: ignore
|
|
389
417
|
return self
|
|
390
418
|
|
|
391
419
|
def priority(self, priority: int) -> "RapidataOrderBuilder":
|
|
@@ -400,6 +428,6 @@ class RapidataOrderBuilder:
|
|
|
400
428
|
"""
|
|
401
429
|
if not isinstance(priority, int):
|
|
402
430
|
raise TypeError("Priority must be of type int.")
|
|
403
|
-
|
|
431
|
+
|
|
404
432
|
self._priority = priority
|
|
405
433
|
return self
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=vjmq4p45annpd9K5QbD_0RdcLIkDnNFkNb55ZVws56A,587
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=vuPr6fG-glEl1Sn4L9tJrx7_HpmqzpM9uryOS1I6lEI,24196
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=S0oVoAVMys10M-Z1SqirMdnHMYSHH3Lz6iph1CfILc0,1004
|
|
4
4
|
rapidata/api_client/api/campaign_api.py,sha256=DxPFqt9F6c9OpXu_Uxhsrib2NVwnbcZFa3Vkrj7cIuA,40474
|
|
5
5
|
rapidata/api_client/api/coco_api.py,sha256=4QYkW7c0SZvs-HOYmj585yL0KNr6Xc16ajS7b72yI6w,24972
|
|
6
6
|
rapidata/api_client/api/compare_workflow_api.py,sha256=2P5Z1zvlEc6zmrmeSN67l1LONpchz6g0v0olfD8M_o8,12652
|
|
7
7
|
rapidata/api_client/api/datapoint_api.py,sha256=CdLFVMrVylj2_D6Ll58_4ME604-7mgWCyXF5SpKmyfI,31668
|
|
8
8
|
rapidata/api_client/api/dataset_api.py,sha256=9v2bBPYnRDKWvAvB7cJoew-O_bkmuocjpcg75hjkAkQ,92297
|
|
9
|
-
rapidata/api_client/api/identity_api.py,sha256=
|
|
9
|
+
rapidata/api_client/api/identity_api.py,sha256=cj_eFzaxjZz4CjPsRWmWmsi0jlfSLA8R2bbPH7AXqpA,150412
|
|
10
10
|
rapidata/api_client/api/newsletter_api.py,sha256=9ZqGDB4_AEQZfRA61RRYkyQ06WjXH-aCwJUe60c2H4w,22575
|
|
11
11
|
rapidata/api_client/api/order_api.py,sha256=3hrD7v9dEUmIN4TQEScaU8Te5zwemnasOn6onywBnGs,209361
|
|
12
12
|
rapidata/api_client/api/pipeline_api.py,sha256=-2KuB0C1P7veSMmOqXKSJpLN_5xdM_5JbUTSluEUpPA,33246
|
|
@@ -20,14 +20,14 @@ rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlG
|
|
|
20
20
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
21
21
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
22
22
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
23
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
23
|
+
rapidata/api_client/models/__init__.py,sha256=nd7tqO4xzkXa-m_IsMPnpJapmhFoV5vM-XByxQJXz6I,22651
|
|
24
24
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
25
25
|
rapidata/api_client/models/add_campaign_model.py,sha256=OJzkfvQlrp6j6ffwVShouUCW-MQZw60BGUJpqjbSGs8,6853
|
|
26
26
|
rapidata/api_client/models/add_validation_rapid_model.py,sha256=-HRHMK-o6dgGjUqfsP_woZcFxfN7nuJ-L1CUaK9nihY,4918
|
|
27
27
|
rapidata/api_client/models/add_validation_rapid_model_payload.py,sha256=Ul_xSBMI4jlnbIKPZfyuYJ5x-f-mQik8hYD1ArVKCLw,11092
|
|
28
28
|
rapidata/api_client/models/add_validation_rapid_model_truth.py,sha256=TlaA5RbE2gJquDDm-d7c_fQxvWjYQtiJljZEWgZMWo8,11044
|
|
29
29
|
rapidata/api_client/models/add_validation_rapid_result.py,sha256=rNk2_4CERFNpCq4XExFEb6-9QVwGEJ62nTmpX4_kjXk,2563
|
|
30
|
-
rapidata/api_client/models/add_validation_text_rapid_model.py,sha256=
|
|
30
|
+
rapidata/api_client/models/add_validation_text_rapid_model.py,sha256=3s16qCGogFxPKxLwPf5pIDrqCNkffbOrtfiRUgvhr9U,5005
|
|
31
31
|
rapidata/api_client/models/admin_order_model.py,sha256=-QBgxsw7MTOYEjwOnKSndJTCWpdx5Os--dY4e6JSW9E,3730
|
|
32
32
|
rapidata/api_client/models/admin_order_model_paged_result.py,sha256=edgeuvJ8yDMjKDB8vYa2YdbO7brdcgj6AMXPQTLeRbc,3494
|
|
33
33
|
rapidata/api_client/models/age_group.py,sha256=k4gm2IPuwxXbU9wTvlat0yMwyz3HJ7tVG3Vqhda-e0g,846
|
|
@@ -78,10 +78,11 @@ rapidata/api_client/models/count_classification_metadata_filter_config.py,sha256
|
|
|
78
78
|
rapidata/api_client/models/count_metadata.py,sha256=jZPGQjbV49uZo6DYrKGisLlSdQNZ6y_nfPMgsKbB1Bs,3165
|
|
79
79
|
rapidata/api_client/models/count_metadata_model.py,sha256=nbQxNJQ3q0iwYstvb9NWPIwkRsq3J-nHiLts91WvXdw,3044
|
|
80
80
|
rapidata/api_client/models/country_user_filter_model.py,sha256=8DjS-0yga8yRBMze691dU7IWOJYuw4iTo8ih3H132cs,2982
|
|
81
|
-
rapidata/api_client/models/create_client_model.py,sha256=
|
|
81
|
+
rapidata/api_client/models/create_client_model.py,sha256=n6dyAySiHxD6E12TW71qX9kqLBNrffUmTbf0LnXbb1M,2894
|
|
82
|
+
rapidata/api_client/models/create_client_result.py,sha256=OHBnTMyW5Nno39JHoJkcQbCGyol-Xe6v_NQYn2Kur7g,2672
|
|
82
83
|
rapidata/api_client/models/create_complex_order_model.py,sha256=46n1IJRAIyCYCGXKvF5LjMVf4pXILC-kP86oU6YKo1w,3337
|
|
83
84
|
rapidata/api_client/models/create_complex_order_model_pipeline.py,sha256=yF_-tOciVlAiDlWb1bptnoEFGlQis68WEI_EeviEFk8,4939
|
|
84
|
-
rapidata/api_client/models/create_complex_order_result.py,sha256=
|
|
85
|
+
rapidata/api_client/models/create_complex_order_result.py,sha256=UW57ewUKFPZcx8lRjaICdYZWVPS7Yzr6eqK3-i-tf4s,3300
|
|
85
86
|
rapidata/api_client/models/create_dataset_artifact_model.py,sha256=oy_gbpPxEadNVyulUETQKHmK8VxGKwti5ro1lwAuNzc,3575
|
|
86
87
|
rapidata/api_client/models/create_dataset_artifact_model_dataset.py,sha256=fP1RLW2f-TGTm7OwjQLfPQfzkfpKdMb3HcBx89CBU5s,4821
|
|
87
88
|
rapidata/api_client/models/create_default_order_model.py,sha256=kkOxhHBY8DzAyV-PJs_2L-E8jandbpf4Tcgjbo7tDs4,4429
|
|
@@ -91,12 +92,13 @@ rapidata/api_client/models/create_empty_validation_set_result.py,sha256=Z8s0Kjz2
|
|
|
91
92
|
rapidata/api_client/models/create_independent_workflow_model.py,sha256=w7lHQXKG1NpTevCmhIdWwLXcdVAdIX2pV82GgInWHqU,3272
|
|
92
93
|
rapidata/api_client/models/create_independent_workflow_model_workflow_config.py,sha256=GVVxs9VAmM2hTXWWoqKNXD9E7qRk3CO88YRm1AHxJCI,5845
|
|
93
94
|
rapidata/api_client/models/create_independent_workflow_result.py,sha256=JOhS75mAH-VvarvDDFsycahPlIezVKT1upuqIo93hC0,2719
|
|
95
|
+
rapidata/api_client/models/create_legacy_client_model.py,sha256=8LcKnjv3Lq6w28ku6NG6nG9qfxWQnfPow53maGlwNdE,2802
|
|
94
96
|
rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0UytTW6dpihAeNyfCc4C1m0XfY53hQ,2672
|
|
95
97
|
rapidata/api_client/models/create_order_model.py,sha256=yILLaONWi3DHDGHgbz2M3MkGN7R1yIKF35XOsjInuaQ,8904
|
|
96
98
|
rapidata/api_client/models/create_order_model_referee.py,sha256=dxQ9SDiBjFIKYjctVNeiuGvjZwzIa0Q8JpW7iRei00I,5748
|
|
97
99
|
rapidata/api_client/models/create_order_model_selections_inner.py,sha256=9p9BJKHN3WhRiu-FwWf421COAxeGmm1KkkyDT7UW5uc,8354
|
|
98
100
|
rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=2PAJkzMgWavHvaiR5vb1Sk6uPQZkDltiMjeoQAdsU8c,9412
|
|
99
|
-
rapidata/api_client/models/create_order_model_workflow.py,sha256=
|
|
101
|
+
rapidata/api_client/models/create_order_model_workflow.py,sha256=cy7bD2kWvLkCgFdrViAG63xtYDIdVOn0dD74GRxni_A,6638
|
|
100
102
|
rapidata/api_client/models/create_order_result.py,sha256=JfqjZHcmZCNtAznfXs_iZwkBwxCNRY1mHp9Zx3kSMdo,3026
|
|
101
103
|
rapidata/api_client/models/create_simple_pipeline_model.py,sha256=loLhevw-sZap22HDFGDF1aphPBznt1M-wBY31haihNY,4729
|
|
102
104
|
rapidata/api_client/models/create_simple_pipeline_model_artifacts_inner.py,sha256=EvOz0EpU3RIfZ1rw6EGOkGiFzGi1Zm0YmeDKNQ7WWS8,5027
|
|
@@ -119,6 +121,8 @@ rapidata/api_client/models/demographic_selection.py,sha256=-RIAemMmI0omKU6cVIY_a
|
|
|
119
121
|
rapidata/api_client/models/early_stopping_referee_model.py,sha256=FhLrKAhvoI0OAMMEoJn0DjQo3WhTU_5fyzv8sd83kRk,3489
|
|
120
122
|
rapidata/api_client/models/empty_validation_truth.py,sha256=dn4EDj_8DPBtupr2Hrmk-g9PuclrmJoe080rSBD_F6A,2911
|
|
121
123
|
rapidata/api_client/models/error_type.py,sha256=AZKEf0UaGxP2PW5Gf9jYolx9GWBD9rWyDuzXcbgsm6E,842
|
|
124
|
+
rapidata/api_client/models/evaluation_workflow_config.py,sha256=mqIxbH-Fkv_ArOIfJ9gIXgg807F6TnrXS9X6ba5ejDY,3528
|
|
125
|
+
rapidata/api_client/models/evaluation_workflow_model.py,sha256=Gt_e85CDvxB6SDG0Ok7oCQ-AbIZLU2mGxFPIlRFk2Uw,3342
|
|
122
126
|
rapidata/api_client/models/feature_flag.py,sha256=Ctw_S0nxSr0gz4n2GQW1QmcvfVNV8A-IldefaojbgAc,2531
|
|
123
127
|
rapidata/api_client/models/feature_flag_model.py,sha256=Bzq7vkZRoYnft2_2-HKHLj4FVa6a5lbN3x34-m8vFsA,2803
|
|
124
128
|
rapidata/api_client/models/feedback_model.py,sha256=BqJoYITA22lE1O2SWenv2Ndw1_JfqIfWMhDvB9gJ0YA,3304
|
|
@@ -297,14 +301,14 @@ rapidata/api_client/models/validation_set_paged_result.py,sha256=3ch0KcbcH7qn8iJ
|
|
|
297
301
|
rapidata/api_client/models/workflow_aggregation_step_model.py,sha256=6LWLE1aY9P5u3YbbMZFcUDrREP8YiYypOw6Wrmxc0gs,4467
|
|
298
302
|
rapidata/api_client/models/workflow_artifact_model.py,sha256=B9fjf2gS-exr0t4ZbIq5OvE_OCnVCuR3o8eqAjnfRC4,3126
|
|
299
303
|
rapidata/api_client/models/workflow_config_artifact_model.py,sha256=bzPK2eNzizC5ZGw-8kW_8Gvym6jkSyu5gT5OimcakWU,3650
|
|
300
|
-
rapidata/api_client/models/workflow_config_artifact_model_workflow_config.py,sha256=
|
|
304
|
+
rapidata/api_client/models/workflow_config_artifact_model_workflow_config.py,sha256=FVsB4eqUdO5TbHn1u9NEtCt5r-suzGpNafQW43SMJ7k,6768
|
|
301
305
|
rapidata/api_client/models/workflow_labeling_step_model.py,sha256=iXeIb78bdMhGFjnryqnUWneojxJi4xKbpiTLr2LrLhU,3173
|
|
302
306
|
rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrPTBpeV1a4cODLxnHmNCAZw,4474
|
|
303
307
|
rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
|
|
304
308
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
305
309
|
rapidata/api_client/rest.py,sha256=zmCIFQC2l1t-KZcq-TgEm3vco3y_LK6vRm3Q07K-xRI,9423
|
|
306
|
-
rapidata/api_client_README.md,sha256=
|
|
307
|
-
rapidata/rapidata_client/__init__.py,sha256=
|
|
310
|
+
rapidata/api_client_README.md,sha256=zUJfuL_1q_BgXQd1Q77VzrWoSpdvxU7wALSEZ9ODIAo,37829
|
|
311
|
+
rapidata/rapidata_client/__init__.py,sha256=mX25RNyeNqboIzCMz_Lm3SnMTXM8LJ_jpXuIRraafww,803
|
|
308
312
|
rapidata/rapidata_client/assets/__init__.py,sha256=T-XKvMSkmyI8iYLUYDdZ3LrrSInHsGMUY_Tz77hhnlE,240
|
|
309
313
|
rapidata/rapidata_client/assets/base_asset.py,sha256=B2YWH1NgaeYUYHDW3OPpHM_bqawHbH4EjnRCE2BYwiM,298
|
|
310
314
|
rapidata/rapidata_client/assets/media_asset.py,sha256=4xU1k2abdHGwbkJAYNOZYyOPB__5VBRDvRjklegFufQ,887
|
|
@@ -315,11 +319,19 @@ rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ
|
|
|
315
319
|
rapidata/rapidata_client/country_codes/country_codes.py,sha256=Q0HMX7uHJQDeLCFPP5bq4iYi6pgcDWEcl2ONGhjgoeU,286
|
|
316
320
|
rapidata/rapidata_client/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
321
|
rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=mIQBh7pANhFe2u3xEgsdDG_ZY7i-o8lKDAaRfACipMU,4921
|
|
318
|
-
rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=
|
|
322
|
+
rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=rSRZQ67-8XjLa1_pWutieBrQfmvPA0fOMK7QKQpxsX0,10970
|
|
319
323
|
rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=uzpOZFqQu8bG6vmjcWWUNJPZsRe28OmnyalRE6ry8tk,2317
|
|
320
|
-
rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=
|
|
324
|
+
rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=xPZBzNRPausIbYNRVinIhsVGnKSIIuxP5tjKkV4hOyo,7990
|
|
321
325
|
rapidata/rapidata_client/feature_flags/__init__.py,sha256=IYkcK_bZCl5RfyQFiWjjUdz4y0jipiW9qfeopq4EjQQ,40
|
|
322
326
|
rapidata/rapidata_client/feature_flags/feature_flags.py,sha256=hcS9YRzpsPWpZfw-3QwSuf2TaVg-MOHBxY788oNqIW4,3957
|
|
327
|
+
rapidata/rapidata_client/filter/__init__.py,sha256=F3JsMCbAZWH7SNdgaj98ydTqgCCKXKBhLyt9gQ4x6tQ,301
|
|
328
|
+
rapidata/rapidata_client/filter/age_filter.py,sha256=hncr1zNM_HrO0fCta8h0LgTCB8Ufv_vI5_cGhMb-xr8,478
|
|
329
|
+
rapidata/rapidata_client/filter/base_filter.py,sha256=nXraj72cumyQjjYoo4MMpnlE0aWjAIOmGakKf0MNqps,135
|
|
330
|
+
rapidata/rapidata_client/filter/campaign_filter.py,sha256=DHWf2LIb7IFbgPm2XyFspwHwrz9a079FjiUOo4z3gtw,459
|
|
331
|
+
rapidata/rapidata_client/filter/country_filter.py,sha256=rPfTAZdsvuRyitygJz3UWAFEmsE6U9aUnSHUySFV6cA,612
|
|
332
|
+
rapidata/rapidata_client/filter/gender_filter.py,sha256=AG4JK8eIycp0iM9h21B_cmFBfgE6v9sU-rIFDCHFUeY,472
|
|
333
|
+
rapidata/rapidata_client/filter/language_filter.py,sha256=JRHw-BpA5ZqpGR-fjyVB6bJ56Ifi6PcM3yztvLFmrQY,623
|
|
334
|
+
rapidata/rapidata_client/filter/user_score_filter.py,sha256=YtZH0eFvo4SS96-R2PqT6at_qHFDlaztwOFOdpeZe5w,560
|
|
323
335
|
rapidata/rapidata_client/metadata/__init__.py,sha256=qMmo4wqScUCAJ6YXRWxvJLmbFA5YRbK39p9_exV1d50,246
|
|
324
336
|
rapidata/rapidata_client/metadata/base_metadata.py,sha256=BJoZT4lRs94lu7PE3__LcsMINHNDVKRKRART-EKzSaw,217
|
|
325
337
|
rapidata/rapidata_client/metadata/private_text_metadata.py,sha256=VJ_SJwp8OMFZLuUMRWvPeKOySXYJuGr-YgpwuLfTbmo,517
|
|
@@ -328,7 +340,7 @@ rapidata/rapidata_client/metadata/public_text_metadata.py,sha256=LTiBQHs6izxQ6-C
|
|
|
328
340
|
rapidata/rapidata_client/metadata/transcription_metadata.py,sha256=THtDEVCON4UlcXHmXrjilaOLHys4TrktUOPGWnXaCcc,631
|
|
329
341
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
342
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=Q2orpb1NV7XiEAOJD0md93uLpYI1RFfr7mqDJDLk4m4,4643
|
|
331
|
-
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=
|
|
343
|
+
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=YBTQ7iXsMF2ALjDRE_NRApKJJYvsJ1fGniJGrDJEN_g,15868
|
|
332
344
|
rapidata/rapidata_client/rapidata_client.py,sha256=s3TlhYlvMuxcyEDIFDqpwRsP0SIi9b158uIHLUyV1gY,4699
|
|
333
345
|
rapidata/rapidata_client/referee/__init__.py,sha256=Ow9MQsONhF4sX2wFK9jbvSBrpcJgtq3OglIQMkBUdIY,167
|
|
334
346
|
rapidata/rapidata_client/referee/base_referee.py,sha256=bMy7cw0a-pGNbFu6u_1_Jplu0A483Ubj4oDQzh8vu8k,493
|
|
@@ -357,7 +369,7 @@ rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5
|
|
|
357
369
|
rapidata/service/openapi_service.py,sha256=KwFJmgnyfrzmSjs6wGh5J6ESMLvtKazGcYoewWeL8PU,2038
|
|
358
370
|
rapidata/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
371
|
rapidata/utils/image_utils.py,sha256=TldO3eJWG8IhfJjm5MfNGO0mEDm1mQTsRoA0HLU1Uxs,404
|
|
360
|
-
rapidata-1.2.
|
|
361
|
-
rapidata-1.2.
|
|
362
|
-
rapidata-1.2.
|
|
363
|
-
rapidata-1.2.
|
|
372
|
+
rapidata-1.2.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
373
|
+
rapidata-1.2.3.dist-info/METADATA,sha256=nsayylvqwD1vgLqMk5oQM7IWUNaP9n-WvlSfc57L0I0,1012
|
|
374
|
+
rapidata-1.2.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
375
|
+
rapidata-1.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|