rapidata 1.9.0__py3-none-any.whl → 1.10.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/api_client/models/rapid_answer.py +3 -1
- rapidata/rapidata_client/dataset/validation_set_builder.py +13 -1
- rapidata/rapidata_client/order/order_builder.py +25 -0
- rapidata/rapidata_client/order/rapidata_order_builder.py +1 -1
- rapidata/rapidata_client/rapidata_client.py +27 -4
- rapidata/rapidata_client/selection/capped_selection.py +1 -1
- rapidata/rapidata_client/simple_builders/simple_classification_builders.py +26 -9
- rapidata/rapidata_client/simple_builders/simple_compare_builders.py +25 -8
- rapidata/rapidata_client/simple_builders/simple_free_text_builders.py +13 -1
- rapidata/rapidata_client/simple_builders/simple_select_words_builders.py +11 -1
- {rapidata-1.9.0.dist-info → rapidata-1.10.1.dist-info}/METADATA +1 -1
- {rapidata-1.9.0.dist-info → rapidata-1.10.1.dist-info}/RECORD +14 -13
- {rapidata-1.9.0.dist-info → rapidata-1.10.1.dist-info}/LICENSE +0 -0
- {rapidata-1.9.0.dist-info → rapidata-1.10.1.dist-info}/WHEEL +0 -0
|
@@ -28,11 +28,12 @@ class RapidAnswer(BaseModel):
|
|
|
28
28
|
RapidAnswer
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
id: StrictStr
|
|
31
|
+
user_id: StrictStr = Field(alias="userId")
|
|
31
32
|
country: StrictStr
|
|
32
33
|
result: RapidAnswerResult
|
|
33
34
|
user_score: Union[StrictFloat, StrictInt] = Field(alias="userScore")
|
|
34
35
|
demographic_information: Dict[str, StrictStr] = Field(alias="demographicInformation")
|
|
35
|
-
__properties: ClassVar[List[str]] = ["id", "country", "result", "userScore", "demographicInformation"]
|
|
36
|
+
__properties: ClassVar[List[str]] = ["id", "userId", "country", "result", "userScore", "demographicInformation"]
|
|
36
37
|
|
|
37
38
|
model_config = ConfigDict(
|
|
38
39
|
populate_by_name=True,
|
|
@@ -89,6 +90,7 @@ class RapidAnswer(BaseModel):
|
|
|
89
90
|
|
|
90
91
|
_obj = cls.model_validate({
|
|
91
92
|
"id": obj.get("id"),
|
|
93
|
+
"userId": obj.get("userId"),
|
|
92
94
|
"country": obj.get("country"),
|
|
93
95
|
"result": RapidAnswerResult.from_dict(obj["result"]) if obj.get("result") is not None else None,
|
|
94
96
|
"userScore": obj.get("userScore"),
|
|
@@ -44,7 +44,7 @@ class ValidationSetBuilder:
|
|
|
44
44
|
self.validation_set_id: str | None = None
|
|
45
45
|
self._rapid_parts: list[ValidatioRapidParts] = []
|
|
46
46
|
|
|
47
|
-
def
|
|
47
|
+
def submit(self) -> RapidataValidationSet:
|
|
48
48
|
"""Create the validation set by executing all HTTP requests. This should be the last method called on the builder.
|
|
49
49
|
|
|
50
50
|
Returns:
|
|
@@ -79,6 +79,18 @@ class ValidationSetBuilder:
|
|
|
79
79
|
)
|
|
80
80
|
|
|
81
81
|
return validation_set
|
|
82
|
+
|
|
83
|
+
@deprecated("Use submit instead")
|
|
84
|
+
def create(self) -> RapidataValidationSet:
|
|
85
|
+
"""Create the validation set by executing all HTTP requests. This should be the last method called on the builder.
|
|
86
|
+
|
|
87
|
+
Returns:
|
|
88
|
+
RapidataValidationSet: A RapidataValidationSet instance.
|
|
89
|
+
|
|
90
|
+
Raises:
|
|
91
|
+
ValueError: If the validation set creation fails.
|
|
92
|
+
"""
|
|
93
|
+
return self.submit()
|
|
82
94
|
|
|
83
95
|
def add_rapid(self, rapid: Rapid):
|
|
84
96
|
"""Add a rapid to the validation set.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from rapidata.service.openapi_service import OpenAPIService
|
|
2
|
+
from rapidata.rapidata_client.simple_builders.simple_classification_builders import ClassificationQuestionBuilder
|
|
3
|
+
from rapidata.rapidata_client.simple_builders.simple_compare_builders import CompareCriteriaBuilder
|
|
4
|
+
from rapidata.rapidata_client.simple_builders.simple_free_text_builders import FreeTextQuestionBuilder
|
|
5
|
+
from rapidata.rapidata_client.simple_builders.simple_select_words_builders import SelectWordsInstructionBuilder
|
|
6
|
+
from rapidata.rapidata_client.order.rapidata_order_builder import RapidataOrderBuilder
|
|
7
|
+
|
|
8
|
+
class BaseOrderBuilder():
|
|
9
|
+
def __init__(self, openapi_service: OpenAPIService):
|
|
10
|
+
self.openapi_service = openapi_service
|
|
11
|
+
|
|
12
|
+
def classify_order(self, name: str):
|
|
13
|
+
return ClassificationQuestionBuilder(name, self.openapi_service)
|
|
14
|
+
|
|
15
|
+
def compare_order(self, name: str):
|
|
16
|
+
return CompareCriteriaBuilder(name, self.openapi_service)
|
|
17
|
+
|
|
18
|
+
def free_text_order(self, name: str):
|
|
19
|
+
return FreeTextQuestionBuilder(name, self.openapi_service)
|
|
20
|
+
|
|
21
|
+
def select_words_order(self, name: str):
|
|
22
|
+
return SelectWordsInstructionBuilder(name, self.openapi_service)
|
|
23
|
+
|
|
24
|
+
def advanced_order(self, name: str):
|
|
25
|
+
return RapidataOrderBuilder(name, self.openapi_service)
|
|
@@ -5,6 +5,8 @@ from rapidata.service.openapi_service import OpenAPIService
|
|
|
5
5
|
from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
|
|
6
6
|
from rapidata.rapidata_client.dataset.rapidata_dataset import RapidataDataset
|
|
7
7
|
|
|
8
|
+
from rapidata.rapidata_client.order.order_builder import BaseOrderBuilder
|
|
9
|
+
|
|
8
10
|
from rapidata.rapidata_client.simple_builders.simple_classification_builders import ClassificationQuestionBuilder
|
|
9
11
|
from rapidata.rapidata_client.simple_builders.simple_compare_builders import CompareCriteriaBuilder
|
|
10
12
|
from rapidata.rapidata_client.simple_builders.simple_free_text_builders import FreeTextQuestionBuilder
|
|
@@ -28,8 +30,6 @@ from deprecated import deprecated
|
|
|
28
30
|
|
|
29
31
|
class RapidataClient:
|
|
30
32
|
"""The Rapidata client is the main entry point for interacting with the Rapidata API. It allows you to create orders and validation sets."""
|
|
31
|
-
|
|
32
|
-
rapid_builder = BaseRapidBuilder()
|
|
33
33
|
|
|
34
34
|
def __init__(
|
|
35
35
|
self,
|
|
@@ -53,8 +53,12 @@ class RapidataClient:
|
|
|
53
53
|
oauth_scope=oauth_scope,
|
|
54
54
|
cert_path=cert_path
|
|
55
55
|
)
|
|
56
|
+
|
|
57
|
+
self.rapid_builder = BaseRapidBuilder()
|
|
58
|
+
|
|
59
|
+
self.order_builder = BaseOrderBuilder(openapi_service=self.openapi_service)
|
|
56
60
|
|
|
57
|
-
@deprecated("Use the
|
|
61
|
+
@deprecated("Use the order_builder instead.")
|
|
58
62
|
def new_order(self, name: str) -> RapidataOrderBuilder:
|
|
59
63
|
"""Create a new order using a RapidataOrderBuilder instance.
|
|
60
64
|
|
|
@@ -64,7 +68,22 @@ class RapidataClient:
|
|
|
64
68
|
Returns:
|
|
65
69
|
RapidataOrderBuilder: A RapidataOrderBuilder instance.
|
|
66
70
|
"""
|
|
67
|
-
return
|
|
71
|
+
return self.new_advanced_order(name)
|
|
72
|
+
|
|
73
|
+
@deprecated("Use the order_builder instead.")
|
|
74
|
+
def new_advanced_order(self, name: str) -> RapidataOrderBuilder:
|
|
75
|
+
"""Create a new order using a RapidataOrderBuilder instance.
|
|
76
|
+
This method is intended for creating orders with complex requirements that can not be fulfilled with the specific builders.
|
|
77
|
+
For any other order, it is recommended to use the specific builder methods.
|
|
78
|
+
example: create_classify_order, create_compare_order, create_free_text_order, create_select_words_order
|
|
79
|
+
|
|
80
|
+
Args:
|
|
81
|
+
name (str): The name of the order.
|
|
82
|
+
|
|
83
|
+
Returns:
|
|
84
|
+
RapidataOrderBuilder: A RapidataOrderBuilder instance.
|
|
85
|
+
"""
|
|
86
|
+
return RapidataOrderBuilder(name=name, openapi_service=self.openapi_service)
|
|
68
87
|
|
|
69
88
|
def new_validation_set(self, name: str) -> ValidationSetBuilder:
|
|
70
89
|
"""Create a new validation set using a ValidationDatasetBuilder instance.
|
|
@@ -161,6 +180,7 @@ class RapidataClient:
|
|
|
161
180
|
orders = [self.get_validation_set(validation_set.id) for validation_set in validation_page_result.items] # type: ignore # will be fixed with the next backend deployment
|
|
162
181
|
return orders
|
|
163
182
|
|
|
183
|
+
@deprecated("Use the order_builder instead.")
|
|
164
184
|
def create_classify_order(self, name: str) -> ClassificationQuestionBuilder:
|
|
165
185
|
"""Create a new classification order where people are asked to classify an image.
|
|
166
186
|
|
|
@@ -172,6 +192,7 @@ class RapidataClient:
|
|
|
172
192
|
"""
|
|
173
193
|
return ClassificationQuestionBuilder(name=name, openapi_service=self.openapi_service)
|
|
174
194
|
|
|
195
|
+
@deprecated("Use the order_builder instead.")
|
|
175
196
|
def create_compare_order(self, name: str) -> CompareCriteriaBuilder:
|
|
176
197
|
"""Create a new comparison order where people are asked to compare two images.
|
|
177
198
|
|
|
@@ -183,6 +204,7 @@ class RapidataClient:
|
|
|
183
204
|
"""
|
|
184
205
|
return CompareCriteriaBuilder(name=name, openapi_service=self.openapi_service)
|
|
185
206
|
|
|
207
|
+
@deprecated("Use the order_builder instead.")
|
|
186
208
|
def create_free_text_order(self, name: str) -> FreeTextQuestionBuilder:
|
|
187
209
|
"""Create a new free text order where people are asked to provide a free text answer.
|
|
188
210
|
|
|
@@ -194,6 +216,7 @@ class RapidataClient:
|
|
|
194
216
|
"""
|
|
195
217
|
return FreeTextQuestionBuilder(name=name, openapi_service=self.openapi_service)
|
|
196
218
|
|
|
219
|
+
@deprecated("Use the order_builder instead.")
|
|
197
220
|
def create_select_words_order(self, name: str) -> SelectWordsInstructionBuilder:
|
|
198
221
|
"""Create a new select words order where people are asked to transcribe an audio file.
|
|
199
222
|
|
|
@@ -28,7 +28,7 @@ class ClassificationOrderBuilder:
|
|
|
28
28
|
self._options = options
|
|
29
29
|
self._media_assets = media_assets
|
|
30
30
|
self._responses_required = 10
|
|
31
|
-
self.
|
|
31
|
+
self._confidence_threshold = None
|
|
32
32
|
self._metadata = None
|
|
33
33
|
self._validation_set_id = None
|
|
34
34
|
self._filters: list[Filter] = []
|
|
@@ -54,12 +54,16 @@ class ClassificationOrderBuilder:
|
|
|
54
54
|
|
|
55
55
|
def responses(self, responses_required: int) -> 'ClassificationOrderBuilder':
|
|
56
56
|
"""Set the number of responses required per datapoint for the classification order. Will default to 10."""
|
|
57
|
+
if responses_required < 1:
|
|
58
|
+
raise ValueError("Responses required must be at least 1")
|
|
59
|
+
|
|
57
60
|
self._responses_required = responses_required
|
|
58
61
|
return self
|
|
59
62
|
|
|
60
|
-
def
|
|
61
|
-
"""Set the
|
|
62
|
-
|
|
63
|
+
def confidence_threshold(self, confidence_threshold: float) -> 'ClassificationOrderBuilder':
|
|
64
|
+
"""Set the confidence threshold for early stopping.
|
|
65
|
+
That means that the order will either stop at the number of responses or when the confidence threshold is reached, whatever comes first."""
|
|
66
|
+
self._confidence_threshold = confidence_threshold
|
|
63
67
|
return self
|
|
64
68
|
|
|
65
69
|
def validation_set(self, validation_set_id: str) -> 'ClassificationOrderBuilder':
|
|
@@ -104,14 +108,27 @@ class ClassificationOrderBuilder:
|
|
|
104
108
|
|
|
105
109
|
return self
|
|
106
110
|
|
|
107
|
-
@deprecated("Use .
|
|
111
|
+
@deprecated("Use .submit instead.")
|
|
108
112
|
def create(self, submit: bool = True, max_upload_workers: int = 10) -> 'RapidataOrder':
|
|
109
113
|
"""Create the classification order."""
|
|
110
|
-
return self.
|
|
111
|
-
|
|
114
|
+
return self.submit(submit=submit, disable_link=False)
|
|
115
|
+
|
|
116
|
+
@deprecated("Use .submit instead.")
|
|
112
117
|
def run(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
113
118
|
"""Run the classification order.
|
|
114
119
|
|
|
120
|
+
Args:
|
|
121
|
+
submit (bool): Whether to submit the order. Defaults to True. \
|
|
122
|
+
Set this to False if you first want to see the order on your dashboard before running it.
|
|
123
|
+
disable_link (bool): Whether to disable the printing of the link to the order. Defaults to False.
|
|
124
|
+
|
|
125
|
+
Returns:
|
|
126
|
+
RapidataOrder: The created classification order."""
|
|
127
|
+
return self.submit(submit=submit, disable_link=disable_link)
|
|
128
|
+
|
|
129
|
+
def submit(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
130
|
+
"""Submit the classification order to be labeled.
|
|
131
|
+
|
|
115
132
|
Args:
|
|
116
133
|
submit (bool): Whether to submit the order. Defaults to True. \
|
|
117
134
|
Set this to False if you first want to see the order on your dashboard before running it.
|
|
@@ -120,10 +137,10 @@ class ClassificationOrderBuilder:
|
|
|
120
137
|
Returns:
|
|
121
138
|
RapidataOrder: The created classification order."""
|
|
122
139
|
|
|
123
|
-
if self.
|
|
140
|
+
if self._confidence_threshold:
|
|
124
141
|
referee = EarlyStoppingReferee(
|
|
125
142
|
max_vote_count=self._responses_required,
|
|
126
|
-
threshold=self.
|
|
143
|
+
threshold=self._confidence_threshold
|
|
127
144
|
)
|
|
128
145
|
|
|
129
146
|
else:
|
|
@@ -23,13 +23,16 @@ class CompareOrderBuilder:
|
|
|
23
23
|
self._responses_required = 10
|
|
24
24
|
self._metadata = None
|
|
25
25
|
self._validation_set_id = None
|
|
26
|
-
self.
|
|
26
|
+
self._confidence_threshold = None
|
|
27
27
|
self._filters: list[Filter] = []
|
|
28
28
|
self._settings = Settings()
|
|
29
29
|
self._time_effort = time_effort
|
|
30
30
|
|
|
31
31
|
def responses(self, responses_required: int) -> 'CompareOrderBuilder':
|
|
32
32
|
"""Set the number of resoonses required per matchup/pairing for the comparison order. Will default to 10 if not set."""
|
|
33
|
+
if responses_required < 1:
|
|
34
|
+
raise ValueError("Responses required must be at least 1.")
|
|
35
|
+
|
|
33
36
|
self._responses_required = responses_required
|
|
34
37
|
return self
|
|
35
38
|
|
|
@@ -61,9 +64,10 @@ class CompareOrderBuilder:
|
|
|
61
64
|
self._validation_set_id = validation_set_id
|
|
62
65
|
return self
|
|
63
66
|
|
|
64
|
-
def
|
|
65
|
-
"""Set the
|
|
66
|
-
|
|
67
|
+
def confidence_threshold(self, confidence_threshold: float) -> 'CompareOrderBuilder':
|
|
68
|
+
"""Set the confidence threshold for early stopping.
|
|
69
|
+
That means that the order will either stop at the number of responses or when the confidence threshold is reached, whatever comes first."""
|
|
70
|
+
self._confidence_threshold = confidence_threshold
|
|
67
71
|
return self
|
|
68
72
|
|
|
69
73
|
def countries(self, country_codes: list[str]) -> 'CompareOrderBuilder':
|
|
@@ -103,14 +107,27 @@ class CompareOrderBuilder:
|
|
|
103
107
|
|
|
104
108
|
return self
|
|
105
109
|
|
|
106
|
-
@deprecated("Use .
|
|
110
|
+
@deprecated("Use .submit instead.")
|
|
107
111
|
def create(self, submit: bool = True, max_upload_workers: int = 10) -> 'RapidataOrder':
|
|
108
112
|
"""Create the classification order."""
|
|
109
|
-
return self.
|
|
113
|
+
return self.submit(submit=submit, disable_link=False)
|
|
110
114
|
|
|
111
115
|
def run(self, submit: bool = True, disable_link: bool = False) -> RapidataOrder:
|
|
112
116
|
"""Run the compare order.
|
|
113
117
|
|
|
118
|
+
Args:
|
|
119
|
+
submit (bool): Whether to submit the order. Defaults to True. \
|
|
120
|
+
Set this to False if you first want to see the order on your dashboard before running it.
|
|
121
|
+
disable_link (bool): Whether to disable the printing of the link to the order. Defaults to False.
|
|
122
|
+
|
|
123
|
+
Returns:
|
|
124
|
+
RapidataOrder: The created compare order."""
|
|
125
|
+
|
|
126
|
+
return self.submit(submit=submit, disable_link=disable_link)
|
|
127
|
+
|
|
128
|
+
def submit(self, submit: bool = True, disable_link: bool = False) -> RapidataOrder:
|
|
129
|
+
"""Submit the compare order to be labeled.
|
|
130
|
+
|
|
114
131
|
Args:
|
|
115
132
|
submit (bool): Whether to submit the order. Defaults to True. \
|
|
116
133
|
Set this to False if you first want to see the order on your dashboard before running it.
|
|
@@ -119,10 +136,10 @@ class CompareOrderBuilder:
|
|
|
119
136
|
Returns:
|
|
120
137
|
RapidataOrder: The created compare order."""
|
|
121
138
|
|
|
122
|
-
if self.
|
|
139
|
+
if self._confidence_threshold:
|
|
123
140
|
referee = EarlyStoppingReferee(
|
|
124
141
|
max_vote_count=self._responses_required,
|
|
125
|
-
threshold=self.
|
|
142
|
+
threshold=self._confidence_threshold
|
|
126
143
|
)
|
|
127
144
|
|
|
128
145
|
else:
|
|
@@ -72,10 +72,22 @@ class FreeTextOrderBuilder:
|
|
|
72
72
|
self._settings.translation_behaviour(TranslationBehaviour.ONLY_TRANSLATED)
|
|
73
73
|
|
|
74
74
|
return self
|
|
75
|
-
|
|
75
|
+
|
|
76
76
|
def run(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
77
77
|
"""Run the free text order.
|
|
78
78
|
|
|
79
|
+
Args:
|
|
80
|
+
submit (bool): Whether to submit the order. Defaults to True. \
|
|
81
|
+
Set this to False if you first want to see the order on your dashboard before running it.
|
|
82
|
+
disable_link (bool): Whether to disable the printing of the link to the order. Defaults to False.
|
|
83
|
+
|
|
84
|
+
Returns:
|
|
85
|
+
RapidataOrder: The created free text order."""
|
|
86
|
+
return self.submit(submit=submit, disable_link=disable_link)
|
|
87
|
+
|
|
88
|
+
def submit(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
89
|
+
"""Submit the free text order to be labeled.
|
|
90
|
+
|
|
79
91
|
Args:
|
|
80
92
|
submit (bool): Whether to submit the order. Defaults to True. \
|
|
81
93
|
Set this to False if you first want to see the order on your dashboard before running it.
|
|
@@ -82,10 +82,20 @@ class SelectWordsOrderBuilder:
|
|
|
82
82
|
self._settings.translation_behaviour(TranslationBehaviour.ONLY_TRANSLATED)
|
|
83
83
|
|
|
84
84
|
return self
|
|
85
|
-
|
|
85
|
+
|
|
86
86
|
def run(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
87
87
|
"""Run the order.
|
|
88
88
|
|
|
89
|
+
Args:
|
|
90
|
+
submit (bool): Whether to submit the order. Defaults to True. \
|
|
91
|
+
Set this to False if you first want to see the order on your dashboard before running it.
|
|
92
|
+
disable_link (bool): Whether to disable the printing of the link to the order. Defaults to False."""
|
|
93
|
+
|
|
94
|
+
return self.submit(submit=submit, disable_link=disable_link)
|
|
95
|
+
|
|
96
|
+
def submit(self, submit: bool = True, disable_link: bool = False) -> 'RapidataOrder':
|
|
97
|
+
"""Submit the order to be labeled.
|
|
98
|
+
|
|
89
99
|
Args:
|
|
90
100
|
submit (bool): Whether to submit the order. Defaults to True. \
|
|
91
101
|
Set this to False if you first want to see the order on your dashboard before running it.
|
|
@@ -243,7 +243,7 @@ rapidata/api_client/models/query_validation_rapids_result_paged_result.py,sha256
|
|
|
243
243
|
rapidata/api_client/models/query_validation_set_model.py,sha256=FIPvd0-wXvK-GTdtj_ZvQEcsLt2B8wTXb6-33WujkBY,4239
|
|
244
244
|
rapidata/api_client/models/query_workflows_model.py,sha256=Y3HuKLbtLlejEQsJyVZ-vLN6AJExWoLo1SQmLFWX4vw,4135
|
|
245
245
|
rapidata/api_client/models/ranked_datapoint_model.py,sha256=c9Q5iqRPvNd-2x_1t9SRE7wI0optxB67Z-tE8V4D2lM,3087
|
|
246
|
-
rapidata/api_client/models/rapid_answer.py,sha256=
|
|
246
|
+
rapidata/api_client/models/rapid_answer.py,sha256=3C5-U_-PYl9yZADf6OIy3GUhY56DqdwPKN3cXD4XE2k,3380
|
|
247
247
|
rapidata/api_client/models/rapid_answer_result.py,sha256=oXYHKpjkXa_cxgJb8xUR_v8jo6RV06nLxLxXEGVrhAY,11634
|
|
248
248
|
rapidata/api_client/models/rapid_result_model.py,sha256=JVUSCNErUbZimSIelKb7pgXjxdaHFX6ZjKahuRLbe7w,3048
|
|
249
249
|
rapidata/api_client/models/rapid_result_model_result.py,sha256=RjA75vGoZW5fEHLxS3-z1TUesyax_qxPXW4aYhGFoPw,11681
|
|
@@ -340,7 +340,7 @@ rapidata/rapidata_client/dataset/rapid_builders/select_words_rapid_builders.py,s
|
|
|
340
340
|
rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=R7mlummfPdIMcIE6qB1gBWWIuOpUTFtwVlBkOf8Fm60,5224
|
|
341
341
|
rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=qSvsTSdpv4sM7uTRxA7f5RM4Lg0VvkrUEbBgG39KiEM,11662
|
|
342
342
|
rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=uzpOZFqQu8bG6vmjcWWUNJPZsRe28OmnyalRE6ry8tk,2317
|
|
343
|
-
rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=
|
|
343
|
+
rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=vrZPT-NnIQl4v597vikHFclWWigjBML9gi6fgySVXJY,12387
|
|
344
344
|
rapidata/rapidata_client/filter/__init__.py,sha256=F3JsMCbAZWH7SNdgaj98ydTqgCCKXKBhLyt9gQ4x6tQ,301
|
|
345
345
|
rapidata/rapidata_client/filter/age_filter.py,sha256=hncr1zNM_HrO0fCta8h0LgTCB8Ufv_vI5_cGhMb-xr8,478
|
|
346
346
|
rapidata/rapidata_client/filter/base_filter.py,sha256=nXraj72cumyQjjYoo4MMpnlE0aWjAIOmGakKf0MNqps,135
|
|
@@ -356,16 +356,17 @@ rapidata/rapidata_client/metadata/prompt_metadata.py,sha256=W3kG4J53SuVCw9rU2bJY
|
|
|
356
356
|
rapidata/rapidata_client/metadata/public_text_metadata.py,sha256=LTiBQHs6izxQ6-C84d6Pf7lL4ENTDgg__HZnDKvzvMc,511
|
|
357
357
|
rapidata/rapidata_client/metadata/select_words_metadata.py,sha256=Z7mxJ1i0EDRUlHpnzaUyBSdybu3waR15L-GFVfCjJos,625
|
|
358
358
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
+
rapidata/rapidata_client/order/order_builder.py,sha256=Ur9JlPUCbdM1CFPpwb624uIiVD2hZf65-ucA2Uyx0AE,1276
|
|
359
360
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=91F4PnNvhlSNwIB328_2R6mt9gINweo9U41rVrk_YPo,4834
|
|
360
|
-
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=
|
|
361
|
-
rapidata/rapidata_client/rapidata_client.py,sha256=
|
|
361
|
+
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=rWaqpaumZW9xZfMZBwgxMeHQFmwgFuq3tiecC2EVCxk,16699
|
|
362
|
+
rapidata/rapidata_client/rapidata_client.py,sha256=zVuXAcFdDhPDs7aiQH-H7ypDCXPGK13mFp3pBBF6Cx0,10205
|
|
362
363
|
rapidata/rapidata_client/referee/__init__.py,sha256=E1VODxTjoQRnxzdgMh3aRlDLouxe1nWuvozEHXD2gq4,150
|
|
363
364
|
rapidata/rapidata_client/referee/base_referee.py,sha256=bMy7cw0a-pGNbFu6u_1_Jplu0A483Ubj4oDQzh8vu8k,493
|
|
364
365
|
rapidata/rapidata_client/referee/early_stopping_referee.py,sha256=V9c2Iau40-aPM06FYW5qwpJGa-usTCiZixoCCQWkrxI,1929
|
|
365
366
|
rapidata/rapidata_client/referee/naive_referee.py,sha256=uOmrzCfpDopm6ww8u4Am5vz5qGNM7621HNJ-QIeH9wM,1164
|
|
366
367
|
rapidata/rapidata_client/selection/__init__.py,sha256=RFdVUeo2bjCL1gPIL6HXzbpOBqY9kYedkNgb2_ANNLs,321
|
|
367
368
|
rapidata/rapidata_client/selection/base_selection.py,sha256=Y3HkROPm4I4HLNiR0HuHKpvk236KkRlsoDxQATm_chY,138
|
|
368
|
-
rapidata/rapidata_client/selection/capped_selection.py,sha256=
|
|
369
|
+
rapidata/rapidata_client/selection/capped_selection.py,sha256=anopsibMYyTYFGJxhxgD9_5NPqBtB6OVwVaAiGEYovg,806
|
|
369
370
|
rapidata/rapidata_client/selection/conditional_validation_selection.py,sha256=wP7Mf3pTf-7dDxuFc79cJess3M9llreEolvBIp8F8dM,1273
|
|
370
371
|
rapidata/rapidata_client/selection/demographic_selection.py,sha256=DnMbLhzRItZ0t4Engo2fav4imG01JqAmn0SHOoPOhnQ,516
|
|
371
372
|
rapidata/rapidata_client/selection/labeling_selection.py,sha256=cqDMQEXfQGMmgIvPgGOYgIGaXflV_J7LZsGOsakLXqo,425
|
|
@@ -374,10 +375,10 @@ rapidata/rapidata_client/settings/__init__.py,sha256=DTsffohaZICEmBRpokyWAd6GNcf
|
|
|
374
375
|
rapidata/rapidata_client/settings/feature_flags.py,sha256=aKnxl1kv4cC3TaHV-xfqYlvL3ATIB2-H0VKl1rUt8jQ,4658
|
|
375
376
|
rapidata/rapidata_client/settings/settings.py,sha256=ncLvEuIYWkUnAi8J3PQoG7WoAOZn-G3WZ0LWyrwt-QM,4556
|
|
376
377
|
rapidata/rapidata_client/simple_builders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
|
-
rapidata/rapidata_client/simple_builders/simple_classification_builders.py,sha256=
|
|
378
|
-
rapidata/rapidata_client/simple_builders/simple_compare_builders.py,sha256=
|
|
379
|
-
rapidata/rapidata_client/simple_builders/simple_free_text_builders.py,sha256
|
|
380
|
-
rapidata/rapidata_client/simple_builders/simple_select_words_builders.py,sha256=
|
|
378
|
+
rapidata/rapidata_client/simple_builders/simple_classification_builders.py,sha256=fAb4hJWv9tJa822jMO0NbpNVloO7JKcKgO7c9q6LYe0,12912
|
|
379
|
+
rapidata/rapidata_client/simple_builders/simple_compare_builders.py,sha256=k6xym9jvYk8ZodyC5850Kqu1v8dj0qe0I0xEobce9S8,13114
|
|
380
|
+
rapidata/rapidata_client/simple_builders/simple_free_text_builders.py,sha256=bBDNqjPf2YyMtbHaMGYZvoARmKERovowEQpJEJhatAM,8801
|
|
381
|
+
rapidata/rapidata_client/simple_builders/simple_select_words_builders.py,sha256=Tsf1sCqalBnKQjmG5hTNqyEPXpa_GE_8JfRh5HJWm6c,9622
|
|
381
382
|
rapidata/rapidata_client/workflow/__init__.py,sha256=IAZInqi6bJcyl1k5-whfuMZcKnC-UR_whv7R5gQwhS0,287
|
|
382
383
|
rapidata/rapidata_client/workflow/base_workflow.py,sha256=iDBeklFwOIbMuJHA7t-x_cwxfygJCG0SoXLBB7R53fQ,1395
|
|
383
384
|
rapidata/rapidata_client/workflow/classify_workflow.py,sha256=NkyyBrlCDqYVQaCARR9EHYuREEtXond69kD6jbzcN3M,1713
|
|
@@ -390,7 +391,7 @@ rapidata/service/credential_manager.py,sha256=4jiJaX4hnRKoU91-WnpLytOTvSWApSa8ez
|
|
|
390
391
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
391
392
|
rapidata/service/openapi_service.py,sha256=Q1_anQhDFOfgucLJkNyTnqdX9qdJQUQlYIktbe-dOZM,2581
|
|
392
393
|
rapidata/service/token_manager.py,sha256=JZ5YbR5Di8dO3H4kK11d0kzWlrXxjgCmeNkHA4AapCM,6425
|
|
393
|
-
rapidata-1.
|
|
394
|
-
rapidata-1.
|
|
395
|
-
rapidata-1.
|
|
396
|
-
rapidata-1.
|
|
394
|
+
rapidata-1.10.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
395
|
+
rapidata-1.10.1.dist-info/METADATA,sha256=2jZawlTP7FvIsBn7RVYd8a2hdFg2Tucsxqa3KRRok38,1034
|
|
396
|
+
rapidata-1.10.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
397
|
+
rapidata-1.10.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|