rapidata 2.31.0__py3-none-any.whl → 2.31.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rapidata might be problematic. Click here for more details.

rapidata/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "2.31.0"
1
+ __version__ = "2.31.1"
2
2
 
3
3
  from .rapidata_client import (
4
4
  RapidataClient,
@@ -1,4 +1,5 @@
1
1
  class RapidataDataTypes:
2
+ # deprecated use Literal["media", "text"] instead
2
3
  MEDIA = "media" # any form of image, video or audio
3
4
  TEXT = "text"
4
5
 
@@ -37,8 +37,8 @@ class RapidataFilters:
37
37
  This ensures the order is only shown to users in the US and Germany whose phones are set to English.
38
38
 
39
39
  Info:
40
- The or and not filter support the | and ~ operators respectively.
41
- The and is given by the elements in the list.
40
+ The OR, AND and NOT filter support the |, & and ~ operators respectively.
41
+ The AND is additionally given by the elements in the list.
42
42
 
43
43
  ```python
44
44
  from rapidata import AgeFilter, LanguageFilter, CountryFilter
@@ -1,9 +1,7 @@
1
- from typing import Sequence, Optional
2
- from urllib3._collections import HTTPHeaderDict # type: ignore[import]
1
+ from typing import Sequence, Optional, Literal
3
2
  from itertools import zip_longest
4
3
 
5
4
  from rapidata.service.openapi_service import OpenAPIService
6
- from rapidata.rapidata_client.assets.data_type_enum import RapidataDataTypes
7
5
  from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
8
6
  from rapidata.rapidata_client.order._rapidata_order_builder import RapidataOrderBuilder
9
7
  from rapidata.rapidata_client.metadata import PromptMetadata, SelectWordsMetadata, PrivateTextMetadata, MediaAssetMetadata, Metadata
@@ -21,8 +19,6 @@ from rapidata.rapidata_client.workflow import (
21
19
  TimestampWorkflow,
22
20
  RankingWorkflow
23
21
  )
24
- from rapidata.rapidata_client.selection.validation_selection import ValidationSelection
25
- from rapidata.rapidata_client.selection.labeling_selection import LabelingSelection
26
22
  from rapidata.rapidata_client.assets import MediaAsset, TextAsset, MultiAsset
27
23
  from rapidata.rapidata_client.filter import RapidataFilter
28
24
  from rapidata.rapidata_client.filter.rapidata_filters import RapidataFilters
@@ -140,7 +136,7 @@ class RapidataOrderManager:
140
136
  instruction: str,
141
137
  answer_options: list[str],
142
138
  datapoints: list[str],
143
- data_type: str = RapidataDataTypes.MEDIA,
139
+ data_type: Literal["media", "text"] = "media",
144
140
  responses_per_datapoint: int = 10,
145
141
  contexts: list[str] | None = None,
146
142
  media_contexts: list[str] | None = None,
@@ -161,8 +157,8 @@ class RapidataOrderManager:
161
157
  instruction (str): The instruction for how the data should be classified.
162
158
  answer_options (list[str]): The list of options for the classification.
163
159
  datapoints (list[str]): The list of datapoints for the classification - each datapoint will be labeled.
164
- data_type (str, optional): The data type of the datapoints. Defaults to RapidataDataTypes.MEDIA. \n
165
- Other option: RapidataDataTypes.TEXT ("text").
160
+ data_type (str, optional): The data type of the datapoints. Defaults to "media" (any form of image, video or audio). \n
161
+ Other option: "text".
166
162
  responses_per_datapoint (int, optional): The number of responses that will be collected per datapoint. Defaults to 10.
167
163
  contexts (list[str], optional): The list of contexts for the classification. Defaults to None.\n
168
164
  If provided has to be the same length as datapoints and will be shown in addition to the instruction and options. (Therefore will be different for each datapoint)
@@ -181,12 +177,12 @@ class RapidataOrderManager:
181
177
  This will NOT be shown to the labelers but will be included in the result purely for your own reference.
182
178
  """
183
179
 
184
- if data_type == RapidataDataTypes.MEDIA:
180
+ if data_type == "media":
185
181
  assets = [MediaAsset(path=path) for path in datapoints]
186
- elif data_type == RapidataDataTypes.TEXT:
182
+ elif data_type == "text":
187
183
  assets = [TextAsset(text=text) for text in datapoints]
188
184
  else:
189
- raise ValueError(f"Unsupported data type: {data_type}, must be one of {RapidataDataTypes._possible_values()}")
185
+ raise ValueError(f"Unsupported data type: {data_type}, must be one of 'media' or 'text'")
190
186
 
191
187
  return self._create_general_order(
192
188
  name=name,
@@ -210,7 +206,7 @@ class RapidataOrderManager:
210
206
  name: str,
211
207
  instruction: str,
212
208
  datapoints: list[list[str]],
213
- data_type: str = RapidataDataTypes.MEDIA,
209
+ data_type: Literal["media", "text"] = "media",
214
210
  responses_per_datapoint: int = 10,
215
211
  contexts: list[str] | None = None,
216
212
  media_contexts: list[str] | None = None,
@@ -229,8 +225,8 @@ class RapidataOrderManager:
229
225
  name (str): The name of the order. (Will not be shown to the labeler)
230
226
  instruction (str): The instruction for the comparison. Will be shown along side each datapoint.
231
227
  datapoints (list[list[str]]): Outher list is the datapoints, inner list is the options for the comparison - each datapoint will be labeled.
232
- data_type (str, optional): The data type of the datapoints. Defaults to RapidataDataTypes.MEDIA. \n
233
- Other option: RapidataDataTypes.TEXT ("text").
228
+ data_type (str, optional): The data type of the datapoints. Defaults to "media" (any form of image, video or audio). \n
229
+ Other option: "text".
234
230
  responses_per_datapoint (int, optional): The number of responses that will be collected per datapoint. Defaults to 10.
235
231
  contexts (list[str], optional): The list of contexts for the comparison. Defaults to None.\n
236
232
  If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
@@ -256,12 +252,12 @@ class RapidataOrderManager:
256
252
  if any(len(datapoint) != 2 for datapoint in datapoints):
257
253
  raise ValueError("Each datapoint must contain exactly two options")
258
254
 
259
- if data_type == RapidataDataTypes.MEDIA:
255
+ if data_type == "media":
260
256
  assets = [MultiAsset([MediaAsset(path=path) for path in datapoint]) for datapoint in datapoints]
261
- elif data_type == RapidataDataTypes.TEXT:
257
+ elif data_type == "text":
262
258
  assets = [MultiAsset([TextAsset(text=text) for text in datapoint]) for datapoint in datapoints]
263
259
  else:
264
- raise ValueError(f"Unsupported data type: {data_type}, must be one of {RapidataDataTypes._possible_values()}")
260
+ raise ValueError(f"Unsupported data type: {data_type}, must be one of 'media' or 'text'")
265
261
 
266
262
  return self._create_general_order(
267
263
  name=name,
@@ -286,7 +282,7 @@ class RapidataOrderManager:
286
282
  datapoints: list[str],
287
283
  total_comparison_budget: int,
288
284
  responses_per_comparison: int = 1,
289
- data_type: str = RapidataDataTypes.MEDIA,
285
+ data_type: Literal["media", "text"] = "media",
290
286
  random_comparisons_ratio: float = 0.5,
291
287
  context: Optional[str] = None,
292
288
  validation_set_id: Optional[str] = None,
@@ -306,8 +302,8 @@ class RapidataOrderManager:
306
302
  datapoints (list[str]): A list of datapoints that will participate in the ranking.
307
303
  total_comparison_budget (int): The total number of (pairwise-)comparisons that can be made.
308
304
  responses_per_comparison (int, optional): The number of responses collected per comparison. Defaults to 1.
309
- data_type (str, optional): The data type of the datapoints. Defaults to RapidataDataTypes.MEDIA. \n
310
- Other option: RapidataDataTypes.TEXT ("text").
305
+ data_type (str, optional): The data type of the datapoints. Defaults to "media" (any form of image, video or audio). \n
306
+ Other option: "text".
311
307
  random_comparisons_ratio (float, optional): The fraction of random comparisons in the ranking process.
312
308
  The rest will focus on pairing similarly ranked datapoints. Defaults to 0.5 and can be left untouched.
313
309
  context (str, optional): The context for all the comparison. Defaults to None.\n
@@ -319,12 +315,12 @@ class RapidataOrderManager:
319
315
  selections (Sequence[RapidataSelection], optional): The list of selections for the order. Defaults to []. Decides in what order the tasks should be shown.
320
316
  """
321
317
 
322
- if data_type == RapidataDataTypes.MEDIA:
318
+ if data_type == "media":
323
319
  assets = [MediaAsset(path=path) for path in datapoints]
324
- elif data_type == RapidataDataTypes.TEXT:
320
+ elif data_type == "text":
325
321
  assets = [TextAsset(text=text) for text in datapoints]
326
322
  else:
327
- raise ValueError(f"Unsupported data type: {data_type}, must be one of {RapidataDataTypes._possible_values()}")
323
+ raise ValueError(f"Unsupported data type: {data_type}, must be one of 'media' or 'text'")
328
324
 
329
325
  return self._create_general_order(
330
326
  name=name,
@@ -346,7 +342,7 @@ class RapidataOrderManager:
346
342
  name: str,
347
343
  instruction: str,
348
344
  datapoints: list[str],
349
- data_type: str = RapidataDataTypes.MEDIA,
345
+ data_type: Literal["media", "text"] = "media",
350
346
  responses_per_datapoint: int = 10,
351
347
  filters: Sequence[RapidataFilter] = [],
352
348
  settings: Sequence[RapidataSetting] = [],
@@ -362,8 +358,8 @@ class RapidataOrderManager:
362
358
  name (str): The name of the order.
363
359
  instruction (str): The instruction to answer with free text. Will be shown along side each datapoint.
364
360
  datapoints (list[str]): The list of datapoints for the free text - each datapoint will be labeled.
365
- data_type (str, optional): The data type of the datapoints. Defaults to RapidataDataTypes.MEDIA. \n
366
- Other option: RapidataDataTypes.TEXT ("text").
361
+ data_type (str, optional): The data type of the datapoints. Defaults to "media" (any form of image, video or audio). \n
362
+ Other option: "text".
367
363
  responses_per_datapoint (int, optional): The number of responses that will be collected per datapoint. Defaults to 10.
368
364
  filters (Sequence[RapidataFilter], optional): The list of filters for the free text. Defaults to []. Decides who the tasks should be shown to.
369
365
  settings (Sequence[RapidataSetting], optional): The list of settings for the free text. Defaults to []. Decides how the tasks should be shown.
@@ -373,12 +369,12 @@ class RapidataOrderManager:
373
369
  This will NOT be shown to the labelers but will be included in the result purely for your own reference.
374
370
  """
375
371
 
376
- if data_type == RapidataDataTypes.MEDIA:
372
+ if data_type == "media":
377
373
  assets = [MediaAsset(path=path) for path in datapoints]
378
- elif data_type == RapidataDataTypes.TEXT:
374
+ elif data_type == "text":
379
375
  assets = [TextAsset(text=text) for text in datapoints]
380
376
  else:
381
- raise ValueError(f"Unsupported data type: {data_type}, must be one of {RapidataDataTypes._possible_values()}")
377
+ raise ValueError(f"Unsupported data type: {data_type}, must be one of 'media' or 'text'")
382
378
 
383
379
  return self._create_general_order(
384
380
  name=name,
@@ -1,11 +1,10 @@
1
1
  import os
2
2
  from rapidata.api_client import AttachCategoryTruth, BoundingBoxTruth, BoxShape, ClassifyPayload, ComparePayload, CompareTruth, LinePayload, LocateBoxTruth, LocatePayload, ScrubPayload, ScrubRange, ScrubTruth, TranscriptionPayload, TranscriptionTruth, TranscriptionWord
3
- from rapidata.rapidata_client.assets.data_type_enum import RapidataDataTypes
4
3
  from rapidata.rapidata_client.assets import MediaAsset, TextAsset, MultiAsset
5
4
  from rapidata.rapidata_client.metadata import Metadata
6
5
  from rapidata.rapidata_client.validation.rapids.box import Box
7
6
 
8
- from typing import Sequence
7
+ from typing import Sequence, Literal
9
8
 
10
9
  from rapidata.rapidata_client.validation.rapids.rapids import Rapid
11
10
 
@@ -21,7 +20,7 @@ class RapidsManager:
21
20
  answer_options: list[str],
22
21
  datapoint: str,
23
22
  truths: list[str],
24
- data_type: str = RapidataDataTypes.MEDIA,
23
+ data_type: Literal["media", "text"] = "media",
25
24
  metadata: Sequence[Metadata] = [],
26
25
  explanation: str | None = None,
27
26
  ) -> Rapid:
@@ -32,16 +31,16 @@ class RapidsManager:
32
31
  answer_options (list[str]): The options that the labeler can choose from to answer the question.
33
32
  datapoint (str): The datapoint that the labeler will be labeling.
34
33
  truths (list[str]): The correct answers to the question.
35
- data_type (str, optional): The type of the datapoint. Defaults to RapidataDataTypes.MEDIA.
34
+ data_type (str, optional): The type of the datapoint. Defaults to "media" (any form of image, video or audio).
36
35
  metadata (Sequence[Metadata], optional): The metadata that is attached to the rapid. Defaults to [].
37
36
  """
38
37
 
39
- if data_type == RapidataDataTypes.MEDIA:
38
+ if data_type == "media":
40
39
  asset = MediaAsset(datapoint)
41
- elif data_type == RapidataDataTypes.TEXT:
40
+ elif data_type == "text":
42
41
  asset = TextAsset(datapoint)
43
42
  else:
44
- raise ValueError(f"Unsupported data type: {data_type}")
43
+ raise ValueError(f"Unsupported data type: {data_type}, must be one of 'media' or 'text'")
45
44
 
46
45
  if not isinstance(truths, list):
47
46
  raise ValueError("Truths must be a list of strings")
@@ -69,7 +68,7 @@ class RapidsManager:
69
68
  instruction: str,
70
69
  truth: str,
71
70
  datapoint: list[str],
72
- data_type: str = RapidataDataTypes.MEDIA,
71
+ data_type: Literal["media", "text"] = "media",
73
72
  metadata: Sequence[Metadata] = [],
74
73
  explanation: str | None = None,
75
74
  ) -> Rapid:
@@ -79,13 +78,13 @@ class RapidsManager:
79
78
  instruction (str): The instruction that the labeler will be comparing the assets on.
80
79
  truth (str): The correct answer to the comparison. (has to be one of the assets)
81
80
  datapoint (list[str]): The two assets that the labeler will be comparing.
82
- data_type (str, optional): The type of the datapoint. Defaults to RapidataDataTypes.MEDIA.
81
+ data_type (str, optional): The type of the datapoint. Defaults to "media" (any form of image, video or audio).
83
82
  metadata (Sequence[Metadata], optional): The metadata that is attached to the rapid. Defaults to [].
84
83
  """
85
84
 
86
- if data_type == RapidataDataTypes.MEDIA:
85
+ if data_type == "media":
87
86
  assets = [MediaAsset(image) for image in datapoint]
88
- elif data_type == RapidataDataTypes.TEXT:
87
+ elif data_type == "text":
89
88
  assets = [TextAsset(text) for text in datapoint]
90
89
  else:
91
90
  raise ValueError(f"Unsupported data type: {data_type}")
@@ -1,8 +1,8 @@
1
+ from typing import Literal
1
2
  from rapidata.api_client import QueryModel
2
3
  from rapidata.rapidata_client.validation.rapidata_validation_set import RapidataValidationSet
3
4
  from rapidata.api_client.models.create_validation_set_model import CreateValidationSetModel
4
5
  from rapidata.service.openapi_service import OpenAPIService
5
- from rapidata.rapidata_client.assets.data_type_enum import RapidataDataTypes
6
6
  from rapidata.rapidata_client.validation.rapids.rapids_manager import RapidsManager
7
7
  from rapidata.rapidata_client.validation.rapids.rapids import Rapid
8
8
  from rapidata.rapidata_client.metadata import PromptMetadata, MediaAssetMetadata
@@ -36,7 +36,7 @@ class ValidationSetManager:
36
36
  answer_options: list[str],
37
37
  datapoints: list[str],
38
38
  truths: list[list[str]],
39
- data_type: str = RapidataDataTypes.MEDIA,
39
+ data_type: Literal["media", "text"] = "media",
40
40
  contexts: list[str] | None = None,
41
41
  media_contexts: list[str] | None = None,
42
42
  explanations: list[str | None] | None = None,
@@ -54,7 +54,7 @@ class ValidationSetManager:
54
54
  options: ["yes", "no", "maybe"]
55
55
  datapoints: ["datapoint1", "datapoint2"]
56
56
  truths: [["yes"], ["no", "maybe"]] -> first datapoint correct answer is "yes", second datapoint is "no" or "maybe"
57
- data_type (str, optional): The type of data. Defaults to RapidataDataTypes.MEDIA. Other option: RapidataDataTypes.TEXT ("text").
57
+ data_type (str, optional): The type of data. Defaults to "media" (any form of image, video or audio). Other option: "text".
58
58
  contexts (list[str], optional): The contexts for each datapoint. Defaults to None.\n
59
59
  If provided has to be the same length as datapoints and will be shown in addition to the instruction and answer options. (Therefore will be different for each datapoint)
60
60
  Will be match up with the datapoints using the list index.
@@ -119,7 +119,7 @@ class ValidationSetManager:
119
119
  instruction: str,
120
120
  datapoints: list[list[str]],
121
121
  truths: list[str],
122
- data_type: str = RapidataDataTypes.MEDIA,
122
+ data_type: Literal["media", "text"] = "media",
123
123
  contexts: list[str] | None = None,
124
124
  media_contexts: list[str] | None = None,
125
125
  explanation: list[str | None] | None = None,
@@ -137,7 +137,7 @@ class ValidationSetManager:
137
137
  truths: ["image1.jpg", "image4.jpg"] -> first comparison image1.jpg has a cat, second comparison image4.jpg has a cat
138
138
  datapoints (list[list[str]]): The compare datapoints to create the validation set with.
139
139
  Outer list is for each comparison, inner list the two images/texts that will be compared.
140
- data_type (str, optional): The type of data. Defaults to RapidataDataTypes.MEDIA. Other option: RapidataDataTypes.TEXT ("text").
140
+ data_type (str, optional): The type of data. Defaults to "media" (any form of image, video or audio). Other option: "text".
141
141
  contexts (list[str], optional): The contexts for each datapoint. Defaults to None.\n
142
142
  If provided has to be the same length as datapoints and will be shown in addition to the instruction and truth. (Therefore will be different for each datapoint)
143
143
  Will be match up with the datapoints using the list index.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rapidata
3
- Version: 2.31.0
3
+ Version: 2.31.1
4
4
  Summary: Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way.
5
5
  License: Apache-2.0
6
6
  Author: Rapidata AG
@@ -1,4 +1,4 @@
1
- rapidata/__init__.py,sha256=1J7X3wXGT2IlF9-Mt576ztUEGkXceBvfVxybgbO52wE,865
1
+ rapidata/__init__.py,sha256=PvHyRe5DWc2oDvYjib2Ti7MYv6CVBwmdIiznT5Ff2jI,865
2
2
  rapidata/api_client/__init__.py,sha256=BgSOExnifSldFqbuk1ZWdHbrLKlntelU0IjKYUFf3MM,33738
3
3
  rapidata/api_client/api/__init__.py,sha256=V_nI5gljvhY0TmFLOdzpys9e1l9J6PokA8IxeYmynyg,1422
4
4
  rapidata/api_client/api/benchmark_api.py,sha256=1TzLL4lratyFaFbNiCtfW8l_yIRRil4u6xpvM0250UE,140976
@@ -534,7 +534,7 @@ rapidata/rapidata_client/assets/_media_asset.py,sha256=LEQtIPHNPVwuIA5ua_3x82aTt
534
534
  rapidata/rapidata_client/assets/_multi_asset.py,sha256=OzU5VxRh3Igku4HC60tEc0XECHh5C2k-k35AbqW7eG8,1842
535
535
  rapidata/rapidata_client/assets/_sessions.py,sha256=Dgcb61Q4gLwU5hurnv6sN2Jvw-ZV7vjhVWXog5Wq4aw,1094
536
536
  rapidata/rapidata_client/assets/_text_asset.py,sha256=bZHBrvbHSzF0qePoJ5LqYq__2ZDspzCeYi1nDbiIako,796
537
- rapidata/rapidata_client/assets/data_type_enum.py,sha256=ELC-ymeKnQlfNAzfqsI7MmUuRiGYamCHVcTc0qR6Fm4,185
537
+ rapidata/rapidata_client/assets/data_type_enum.py,sha256=v6gR2Wqenb9H_Bs6dKmUrkbjYRDD3tZmeoL5f8LlAcM,239
538
538
  rapidata/rapidata_client/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
539
539
  rapidata/rapidata_client/benchmark/leaderboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
540
540
  rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py,sha256=BDI0xJkTumbZy4dYqkzXy074jC9eaVWoJJDZ84uvatE,3906
@@ -559,7 +559,7 @@ rapidata/rapidata_client/filter/models/gender.py,sha256=aXg6Kql2BIy8d5d1lCVi1axM
559
559
  rapidata/rapidata_client/filter/new_user_filter.py,sha256=qU7d6cSslGEO_N1tYPS4Ru3cGbQYH2_I5dJPNPHvtCM,369
560
560
  rapidata/rapidata_client/filter/not_filter.py,sha256=05uZMNPfguNPONP2uYYtuxx-5UAYdmc8gwSAEHMiK3k,1183
561
561
  rapidata/rapidata_client/filter/or_filter.py,sha256=EomsXyYec4beAA63LYfIsh8dO4So1duI7VlLW8VPfzY,1339
562
- rapidata/rapidata_client/filter/rapidata_filters.py,sha256=l_pPOA56f8hiacAgr3om5j6IpTP-BGOB247c_uhuYzM,2194
562
+ rapidata/rapidata_client/filter/rapidata_filters.py,sha256=4UqpfD2SfxVKRsxWL7uOf3sTeW7dpwxzOqLEMNHERWY,2215
563
563
  rapidata/rapidata_client/filter/response_count_filter.py,sha256=sDv9Dvy0FbnIQRSAxFGrUf9SIMISTNxnlAQcrFKBjXE,1989
564
564
  rapidata/rapidata_client/filter/user_score_filter.py,sha256=2C78zkWm5TnfkxGbV1ER2xB7s9ynpacaibzyRZKG8Cc,1566
565
565
  rapidata/rapidata_client/logging/__init__.py,sha256=4gLxePW8TvgYDZmPWMcf6fA8bEyu35vMKOmlPj5oXNE,110
@@ -577,7 +577,7 @@ rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
577
577
  rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=5OIeIDvqAnb38KfjTsgj5JN7k5xKRhC-1_G-VulzO2c,21216
578
578
  rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=PyRXNazBffj98Qp7S09QmuIGzNTE-YoUhI8YEvlSCps,12838
579
579
  rapidata/rapidata_client/order/rapidata_order.py,sha256=bYTa7GtR_TEvfAZJZ1Aliy4yPsc-wo8L8tyqtegupyM,12675
580
- rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=Kdup91It_M4zGveZER-CjTG0e5NJTSJzBiRqGufuT-I,37778
580
+ rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=28Lb8iUh_Bun-ijiNGiCjrLn5Rkzbx7lgsgA63M_Jm0,37255
581
581
  rapidata/rapidata_client/order/rapidata_results.py,sha256=ZY0JyHMBZlR6-t6SqKt2OLEO6keR_KvKg9Wk6_I29x4,8653
582
582
  rapidata/rapidata_client/rapidata_client.py,sha256=jTkpu0YcizoxAzbfNdnY1S0xXX6Q0KEMi8boo0f2F5c,4274
583
583
  rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vTTf_UgUXPYNJ-H6M,153
@@ -614,8 +614,8 @@ rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=h6aicVyrBe
614
614
  rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MDakzx4I8Y0laj7siw9teeXj5R0,21
615
615
  rapidata/rapidata_client/validation/rapids/box.py,sha256=t3_Kn6doKXdnJdtbwefXnYKPiTKHneJl9E2inkDSqL8,589
616
616
  rapidata/rapidata_client/validation/rapids/rapids.py,sha256=bsDPp8IJ_7dQOJP7U9IVqfLKctY5YP58gDBX8Ixrpc4,3827
617
- rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=s5VAq8H5CKACWfmIQuz9kHC8t2nd-xEHGGUj9pIfXKI,14386
618
- rapidata/rapidata_client/validation/validation_set_manager.py,sha256=yQTZSAnqTT0xnwESPIEykQG-34UP9oyoavpNA0KuRIU,30626
617
+ rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=O-AWNQ84zNd8w8JEfCTnWDGAuiDz-Cy17MV1nt7xi2I,14338
618
+ rapidata/rapidata_client/validation/validation_set_manager.py,sha256=7eLh9REoOLRvHR8Ao0oQkPU8REPdLYRP88WXsxX9-fU,30576
619
619
  rapidata/rapidata_client/workflow/__init__.py,sha256=7nXcY91xkxjHudBc9H0fP35eBBtgwHGWTQKbb-M4h7Y,477
620
620
  rapidata/rapidata_client/workflow/_base_workflow.py,sha256=XyIZFKS_RxAuwIHS848S3AyLEHqd07oTD_5jm2oUbsw,762
621
621
  rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=9bT54wxVJgxC-zLk6MVNbseFpzYrvFPjt7DHvxqYfnk,1736
@@ -631,7 +631,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
631
631
  rapidata/service/credential_manager.py,sha256=pUEEtp6VrFWYhfUUtyqmS0AlRqe2Y0kFkY6o22IT4KM,8682
632
632
  rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
633
633
  rapidata/service/openapi_service.py,sha256=xoGBACpUhG0H-tadSBa8A91LHyfI7n-FCT2JlrERqco,5221
634
- rapidata-2.31.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
635
- rapidata-2.31.0.dist-info/METADATA,sha256=I0oM2qAap3-ZDUa67lvb0L8wgIY9K3x9HArj6dW0ALc,1264
636
- rapidata-2.31.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
637
- rapidata-2.31.0.dist-info/RECORD,,
634
+ rapidata-2.31.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
635
+ rapidata-2.31.1.dist-info/METADATA,sha256=x0wvgLvfcIDpbwgn14cQAAYjES9WPcgsay63Mu2P3UE,1264
636
+ rapidata-2.31.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
637
+ rapidata-2.31.1.dist-info/RECORD,,