rapidata 2.27.5__py3-none-any.whl → 2.28.0__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 +3 -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/__init__.py +2 -0
- rapidata/rapidata_client/leaderboard/__init__.py +0 -0
- rapidata/rapidata_client/leaderboard/rapidata_leaderboard.py +127 -0
- rapidata/rapidata_client/leaderboard/rapidata_leaderboard_manager.py +80 -0
- rapidata/rapidata_client/order/rapidata_order.py +0 -1
- rapidata/rapidata_client/order/rapidata_order_manager.py +5 -5
- rapidata/rapidata_client/order/rapidata_results.py +17 -9
- rapidata/rapidata_client/rapidata_client.py +4 -0
- rapidata/rapidata_client/selection/__init__.py +1 -0
- rapidata/rapidata_client/selection/effort_selection.py +19 -0
- rapidata/rapidata_client/settings/__init__.py +1 -0
- rapidata/rapidata_client/settings/allow_neither_both.py +15 -0
- rapidata/rapidata_client/settings/rapidata_settings.py +3 -1
- rapidata/rapidata_client/validation/validation_set_manager.py +14 -0
- rapidata/service/openapi_service.py +5 -0
- {rapidata-2.27.5.dist-info → rapidata-2.28.0.dist-info}/METADATA +1 -1
- {rapidata-2.27.5.dist-info → rapidata-2.28.0.dist-info}/RECORD +44 -20
- {rapidata-2.27.5.dist-info → rapidata-2.28.0.dist-info}/LICENSE +0 -0
- {rapidata-2.27.5.dist-info → rapidata-2.28.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
from rapidata.service.openapi_service import OpenAPIService
|
|
2
|
+
from rapidata.rapidata_client.leaderboard.rapidata_leaderboard import RapidataLeaderboard
|
|
3
|
+
from rapidata.api_client.models.query_model import QueryModel
|
|
4
|
+
from rapidata.api_client.models.page_info import PageInfo
|
|
5
|
+
from rapidata.api_client.models.root_filter import RootFilter
|
|
6
|
+
from rapidata.api_client.models.filter import Filter
|
|
7
|
+
from rapidata.api_client.models.sort_criterion import SortCriterion
|
|
8
|
+
from rapidata.api_client.models.create_leaderboard_model import CreateLeaderboardModel
|
|
9
|
+
|
|
10
|
+
class RapidataLeaderboardManager:
|
|
11
|
+
"""
|
|
12
|
+
A manager for leaderboards.
|
|
13
|
+
|
|
14
|
+
Used to create and retrieve leaderboards.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
openapi_service: The OpenAPIService instance for API interaction.
|
|
18
|
+
"""
|
|
19
|
+
def __init__(self, openapi_service: OpenAPIService):
|
|
20
|
+
self.__openapi_service = openapi_service
|
|
21
|
+
|
|
22
|
+
def create_new_leaderboard(self, name: str, instruction: str, prompts: list[str], show_prompt: bool = False) -> RapidataLeaderboard:
|
|
23
|
+
"""
|
|
24
|
+
Creates a new leaderboard with the given name, instruction, and prompts.
|
|
25
|
+
|
|
26
|
+
Args:
|
|
27
|
+
leaderboard_name: The name of the leaderboard. Will be used to identify the leaderboard on the overview.
|
|
28
|
+
instruction: The instruction for the leaderboard. Will determine how the models will be evaluated.
|
|
29
|
+
prompts: The prompts for the leaderboard. Will be registered for the leaderboard and able to be retrieved again later.
|
|
30
|
+
show_prompt: Whether to show the prompt to the users when they are evaluating the models.
|
|
31
|
+
"""
|
|
32
|
+
leaderboard_id = self.__register_new_leaderboard(name, instruction, show_prompt)
|
|
33
|
+
leaderboard = RapidataLeaderboard(name, instruction, show_prompt, leaderboard_id, self.__openapi_service)
|
|
34
|
+
leaderboard._register_prompts(prompts)
|
|
35
|
+
return leaderboard
|
|
36
|
+
|
|
37
|
+
def get_leaderboard_by_id(self, leaderboard_id: str) -> RapidataLeaderboard:
|
|
38
|
+
"""
|
|
39
|
+
Retrieves a leaderboard by its ID.
|
|
40
|
+
|
|
41
|
+
Args:
|
|
42
|
+
leaderboard_id: The ID of the leaderboard.
|
|
43
|
+
"""
|
|
44
|
+
leaderboard_result = self.__openapi_service.leaderboard_api.leaderboard_leaderboard_id_get(
|
|
45
|
+
leaderboard_id=leaderboard_id
|
|
46
|
+
)
|
|
47
|
+
return RapidataLeaderboard(leaderboard_result.name, leaderboard_result.instruction, leaderboard_result.show_prompt, leaderboard_id, self.__openapi_service)
|
|
48
|
+
|
|
49
|
+
def find_leaderboards(self, name: str = "", amount: int = 10) -> list[RapidataLeaderboard]:
|
|
50
|
+
"""
|
|
51
|
+
Find your recent leaderboards given criteria. If nothing is provided, it will return the most recent leaderboard.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
name (str, optional): The name of the leaderboard - matching leaderboard will contain the name. Defaults to "" for any leaderboard.
|
|
55
|
+
amount (int, optional): The amount of leaderboards to return. Defaults to 10.
|
|
56
|
+
"""
|
|
57
|
+
leaderboard_result = self.__openapi_service.leaderboard_api.leaderboards_get(
|
|
58
|
+
request=QueryModel(
|
|
59
|
+
page=PageInfo(
|
|
60
|
+
index=1,
|
|
61
|
+
size=amount
|
|
62
|
+
),
|
|
63
|
+
filter=RootFilter(filters=[Filter(field="Name", operator="Contains", value=name)]),
|
|
64
|
+
sortCriteria=[SortCriterion(direction="Desc", propertyName="CreatedAt")]
|
|
65
|
+
)
|
|
66
|
+
)
|
|
67
|
+
leaderboards = []
|
|
68
|
+
for leaderboard in leaderboard_result.items:
|
|
69
|
+
leaderboards.append(RapidataLeaderboard(leaderboard.name, leaderboard.instruction, leaderboard.show_prompt, leaderboard.id, self.__openapi_service))
|
|
70
|
+
return leaderboards
|
|
71
|
+
|
|
72
|
+
def __register_new_leaderboard(self, name: str, instruction: str, show_prompt: bool) -> str:
|
|
73
|
+
leaderboard_id = self.__openapi_service.leaderboard_api.leaderboard_post(
|
|
74
|
+
CreateLeaderboardModel(
|
|
75
|
+
name=name,
|
|
76
|
+
instruction=instruction,
|
|
77
|
+
showPrompt=show_prompt
|
|
78
|
+
)
|
|
79
|
+
).id
|
|
80
|
+
return leaderboard_id
|
|
@@ -169,7 +169,6 @@ class RapidataOrder:
|
|
|
169
169
|
Args:
|
|
170
170
|
preliminary_results: If True, returns the preliminary results of the order. Defaults to False.
|
|
171
171
|
Note that preliminary results are not final and may not contain all the datapoints & responses. Only the onese that are already available.
|
|
172
|
-
This will throw an exception if there are no responses available yet.
|
|
173
172
|
"""
|
|
174
173
|
logger.info(f"Getting results for order '{self}'...")
|
|
175
174
|
if preliminary_results and self.get_status() not in [OrderState.COMPLETED]:
|
|
@@ -49,7 +49,7 @@ class RapidataOrderManager:
|
|
|
49
49
|
selections (RapidataSelections): The RapidataSelections instance."""
|
|
50
50
|
|
|
51
51
|
def __init__(self, openapi_service: OpenAPIService):
|
|
52
|
-
self.
|
|
52
|
+
self.__openapi_service = openapi_service
|
|
53
53
|
self.filters = RapidataFilters
|
|
54
54
|
self.settings = RapidataSettings
|
|
55
55
|
self.selections = RapidataSelections
|
|
@@ -104,7 +104,7 @@ class RapidataOrderManager:
|
|
|
104
104
|
max_vote_count=responses_per_datapoint,
|
|
105
105
|
)
|
|
106
106
|
|
|
107
|
-
order_builder = RapidataOrderBuilder(name=name, openapi_service=self.
|
|
107
|
+
order_builder = RapidataOrderBuilder(name=name, openapi_service=self.__openapi_service)
|
|
108
108
|
|
|
109
109
|
if selections and validation_set_id:
|
|
110
110
|
logger.warning("Warning: Both selections and validation_set_id provided. Ignoring validation_set_id.")
|
|
@@ -637,12 +637,12 @@ class RapidataOrderManager:
|
|
|
637
637
|
RapidataOrder: The Order instance.
|
|
638
638
|
"""
|
|
639
639
|
|
|
640
|
-
order = self.
|
|
640
|
+
order = self.__openapi_service.order_api.order_order_id_get(order_id)
|
|
641
641
|
|
|
642
642
|
return RapidataOrder(
|
|
643
643
|
order_id=order_id,
|
|
644
644
|
name=order.order_name,
|
|
645
|
-
openapi_service=self.
|
|
645
|
+
openapi_service=self.__openapi_service)
|
|
646
646
|
|
|
647
647
|
def find_orders(self, name: str = "", amount: int = 10) -> list[RapidataOrder]:
|
|
648
648
|
"""Find your recent orders given criteria. If nothing is provided, it will return the most recent order.
|
|
@@ -654,7 +654,7 @@ class RapidataOrderManager:
|
|
|
654
654
|
Returns:
|
|
655
655
|
list[RapidataOrder]: A list of RapidataOrder instances.
|
|
656
656
|
"""
|
|
657
|
-
order_page_result = self.
|
|
657
|
+
order_page_result = self.__openapi_service.order_api.orders_get(QueryModel(
|
|
658
658
|
page=PageInfo(index=1, size=amount),
|
|
659
659
|
filter=RootFilter(filters=[Filter(field="OrderName", operator="Contains", value=name)]),
|
|
660
660
|
sortCriteria=[SortCriterion(direction="Desc", propertyName="OrderDate")]
|
|
@@ -180,31 +180,39 @@ class RapidataResults(dict):
|
|
|
180
180
|
|
|
181
181
|
rows = []
|
|
182
182
|
for result in self["results"]:
|
|
183
|
-
# Get
|
|
183
|
+
# Get all asset names from the first metric we find
|
|
184
|
+
assets = []
|
|
184
185
|
for key in result:
|
|
185
|
-
if isinstance(result[key], dict) and len(result[key])
|
|
186
|
+
if isinstance(result[key], dict) and len(result[key]) >= 2:
|
|
186
187
|
assets = list(result[key].keys())
|
|
187
188
|
break
|
|
188
189
|
else:
|
|
189
190
|
continue
|
|
190
191
|
|
|
191
|
-
|
|
192
|
+
assets = [asset for asset in assets if asset not in ["Both", "Neither"]]
|
|
192
193
|
|
|
193
194
|
# Initialize row with non-comparative fields
|
|
194
195
|
row = {
|
|
195
196
|
key: value for key, value in result.items()
|
|
196
197
|
if not isinstance(value, dict)
|
|
197
198
|
}
|
|
198
|
-
|
|
199
|
-
row["
|
|
200
|
-
row["assetB"] = asset_b
|
|
199
|
+
row["assetA"] = assets[0]
|
|
200
|
+
row["assetB"] = assets[1]
|
|
201
201
|
|
|
202
202
|
# Handle comparative metrics
|
|
203
203
|
for key, values in result.items():
|
|
204
|
-
if isinstance(values, dict) and len(values)
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
if isinstance(values, dict) and len(values) >= 2:
|
|
205
|
+
# Add main asset columns
|
|
206
|
+
for i, asset in enumerate(assets[:2]): # Limit to first 2 main assets
|
|
207
|
+
column_prefix = "A_" if i == 0 else "B_"
|
|
208
|
+
row[f'{column_prefix}{key}'] = values.get(asset, 0)
|
|
207
209
|
|
|
210
|
+
# Add special option columns if they exist
|
|
211
|
+
if "Both" in values:
|
|
212
|
+
row[f'Both_{key}'] = values.get("Both", 0)
|
|
213
|
+
if "Neither" in values:
|
|
214
|
+
row[f'Neither_{key}'] = values.get("Neither", 0)
|
|
215
|
+
|
|
208
216
|
rows.append(row)
|
|
209
217
|
|
|
210
218
|
return pd.DataFrame(rows)
|
|
@@ -5,6 +5,7 @@ from rapidata import __version__
|
|
|
5
5
|
from rapidata.service.openapi_service import OpenAPIService
|
|
6
6
|
|
|
7
7
|
from rapidata.rapidata_client.order.rapidata_order_manager import RapidataOrderManager
|
|
8
|
+
from rapidata.rapidata_client.leaderboard.rapidata_leaderboard_manager import RapidataLeaderboardManager
|
|
8
9
|
|
|
9
10
|
from rapidata.rapidata_client.validation.validation_set_manager import (
|
|
10
11
|
ValidationSetManager,
|
|
@@ -65,6 +66,9 @@ class RapidataClient:
|
|
|
65
66
|
|
|
66
67
|
logger.debug("Initializing DemographicManager")
|
|
67
68
|
self._demographic = DemographicManager(openapi_service=self._openapi_service)
|
|
69
|
+
|
|
70
|
+
logger.debug("Initializing RapidataLeaderboardManager")
|
|
71
|
+
self.mri = RapidataLeaderboardManager(openapi_service=self._openapi_service)
|
|
68
72
|
|
|
69
73
|
def reset_credentials(self):
|
|
70
74
|
"""Reset the credentials saved in the configuration file for the current environment."""
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from rapidata.rapidata_client.selection._base_selection import RapidataSelection
|
|
2
|
+
from rapidata.api_client.models.effort_capped_selection import EffortCappedSelection as EffortCappedSelectionModel
|
|
3
|
+
from rapidata.rapidata_client.selection.retrieval_modes import RetrievalMode
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class EffortEstimationSelection(RapidataSelection):
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def __init__(self, effort_budget: int, retrieval_mode: RetrievalMode = RetrievalMode.Shuffled, max_iterations: int | None = None):
|
|
10
|
+
self.effort_budget = effort_budget
|
|
11
|
+
self.retrieval_mode = retrieval_mode
|
|
12
|
+
self.max_iterations = max_iterations
|
|
13
|
+
|
|
14
|
+
def _to_model(self):
|
|
15
|
+
return EffortCappedSelectionModel(
|
|
16
|
+
_t="EffortCappedSelection",
|
|
17
|
+
effortBudget=self.effort_budget,
|
|
18
|
+
retrievalMode=self.retrieval_mode.value,
|
|
19
|
+
maxIterations=self.max_iterations)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from rapidata.rapidata_client.settings._rapidata_setting import RapidataSetting
|
|
2
|
+
from rapidata.rapidata_client.logging import managed_print, logger
|
|
3
|
+
|
|
4
|
+
class AllowNeitherBoth(RapidataSetting):
|
|
5
|
+
"""
|
|
6
|
+
Set whether to allow neither or both options.
|
|
7
|
+
This setting only works for compare orders.
|
|
8
|
+
|
|
9
|
+
Args:
|
|
10
|
+
value (bool): Whether to allow neither or both options. Defaults to True.
|
|
11
|
+
If this setting is not added to an order, the users won't be able to select neither or both.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, value: bool = True):
|
|
15
|
+
super().__init__(key="compare_unsure", value=value)
|
|
@@ -4,6 +4,7 @@ from rapidata.rapidata_client.settings import (
|
|
|
4
4
|
FreeTextMinimumCharacters,
|
|
5
5
|
NoShuffle,
|
|
6
6
|
PlayVideoUntilTheEnd,
|
|
7
|
+
AllowNeitherBoth,
|
|
7
8
|
)
|
|
8
9
|
|
|
9
10
|
class RapidataSettings:
|
|
@@ -18,6 +19,7 @@ class RapidataSettings:
|
|
|
18
19
|
free_text_minimum_characters (FreeTextMinimumCharacters): Only for free text tasks. Set the minimum number of characters a user has to type.
|
|
19
20
|
no_shuffle (NoShuffle): Only for classification and compare tasks. If true, the order of the categories / images will not be shuffled and presented in the same order as specified.
|
|
20
21
|
play_video_until_the_end (PlayVideoUntilTheEnd): Allows users to only answer once the video has finished playing.
|
|
22
|
+
allow_neither_both (AllowNeitherBoth): Only for compare tasks. If true, the users will be able to select neither or both instead of exclusively one of the options.
|
|
21
23
|
|
|
22
24
|
Example:
|
|
23
25
|
```python
|
|
@@ -33,4 +35,4 @@ class RapidataSettings:
|
|
|
33
35
|
free_text_minimum_characters = FreeTextMinimumCharacters
|
|
34
36
|
no_shuffle = NoShuffle
|
|
35
37
|
play_video_until_the_end = PlayVideoUntilTheEnd
|
|
36
|
-
|
|
38
|
+
allow_neither_both = AllowNeitherBoth
|
|
@@ -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
|
|
|
@@ -6,6 +6,7 @@ from rapidata.api_client.api.dataset_api import DatasetApi
|
|
|
6
6
|
from rapidata.api_client.api.order_api import OrderApi
|
|
7
7
|
from rapidata.api_client.api.pipeline_api import PipelineApi
|
|
8
8
|
from rapidata.api_client.api.rapid_api import RapidApi
|
|
9
|
+
from rapidata.api_client.api.leaderboard_api import LeaderboardApi
|
|
9
10
|
from rapidata.api_client.api.validation_set_api import ValidationSetApi
|
|
10
11
|
from rapidata.api_client.api.workflow_api import WorkflowApi
|
|
11
12
|
from rapidata.api_client.configuration import Configuration
|
|
@@ -107,6 +108,10 @@ class OpenAPIService:
|
|
|
107
108
|
@property
|
|
108
109
|
def workflow_api(self) -> WorkflowApi:
|
|
109
110
|
return WorkflowApi(self.api_client)
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def leaderboard_api(self) -> LeaderboardApi:
|
|
114
|
+
return LeaderboardApi(self.api_client)
|
|
110
115
|
|
|
111
116
|
def _get_rapidata_package_version(self):
|
|
112
117
|
"""
|
|
@@ -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=U0Jnzk7Duyre8xS9I1pgxHtLblb_2zvnYOh7I_sWO3A,865
|
|
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,8 +465,8 @@ 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=
|
|
450
|
-
rapidata/rapidata_client/__init__.py,sha256=
|
|
468
|
+
rapidata/api_client_README.md,sha256=81eV2jPGLgFdtvjLD_SSn2jixfyHOO5MPvj3hvF65qk,60685
|
|
469
|
+
rapidata/rapidata_client/__init__.py,sha256=MLl41ZPDYezE9ookAjHS75wFqfCTOKq-U01GJbHFjrA,1133
|
|
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
|
|
453
472
|
rapidata/rapidata_client/assets/__init__.py,sha256=eQkqUrYFME1FCxPY2Xh2bbonKVPnsFElJ6aPFcsWGxI,361
|
|
@@ -478,6 +497,9 @@ rapidata/rapidata_client/filter/or_filter.py,sha256=u6vkXMTG_j15SbY3bkbnXbxJMDgE
|
|
|
478
497
|
rapidata/rapidata_client/filter/rapidata_filters.py,sha256=aHl8bjvL0wJLhzm6BCHy7mPGYYYKTLZhY0WZVeHx0ZA,2014
|
|
479
498
|
rapidata/rapidata_client/filter/response_count_filter.py,sha256=sDv9Dvy0FbnIQRSAxFGrUf9SIMISTNxnlAQcrFKBjXE,1989
|
|
480
499
|
rapidata/rapidata_client/filter/user_score_filter.py,sha256=2C78zkWm5TnfkxGbV1ER2xB7s9ynpacaibzyRZKG8Cc,1566
|
|
500
|
+
rapidata/rapidata_client/leaderboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
+
rapidata/rapidata_client/leaderboard/rapidata_leaderboard.py,sha256=sBYRlWxT2TeZnvwU3uuhVJl-o_iv5aM7f80dKOPc_Bk,5222
|
|
502
|
+
rapidata/rapidata_client/leaderboard/rapidata_leaderboard_manager.py,sha256=OjTpHucHh02uMWvKxSu37Hv8re41x1DbmgXLSN_I62w,3982
|
|
481
503
|
rapidata/rapidata_client/logging/__init__.py,sha256=4gLxePW8TvgYDZmPWMcf6fA8bEyu35vMKOmlPj5oXNE,110
|
|
482
504
|
rapidata/rapidata_client/logging/logger.py,sha256=9vULXUizGObQeqMY-CryiAQsq8xDZw0ChLhvV8oa99s,3907
|
|
483
505
|
rapidata/rapidata_client/logging/output_manager.py,sha256=AmSVZ2emVW5UWgOiNqkXNVRItsvd5Ox0hsIoZQhYYYo,653
|
|
@@ -491,36 +513,38 @@ rapidata/rapidata_client/metadata/_select_words_metadata.py,sha256=-MK5yQDi_G3BK
|
|
|
491
513
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
514
|
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=v5b86EDF0ITIOV4k4QU8gQ4eFPz2ow-4HV_mmC9tb4c,21264
|
|
493
515
|
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=ioNGmWQF4KMdzvm-GIfAeflK8AgKaczZ1FfKkrZ1xXY,12649
|
|
494
|
-
rapidata/rapidata_client/order/rapidata_order.py,sha256=
|
|
495
|
-
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=
|
|
496
|
-
rapidata/rapidata_client/order/rapidata_results.py,sha256=
|
|
497
|
-
rapidata/rapidata_client/rapidata_client.py,sha256=
|
|
516
|
+
rapidata/rapidata_client/order/rapidata_order.py,sha256=CmZr0wAtogjhunhXACA9DvWCYf0Q5dXNthDCAUqjT00,12666
|
|
517
|
+
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=trEbTLe6-SsuWn5Q_DISxURxxlVjVSdBgjCjTVLZ3Mw,38311
|
|
518
|
+
rapidata/rapidata_client/order/rapidata_results.py,sha256=ZY0JyHMBZlR6-t6SqKt2OLEO6keR_KvKg9Wk6_I29x4,8653
|
|
519
|
+
rapidata/rapidata_client/rapidata_client.py,sha256=EMli04-y8WJ8BQpuh7VLDKHYudvoKz5rv5L-QKIYcsg,4284
|
|
498
520
|
rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vTTf_UgUXPYNJ-H6M,153
|
|
499
521
|
rapidata/rapidata_client/referee/_base_referee.py,sha256=MdFOhdxt3sRnWXLDKLJZKFdVpjBGn9jypPnWWQ6msQA,496
|
|
500
522
|
rapidata/rapidata_client/referee/_early_stopping_referee.py,sha256=ULbokQZ91wc9D_20qHUhe55D28D9eTY1J1cMp_-oIDc,2088
|
|
501
523
|
rapidata/rapidata_client/referee/_naive_referee.py,sha256=PVR8uy8hfRjr2DBzdOFyvou6S3swNc-4UvgjhO-09TU,1209
|
|
502
|
-
rapidata/rapidata_client/selection/__init__.py,sha256=
|
|
524
|
+
rapidata/rapidata_client/selection/__init__.py,sha256=vC2XbykShj_VW1uz5IZfQQXjgeIzzdYqC3n0K2c8cIs,574
|
|
503
525
|
rapidata/rapidata_client/selection/_base_selection.py,sha256=tInbWOgxT_4CHkr5QHoG55ZcUi1ZmfcEGIwLKKCnN20,147
|
|
504
526
|
rapidata/rapidata_client/selection/ab_test_selection.py,sha256=fymubkVMawqJmYp9FKzWXTki9tgBgoj3cOP8rG9oOd0,1284
|
|
505
527
|
rapidata/rapidata_client/selection/capped_selection.py,sha256=iWhbM1LcayhgFm7oKADXCaKHGdiQIupI0jbYuuEVM2A,1184
|
|
506
528
|
rapidata/rapidata_client/selection/conditional_validation_selection.py,sha256=OcNYSBi19vIcy2bLDmj9cv-gg5LFSvdjc3tooV0Z7Oc,2842
|
|
507
529
|
rapidata/rapidata_client/selection/demographic_selection.py,sha256=l4vnNbzlf9ED6BKqN4k5cZXShkXu9L1C5DtO78Vwr5M,1454
|
|
530
|
+
rapidata/rapidata_client/selection/effort_selection.py,sha256=uS8ctK2o-40Blu02jB5w7i8WtRSw21LhXszkkq30pM8,858
|
|
508
531
|
rapidata/rapidata_client/selection/labeling_selection.py,sha256=0X8DJHgwvgwekEbzVxWPyzZ1QAPcULZNDjfLQYUlcLM,1348
|
|
509
532
|
rapidata/rapidata_client/selection/rapidata_selections.py,sha256=lgwRivdzSnCri3K-Z-ngqR5RXwTl7iYuKTRpuyl5UMY,1853
|
|
510
533
|
rapidata/rapidata_client/selection/retrieval_modes.py,sha256=J2jzPEJ4wdllm_RnU_FYPh3eO3xeZS7QUk-NXgTB2u4,668
|
|
511
534
|
rapidata/rapidata_client/selection/shuffling_selection.py,sha256=FzOp7mnBLxNzM5at_-935wd77IHyWnFR1f8uqokiMOg,1201
|
|
512
535
|
rapidata/rapidata_client/selection/static_selection.py,sha256=-RWD3ChPe7-J31Shmah9JBNCgc5a16C5NOUl1f8tZCM,680
|
|
513
536
|
rapidata/rapidata_client/selection/validation_selection.py,sha256=sedeIa8lpXVXKtFJA9IDeRvo9A1Ne4ZGcepaWDUGhCU,851
|
|
514
|
-
rapidata/rapidata_client/settings/__init__.py,sha256=
|
|
537
|
+
rapidata/rapidata_client/settings/__init__.py,sha256=V5KW-_ffp4oZhwAMweRV0f2jSpXOb7oYYFiAwpsrkg4,507
|
|
515
538
|
rapidata/rapidata_client/settings/_rapidata_setting.py,sha256=MD5JhhogSLLrjFKjvL3JhMszOMCygyqLF-st0EwMSkw,352
|
|
516
539
|
rapidata/rapidata_client/settings/alert_on_fast_response.py,sha256=qW9Kv3mfl_V5NkPvKzg1Wz6QCRU-CmcAn1yaWCYI16U,989
|
|
540
|
+
rapidata/rapidata_client/settings/allow_neither_both.py,sha256=PMt1_n_kfERMoeENarx0uZqyGD2OmGONWognTmdvAgw,606
|
|
517
541
|
rapidata/rapidata_client/settings/custom_setting.py,sha256=TIbbedz98bfoIxQyiSMRYnQAaRFI1J7dYoTY89uNIoA,579
|
|
518
542
|
rapidata/rapidata_client/settings/free_text_minimum_characters.py,sha256=-kKO36Z7SsK9hGNEaVeHd1MLMqY6lkAuVAm3ST0y_gs,729
|
|
519
543
|
rapidata/rapidata_client/settings/models/__init__.py,sha256=IW7OuWg7xWIwFYrMAOX5N0HGGcqE6fFpgYin3vWRkOU,71
|
|
520
544
|
rapidata/rapidata_client/settings/models/translation_behaviour_options.py,sha256=7eR_Tk_WouW2g466dXdwuDuYdSxSAeaVP4KR3mW9q7A,479
|
|
521
545
|
rapidata/rapidata_client/settings/no_shuffle.py,sha256=9LNx4LptHZsQxamNYeY6lz9uakefyzVWM09tr76yx18,684
|
|
522
546
|
rapidata/rapidata_client/settings/play_video_until_the_end.py,sha256=LLHx2_72k5ZqqG4opdlOS0HpiVmqbq0Inuxb5iVvrW8,747
|
|
523
|
-
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=
|
|
547
|
+
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=qxwktsrrmGHqd6rKPMEZj0CK9k1SUtNjM2kedPaHTVs,1829
|
|
524
548
|
rapidata/rapidata_client/settings/translation_behaviour.py,sha256=i9n_H0eKJyKW6m3MKH_Cm1XEKWVEWsAV_79xGmGIC-4,742
|
|
525
549
|
rapidata/rapidata_client/validation/__init__.py,sha256=s5wHVtcJkncXSFuL9I0zNwccNOKpWAqxqUjkeohzi2E,24
|
|
526
550
|
rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=PgsutRTpzJ_e_H-xJxibSKHTskcM43aNwnm9dFhpMpw,1812
|
|
@@ -528,7 +552,7 @@ rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MD
|
|
|
528
552
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=t3_Kn6doKXdnJdtbwefXnYKPiTKHneJl9E2inkDSqL8,589
|
|
529
553
|
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=xcCPTTiWS-1TK_Bd0Qpt916dSdvEs3j6XeY_Xddo39k,4968
|
|
530
554
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=s5VAq8H5CKACWfmIQuz9kHC8t2nd-xEHGGUj9pIfXKI,14386
|
|
531
|
-
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=
|
|
555
|
+
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=hhtnrXw09FGcL7Xnm58I-vQT4mdhtOWsbR8HhOfeoeU,30323
|
|
532
556
|
rapidata/rapidata_client/workflow/__init__.py,sha256=7nXcY91xkxjHudBc9H0fP35eBBtgwHGWTQKbb-M4h7Y,477
|
|
533
557
|
rapidata/rapidata_client/workflow/_base_workflow.py,sha256=XyIZFKS_RxAuwIHS848S3AyLEHqd07oTD_5jm2oUbsw,762
|
|
534
558
|
rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=9bT54wxVJgxC-zLk6MVNbseFpzYrvFPjt7DHvxqYfnk,1736
|
|
@@ -543,8 +567,8 @@ rapidata/rapidata_client/workflow/_timestamp_workflow.py,sha256=tPi2zu1-SlE_ppbG
|
|
|
543
567
|
rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,68
|
|
544
568
|
rapidata/service/credential_manager.py,sha256=pUEEtp6VrFWYhfUUtyqmS0AlRqe2Y0kFkY6o22IT4KM,8682
|
|
545
569
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
546
|
-
rapidata/service/openapi_service.py,sha256=
|
|
547
|
-
rapidata-2.
|
|
548
|
-
rapidata-2.
|
|
549
|
-
rapidata-2.
|
|
550
|
-
rapidata-2.
|
|
570
|
+
rapidata/service/openapi_service.py,sha256=yW8F6UcGs5VCzB4k3-FSBToojjpgJ4Y_LiEgZZ7uprw,5049
|
|
571
|
+
rapidata-2.28.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
572
|
+
rapidata-2.28.0.dist-info/METADATA,sha256=w2LFXQjfXsycagrDvCzvpFuezxfIKlOCO7-MK1oBZgk,1264
|
|
573
|
+
rapidata-2.28.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
574
|
+
rapidata-2.28.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|