rapidata 2.16.0__py3-none-any.whl → 2.17.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.

Files changed (36) hide show
  1. rapidata/__init__.py +1 -0
  2. rapidata/api_client/api/client_api.py +6 -6
  3. rapidata/api_client/api/dataset_api.py +6 -6
  4. rapidata/api_client/api/identity_api.py +12 -12
  5. rapidata/api_client/api/order_api.py +24 -24
  6. rapidata/api_client/api/pipeline_api.py +6 -6
  7. rapidata/api_client/api/workflow_api.py +6 -6
  8. rapidata/api_client/models/add_campaign_model.py +1 -1
  9. rapidata/api_client/models/compare_workflow_config_model.py +1 -1
  10. rapidata/api_client/models/compare_workflow_model.py +1 -1
  11. rapidata/api_client/models/create_datapoint_from_files_model.py +1 -1
  12. rapidata/api_client/models/create_datapoint_from_text_sources_model.py +1 -1
  13. rapidata/api_client/models/create_datapoint_from_urls_model.py +2 -2
  14. rapidata/api_client/models/create_order_model.py +1 -1
  15. rapidata/api_client/models/early_stopping_referee_model.py +1 -1
  16. rapidata/api_client/models/elo_config_model.py +2 -2
  17. rapidata/api_client/models/evaluation_workflow_model.py +2 -2
  18. rapidata/api_client/models/online_pair_maker_config_model.py +1 -1
  19. rapidata/api_client/models/simple_workflow_config_model.py +1 -1
  20. rapidata/api_client/models/simple_workflow_config_model_blueprint.py +1 -1
  21. rapidata/api_client/models/simple_workflow_model.py +1 -1
  22. rapidata/api_client/models/simple_workflow_model_blueprint.py +1 -1
  23. rapidata/api_client/models/update_campaign_model.py +1 -1
  24. rapidata/api_client/models/upload_text_sources_to_dataset_model.py +1 -1
  25. rapidata/api_client_README.md +6 -6
  26. rapidata/rapidata_client/__init__.py +1 -0
  27. rapidata/rapidata_client/selection/__init__.py +1 -0
  28. rapidata/rapidata_client/selection/ab_test_selection.py +1 -1
  29. rapidata/rapidata_client/selection/rapidata_selections.py +4 -1
  30. rapidata/rapidata_client/selection/shuffling_selection.py +36 -0
  31. rapidata/rapidata_client/validation/rapidata_validation_set.py +2 -2
  32. rapidata/rapidata_client/validation/validation_set_manager.py +17 -15
  33. {rapidata-2.16.0.dist-info → rapidata-2.17.1.dist-info}/METADATA +1 -1
  34. {rapidata-2.16.0.dist-info → rapidata-2.17.1.dist-info}/RECORD +36 -35
  35. {rapidata-2.16.0.dist-info → rapidata-2.17.1.dist-info}/LICENSE +0 -0
  36. {rapidata-2.16.0.dist-info → rapidata-2.17.1.dist-info}/WHEEL +0 -0
@@ -24,7 +24,7 @@ from typing_extensions import Self
24
24
 
25
25
  class EarlyStoppingRefereeModel(BaseModel):
26
26
  """
27
- The Early Stopping Referee can currently only be used for classification tasks and will stop once a certain threshold is reached or the maximum number of votes is collected.
27
+ The Early Stopping Referee can currently only be used for classification tasks and will stop once a certain threshold is reached or the maximum number of votes is collected.
28
28
  """ # noqa: E501
29
29
  t: StrictStr = Field(description="Discriminator value for EarlyStoppingReferee", alias="_t")
30
30
  max_votes: StrictInt = Field(description="The upper limit of votes that will be collected for each task.", alias="maxVotes")
@@ -27,8 +27,8 @@ class EloConfigModel(BaseModel):
27
27
  These parameters affect how the ELO algorithms behaves
28
28
  """ # noqa: E501
29
29
  starting_elo: Optional[StrictInt] = Field(default=None, description="The starting ELO score for each datapoint.", alias="startingElo")
30
- k_factor: Optional[StrictInt] = Field(default=None, description="The K-factor to use in the ELO calculation. Determines the maximum possible change in a player's Elo rating after a single match. Higher K-Factor values result in larger rating changes.", alias="kFactor")
31
- scaling_factor: Optional[StrictInt] = Field(default=None, description="Scaling factor to use in the ELO calculation. Adjusts the sensitivity of the Elo rating system to differences in player ratings. It affects how much the rating changes based on the expected outcome versus the actual outcome.", alias="scalingFactor")
30
+ k_factor: Optional[StrictInt] = Field(default=None, description="The K-factor to use in the ELO calculation. Determines the maximum possible change in a player's Elo rating after a single match. Higher K-Factor values result in larger rating changes.", alias="kFactor")
31
+ scaling_factor: Optional[StrictInt] = Field(default=None, description="Scaling factor to use in the ELO calculation. Adjusts the sensitivity of the Elo rating system to differences in player ratings. It affects how much the rating changes based on the expected outcome versus the actual outcome.", alias="scalingFactor")
32
32
  __properties: ClassVar[List[str]] = ["startingElo", "kFactor", "scalingFactor"]
33
33
 
34
34
  model_config = ConfigDict(
@@ -24,11 +24,11 @@ from typing_extensions import Self
24
24
 
25
25
  class EvaluationWorkflowModel(BaseModel):
26
26
  """
27
- If the EvaluationWorkflow is chosen a validation set will be used as a source for all tasks. It functions similarly to the SimpleWorkflow as there is a 1:1 mapping between validation rapids and tasks.
27
+ If the EvaluationWorkflow is chosen a validation set will be used as a source for all tasks. It functions similarly to the SimpleWorkflow as there is a 1:1 mapping between validation rapids and tasks.
28
28
  """ # noqa: E501
29
29
  t: StrictStr = Field(description="Discriminator value for EvaluationWorkflow", alias="_t")
30
30
  validation_set_id: StrictStr = Field(description="The Validation Set id is used to as a source for the tasks that will be sent to the user.", alias="validationSetId")
31
- should_accept_incorrect: StrictBool = Field(description="Indicates if the user should get feedback on their answers if they answer wrong. If set to true the user will not notice that he was tested.", alias="shouldAcceptIncorrect")
31
+ should_accept_incorrect: StrictBool = Field(description="Indicates if the user should get feedback on their answers if they answer wrong. If set to true the user will not notice that he was tested.", alias="shouldAcceptIncorrect")
32
32
  __properties: ClassVar[List[str]] = ["_t", "validationSetId", "shouldAcceptIncorrect"]
33
33
 
34
34
  @field_validator('t')
@@ -24,7 +24,7 @@ from typing_extensions import Self
24
24
 
25
25
  class OnlinePairMakerConfigModel(BaseModel):
26
26
  """
27
- The OnlinePairMaker creates random pairs in the beginning and then continues to create pairs that are close in ranking.
27
+ The OnlinePairMaker creates random pairs in the beginning and then continues to create pairs that are close in ranking.
28
28
  """ # noqa: E501
29
29
  t: StrictStr = Field(description="Discriminator value for OnlinePairMaker", alias="_t")
30
30
  random_matches_ratio: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The ratio of random matches for the algorithm to burn-in.", alias="randomMatchesRatio")
@@ -26,7 +26,7 @@ from typing_extensions import Self
26
26
 
27
27
  class SimpleWorkflowConfigModel(BaseModel):
28
28
  """
29
- The configuration for a simple workflow. A simple workflow creates a rapid for each datapoint in its dataset. It is considered complete when all rapids have been completed.
29
+ The configuration for a simple workflow. A simple workflow creates a rapid for each datapoint in its dataset. It is considered complete when all rapids have been completed.
30
30
  """ # noqa: E501
31
31
  t: StrictStr = Field(description="Discriminator value for SimpleWorkflowConfig", alias="_t")
32
32
  referee: CompareWorkflowModel1Referee
@@ -35,7 +35,7 @@ SIMPLEWORKFLOWCONFIGMODELBLUEPRINT_ONE_OF_SCHEMAS = ["AttachCategoryRapidBluepri
35
35
 
36
36
  class SimpleWorkflowConfigModelBlueprint(BaseModel):
37
37
  """
38
- The blueprint to use when creating rapids for this workflow. The blueprint determines what kind of rapids will be created and what data they will contain.
38
+ The blueprint to use when creating rapids for this workflow. The blueprint determines what kind of rapids will be created and what data they will contain.
39
39
  """
40
40
  # data type: TranscriptionRapidBlueprint
41
41
  oneof_schema_1_validator: Optional[TranscriptionRapidBlueprint] = None
@@ -25,7 +25,7 @@ from typing_extensions import Self
25
25
 
26
26
  class SimpleWorkflowModel(BaseModel):
27
27
  """
28
- If the SimpleWorkflow is chosen, each datapoint uploaded will correspond to a single task to be solved. This is the most commonly chosen workflow.
28
+ If the SimpleWorkflow is chosen, each datapoint uploaded will correspond to a single task to be solved. This is the most commonly chosen workflow.
29
29
  """ # noqa: E501
30
30
  t: StrictStr = Field(description="Discriminator value for SimpleWorkflow", alias="_t")
31
31
  blueprint: SimpleWorkflowModelBlueprint
@@ -35,7 +35,7 @@ SIMPLEWORKFLOWMODELBLUEPRINT_ONE_OF_SCHEMAS = ["AttachCategoryRapidBlueprint", "
35
35
 
36
36
  class SimpleWorkflowModelBlueprint(BaseModel):
37
37
  """
38
- The blueprint is used to create the tasks that will be shown to the users. They contain the common information across all tasks. For example, the tasks question.
38
+ The blueprint is used to create the tasks that will be shown to the users. They contain the common information across all tasks. For example, the tasks question.
39
39
  """
40
40
  # data type: TranscriptionRapidBlueprint
41
41
  oneof_schema_1_validator: Optional[TranscriptionRapidBlueprint] = None
@@ -26,7 +26,7 @@ class UpdateCampaignModel(BaseModel):
26
26
  """
27
27
  The model containing the new configuration for a campaign.
28
28
  """ # noqa: E501
29
- priority: Optional[StrictInt] = Field(default=None, description="A value above 0 indicating how much the campaign should be prioritized. The higher the value the more weight it will be given during campaign selection.")
29
+ priority: Optional[StrictInt] = Field(default=None, description="A value above 0 indicating how much the campaign should be prioritized. The higher the value the more weight it will be given during campaign selection.")
30
30
  feature_flags: Optional[Dict[str, StrictStr]] = Field(default=None, description="The feature flags to assign this campaign.", alias="featureFlags")
31
31
  __properties: ClassVar[List[str]] = ["priority", "featureFlags"]
32
32
 
@@ -30,7 +30,7 @@ class UploadTextSourcesToDatasetModel(BaseModel):
30
30
  dataset_id: StrictStr = Field(description="The id of the dataset to upload the text sources to.", alias="datasetId")
31
31
  text_sources: List[StrictStr] = Field(description="The text sources to upload.", alias="textSources")
32
32
  sort_index: Optional[StrictInt] = Field(default=None, description="The index will be used to keep the datapoints in order. Useful if upload is parallelized", alias="sortIndex")
33
- metadata: Optional[List[CreateDatapointFromFilesModelMetadataInner]] = Field(default=None, description="Additional metadata to attach to the datapoint. Most commonly used to add a prompt to the datapoint using the Rapidata.Shared.Assets.Abstraction.Models.Metadata.Input.PromptMetadataInput.")
33
+ metadata: Optional[List[CreateDatapointFromFilesModelMetadataInner]] = Field(default=None, description="Additional metadata to attach to the datapoint. Most commonly used to add a prompt to the datapoint using the Rapidata.Shared.Assets.Abstraction.Models.Metadata.Input.PromptMetadataInput.")
34
34
  __properties: ClassVar[List[str]] = ["datasetId", "textSources", "sortIndex", "metadata"]
35
35
 
36
36
  model_config = ConfigDict(
@@ -111,10 +111,10 @@ Class | Method | HTTP request | Description
111
111
  *DatasetApi* | [**dataset_updatename_post**](rapidata/api_client/docs/DatasetApi.md#dataset_updatename_post) | **POST** /dataset/updatename | Updates the name of a dataset.
112
112
  *DatasetApi* | [**dataset_uploadfilesfroms3_post**](rapidata/api_client/docs/DatasetApi.md#dataset_uploadfilesfroms3_post) | **POST** /dataset/uploadfilesfroms3 | Uploads files from an S3 bucket to a dataset.
113
113
  *FeedbackApi* | [**feedback_feedback_post**](rapidata/api_client/docs/FeedbackApi.md#feedback_feedback_post) | **POST** /feedback/feedback | Submits feedback about our services.
114
- *IdentityApi* | [**identity_bridge_token_get**](rapidata/api_client/docs/IdentityApi.md#identity_bridge_token_get) | **GET** /identity/bridge-token | Tries to read the bridge token keys for a given read key. The read key is used to retrieve the authentication result written by the write key.
115
- *IdentityApi* | [**identity_bridge_token_post**](rapidata/api_client/docs/IdentityApi.md#identity_bridge_token_post) | **POST** /identity/bridge-token | Creates a pair of read and write keys for a client. The write key is used to store the authentication result. The read key is used to retrieve the authentication result.
116
- *IdentityApi* | [**identity_createbridgetoken_post**](rapidata/api_client/docs/IdentityApi.md#identity_createbridgetoken_post) | **POST** /identity/createbridgetoken | Creates a pair of read and write keys for a client. The write key is used to store the authentication result. The read key is used to retrieve the authentication result.
117
- *IdentityApi* | [**identity_readbridgetoken_get**](rapidata/api_client/docs/IdentityApi.md#identity_readbridgetoken_get) | **GET** /identity/readbridgetoken | Tries to read the bridge token keys for a given read key. The read key is used to retrieve the authentication result written by the write key.
114
+ *IdentityApi* | [**identity_bridge_token_get**](rapidata/api_client/docs/IdentityApi.md#identity_bridge_token_get) | **GET** /identity/bridge-token | Tries to read the bridge token keys for a given read key. The read key is used to retrieve the authentication result written by the write key.
115
+ *IdentityApi* | [**identity_bridge_token_post**](rapidata/api_client/docs/IdentityApi.md#identity_bridge_token_post) | **POST** /identity/bridge-token | Creates a pair of read and write keys for a client. The write key is used to store the authentication result. The read key is used to retrieve the authentication result.
116
+ *IdentityApi* | [**identity_createbridgetoken_post**](rapidata/api_client/docs/IdentityApi.md#identity_createbridgetoken_post) | **POST** /identity/createbridgetoken | Creates a pair of read and write keys for a client. The write key is used to store the authentication result. The read key is used to retrieve the authentication result.
117
+ *IdentityApi* | [**identity_readbridgetoken_get**](rapidata/api_client/docs/IdentityApi.md#identity_readbridgetoken_get) | **GET** /identity/readbridgetoken | Tries to read the bridge token keys for a given read key. The read key is used to retrieve the authentication result written by the write key.
118
118
  *IdentityApi* | [**identity_referrer_post**](rapidata/api_client/docs/IdentityApi.md#identity_referrer_post) | **POST** /identity/referrer | Sets the referrer for the current customer.
119
119
  *IdentityApi* | [**identity_registertemporary_post**](rapidata/api_client/docs/IdentityApi.md#identity_registertemporary_post) | **POST** /identity/registertemporary | Registers and logs in a temporary customer.
120
120
  *IdentityApi* | [**identity_temporary_post**](rapidata/api_client/docs/IdentityApi.md#identity_temporary_post) | **POST** /identity/temporary | Registers and logs in a temporary customer.
@@ -209,10 +209,10 @@ Class | Method | HTTP request | Description
209
209
  *WorkflowApi* | [**workflow_getbyid_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_getbyid_get) | **GET** /workflow/getbyid | Get a workflow by its ID.
210
210
  *WorkflowApi* | [**workflow_getprogress_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_getprogress_get) | **GET** /workflow/getprogress | Get the progress of a workflow.
211
211
  *WorkflowApi* | [**workflow_query_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_query_get) | **GET** /workflow/query | Queries workflows based on the provided filter, page, and sort criteria.
212
- *WorkflowApi* | [**workflow_workflow_id_compare_ab_summary_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_compare_ab_summary_get) | **GET** /workflow/{workflowId}/compare-ab-summary | Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
212
+ *WorkflowApi* | [**workflow_workflow_id_compare_ab_summary_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_compare_ab_summary_get) | **GET** /workflow/{workflowId}/compare-ab-summary | Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
213
213
  *WorkflowApi* | [**workflow_workflow_id_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_get) | **GET** /workflow/{workflowId} | Get a workflow by its ID.
214
214
  *WorkflowApi* | [**workflow_workflow_id_progress_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_progress_get) | **GET** /workflow/{workflowId}/progress | Get the progress of a workflow.
215
- *WorkflowApi* | [**workflow_workflow_id_responses_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_responses_get) | **GET** /workflow/{workflowId}/responses | Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
215
+ *WorkflowApi* | [**workflow_workflow_id_responses_get**](rapidata/api_client/docs/WorkflowApi.md#workflow_workflow_id_responses_get) | **GET** /workflow/{workflowId}/responses | Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
216
216
  *WorkflowApi* | [**workflows_get**](rapidata/api_client/docs/WorkflowApi.md#workflows_get) | **GET** /workflows | Queries workflows based on the provided filter, page, and sort criteria.
217
217
 
218
218
 
@@ -5,6 +5,7 @@ from .selection import (
5
5
  ValidationSelection,
6
6
  ConditionalValidationSelection,
7
7
  CappedSelection,
8
+ ShufflingSelection,
8
9
  )
9
10
  from .metadata import (
10
11
  PrivateTextMetadata,
@@ -4,3 +4,4 @@ from .labeling_selection import LabelingSelection
4
4
  from .validation_selection import ValidationSelection
5
5
  from .conditional_validation_selection import ConditionalValidationSelection
6
6
  from .capped_selection import CappedSelection
7
+ from .shuffling_selection import ShufflingSelection
@@ -20,7 +20,7 @@ class AbTestSelection(RapidataSelection):
20
20
  b_selections (Sequence[RapidataSelection]): List of selections for group B.
21
21
  """
22
22
 
23
- def __init__(self, a_selections: Sequence[RapidataSelection], b_selections: Sequence[RapidataSelection], max_rapids: int):
23
+ def __init__(self, a_selections: Sequence[RapidataSelection], b_selections: Sequence[RapidataSelection]):
24
24
  self.a_selections = a_selections
25
25
  self.b_selections = b_selections
26
26
 
@@ -3,7 +3,8 @@ from rapidata.rapidata_client.selection import (
3
3
  LabelingSelection,
4
4
  ValidationSelection,
5
5
  ConditionalValidationSelection,
6
- CappedSelection)
6
+ CappedSelection,
7
+ ShufflingSelection)
7
8
 
8
9
  class RapidataSelections:
9
10
  """RapidataSelections Classes
@@ -17,6 +18,7 @@ class RapidataSelections:
17
18
  conditional_validation (ConditionalValidationSelection): The ConditionalValidationSelection instance.
18
19
  demographic (DemographicSelection): The DemographicSelection instance.
19
20
  capped (CappedSelection): The CappedSelection instance.
21
+ shuffling (ShufflingSelection): The ShufflingSelection instance.
20
22
 
21
23
  Example:
22
24
  ```python
@@ -32,3 +34,4 @@ class RapidataSelections:
32
34
  conditional_validation = ConditionalValidationSelection
33
35
  demographic = DemographicSelection
34
36
  capped = CappedSelection
37
+ shuffling = ShufflingSelection
@@ -0,0 +1,36 @@
1
+
2
+ from rapidata.api_client.models.ab_test_selection_a_inner import AbTestSelectionAInner
3
+ from rapidata.api_client.models.shuffling_selection import ShufflingSelection as ShufflingSelectionModel
4
+ from rapidata.rapidata_client.selection._base_selection import RapidataSelection
5
+
6
+ from typing import Sequence
7
+
8
+
9
+ class ShufflingSelection(RapidataSelection):
10
+ """ShufflingSelection Class
11
+
12
+ Shuffles the selections provided in the list.
13
+
14
+ Args:
15
+ selections (Sequence[RapidataSelection]): List of selections to shuffle.
16
+
17
+ Example:
18
+ ```python
19
+ selection = ShufflingSelection(
20
+ [ValidSelections("validation_id", 1), LabelingSelection(2)])
21
+ ```
22
+ This means that the users will get 1 validation task and 2 labeling tasks in a shuffled order.
23
+ """
24
+
25
+ def __init__(self, selections: Sequence[RapidataSelection]):
26
+ self.selections = selections
27
+
28
+ def _to_model(self) -> ShufflingSelectionModel:
29
+ return ShufflingSelectionModel(
30
+ _t="ShufflingSelection",
31
+ selections=[
32
+ AbTestSelectionAInner(selection._to_model())
33
+ for selection in self.selections
34
+ ]
35
+ )
36
+
@@ -31,13 +31,13 @@ class RapidataValidationSet:
31
31
  rapid._add_to_validation_set(self.id, self.__openapi_service, self.__session)
32
32
  return self
33
33
 
34
- def update_dimensions(self, dimensions: list[str] | None):
34
+ def update_dimensions(self, dimensions: list[str]):
35
35
  """Update the dimensions of the validation set.
36
36
 
37
37
  Args:
38
38
  dimensions (list[str]): The new dimensions of the validation set.
39
39
  """
40
- self.__openapi_service.validation_api.validation_validation_set_id_dimensions_patch(self.id, UpdateDimensionsModel(dimensions=dimensions) if dimensions else None)
40
+ self.__openapi_service.validation_api.validation_validation_set_id_dimensions_patch(self.id, UpdateDimensionsModel(dimensions=dimensions))
41
41
  return self
42
42
 
43
43
  def _get_session(self, max_retries: int = 5, max_workers: int = 10) -> requests.Session:
@@ -39,7 +39,7 @@ class ValidationSetManager:
39
39
  data_type: str = RapidataDataTypes.MEDIA,
40
40
  contexts: list[str] | None = None,
41
41
  explanations: list[str | None] | None = None,
42
- dimensions: list[str] | None = None,
42
+ dimensions: list[str] = [],
43
43
  print_confirmation: bool = True,
44
44
  ) -> RapidataValidationSet:
45
45
  """Create a classification validation set.
@@ -59,7 +59,7 @@ class ValidationSetManager:
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.
61
61
  explanations (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
62
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
62
+ 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.
63
63
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
64
64
 
65
65
  Example:
@@ -107,7 +107,7 @@ class ValidationSetManager:
107
107
  data_type: str = RapidataDataTypes.MEDIA,
108
108
  contexts: list[str] | None = None,
109
109
  explanation: list[str | None] | None = None,
110
- dimensions: list[str] | None = None,
110
+ dimensions: list[str] = [],
111
111
  print_confirmation: bool = True,
112
112
  ) -> RapidataValidationSet:
113
113
  """Create a comparison validation set.
@@ -127,7 +127,7 @@ class ValidationSetManager:
127
127
  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)
128
128
  Will be match up with the datapoints using the list index.
129
129
  explanation (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
130
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
130
+ 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.
131
131
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
132
132
 
133
133
  Example:
@@ -175,7 +175,7 @@ class ValidationSetManager:
175
175
  required_precision: float = 1.0,
176
176
  required_completeness: float = 1.0,
177
177
  explanation: list[str | None] | None = None,
178
- dimensions: list[str] | None = None,
178
+ dimensions: list[str] = [],
179
179
  print_confirmation: bool = True,
180
180
  ) -> RapidataValidationSet:
181
181
  """Create a select words validation set.
@@ -194,7 +194,7 @@ class ValidationSetManager:
194
194
  required_precision (float, optional): The required precision for the labeler to get the rapid correct (minimum ratio of the words selected that need to be correct). Defaults to 1.0 (no wrong word can be selected).
195
195
  required_completeness (float, optional): The required completeness for the labeler to get the rapid correct (miminum ratio of total correct words selected). Defaults to 1.0 (all correct words need to be selected).
196
196
  explanation (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
197
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
197
+ 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.
198
198
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
199
199
 
200
200
  Example:
@@ -238,7 +238,7 @@ class ValidationSetManager:
238
238
  datapoints: list[str],
239
239
  contexts: list[str] | None = None,
240
240
  explanation: list[str | None] | None = None,
241
- dimensions: list[str] | None = None,
241
+ dimensions: list[str] = [],
242
242
  print_confirmation: bool = True,
243
243
  ) -> RapidataValidationSet:
244
244
  """Create a locate validation set.
@@ -253,7 +253,7 @@ class ValidationSetManager:
253
253
  datapoints (list[str]): The datapoints that will be used for validation.
254
254
  contexts (list[str], optional): The contexts for each datapoint. Defaults to None.
255
255
  explanation (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
256
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
256
+ 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.
257
257
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
258
258
 
259
259
  Example:
@@ -299,7 +299,7 @@ class ValidationSetManager:
299
299
  datapoints: list[str],
300
300
  contexts: list[str] | None = None,
301
301
  explanation: list[str | None] | None = None,
302
- dimensions: list[str] | None = None,
302
+ dimensions: list[str] = [],
303
303
  print_confirmation: bool = True,
304
304
  ) -> RapidataValidationSet:
305
305
  """Create a draw validation set.
@@ -314,7 +314,7 @@ class ValidationSetManager:
314
314
  datapoints (list[str]): The datapoints that will be used for validation.
315
315
  contexts (list[str], optional): The contexts for each datapoint. Defaults to None.
316
316
  explanation (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
317
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
317
+ 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.
318
318
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
319
319
 
320
320
  Example:
@@ -359,7 +359,7 @@ class ValidationSetManager:
359
359
  datapoints: list[str],
360
360
  contexts: list[str] | None = None,
361
361
  explanation: list[str | None] | None = None,
362
- dimensions: list[str] | None = None,
362
+ dimensions: list[str] = [],
363
363
  print_confirmation: bool = True,
364
364
  ) -> RapidataValidationSet:
365
365
  """Create a timestamp validation set.
@@ -375,7 +375,7 @@ class ValidationSetManager:
375
375
  datapoints (list[str]): The datapoints that will be used for validation.
376
376
  contexts (list[str], optional): The contexts for each datapoint. Defaults to None.
377
377
  explanation (list[str | None], optional): The explanations for each datapoint. Will be given to the annotators in case the answer is wrong. Defaults to None.
378
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
378
+ 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.
379
379
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
380
380
 
381
381
  Example:
@@ -416,7 +416,7 @@ class ValidationSetManager:
416
416
  def create_mixed_set(self,
417
417
  name: str,
418
418
  rapids: list[Rapid],
419
- dimensions: list[str] | None = None,
419
+ dimensions: list[str] = [],
420
420
  print_confirmation: bool = True
421
421
  ) -> RapidataValidationSet:
422
422
  """Create a validation set with a list of rapids.
@@ -424,7 +424,7 @@ class ValidationSetManager:
424
424
  Args:
425
425
  name (str): The name of the validation set. (will not be shown to the labeler)
426
426
  rapids (list[Rapid]): The list of rapids to add to the validation set.
427
- dimensions (list[str] | None, optional): The dimensions of the validation set. If not provided will be set to the default dimensions.
427
+ 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.
428
428
  print_confirmation (bool, optional): Whether to print a confirmation message that validation set has been created. Defaults to True.
429
429
  """
430
430
 
@@ -471,7 +471,9 @@ class ValidationSetManager:
471
471
  f"Now viewable under: https://app.{self.__openapi_service.enviroment}/validation-set/detail/{validation_set_id}",
472
472
  sep="")
473
473
 
474
- validation_set.update_dimensions(dimensions)
474
+ if dimensions:
475
+ validation_set.update_dimensions(dimensions)
476
+
475
477
  return validation_set
476
478
 
477
479
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rapidata
3
- Version: 2.16.0
3
+ Version: 2.17.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,24 +1,24 @@
1
- rapidata/__init__.py,sha256=8tov2fxRG_tIgSUjJ3HCMXxoc28sIKqHsLVpRp2rfWg,602
1
+ rapidata/__init__.py,sha256=6em4FQqmF6LMIlTElMP91xahUwPKi4nbErtoO7ecEKo,626
2
2
  rapidata/api_client/__init__.py,sha256=F2L8sRZIq9q_r6oSFMCdsoHpXI6PP2YYm8VgKNNMm_U,26279
3
3
  rapidata/api_client/api/__init__.py,sha256=z_KCn1Nw9RrVXzdC2RCpoEk7_vU19JT261Opw04RqNI,1129
4
4
  rapidata/api_client/api/campaign_api.py,sha256=1ajX0hSnA4O5GacJLIGkAgorPlNDRVaEZY029Pkutl4,71353
5
- rapidata/api_client/api/client_api.py,sha256=nMNGBHKWeWcp7bivfo3cgA1Dkbl8dj9FbYqOx__rqk8,53369
5
+ rapidata/api_client/api/client_api.py,sha256=qGiNJHQarNEFNmkrgWeHmlVX96WuDZINozhYaNfiy3c,53357
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/datapoint_api.py,sha256=TF0pUq98imO4hxDbxuNu86HmgRQnC-m4YI2oNY8tOdo,52596
9
- rapidata/api_client/api/dataset_api.py,sha256=fYsupTEHp2GbBFi1PfiPan7r473YlLok6upsXaGxxNw,187078
9
+ rapidata/api_client/api/dataset_api.py,sha256=M-FwzuKrBu-dcZEK0FfcvAGd-lk4DLipntkLsRPwXLI,187066
10
10
  rapidata/api_client/api/feedback_api.py,sha256=9ecA2GTvEMkCugXm6McGWbK2bT9gSOb8C-LT8syZ3s0,11661
11
- rapidata/api_client/api/identity_api.py,sha256=n_Km_Xr3PCiNsIPRxxHyVKAmMgJLXHJpfgm6aKwqOc8,78135
11
+ rapidata/api_client/api/identity_api.py,sha256=glClYKwEPyGUDY_SWef-8FGjbbui_RIpOeBhwfzTxAk,78117
12
12
  rapidata/api_client/api/newsletter_api.py,sha256=pdJ7Gdxw7yKZromzGNhM1hRhzrqm4nDRib5xVvnClME,34230
13
- rapidata/api_client/api/order_api.py,sha256=dc5tjaMVQi7bYsCHAFvWKakrNScvUuX96vC--Eup_u4,413446
14
- rapidata/api_client/api/pipeline_api.py,sha256=Gl4jAaYycsvWSOiDzsjjB4qBPhHF3E_9N43skKG8Ivk,86643
13
+ rapidata/api_client/api/order_api.py,sha256=FxrDFCcnSwN3HAO0Oz1yCkqCz0cE839pvA7aUnokuqk,413404
14
+ rapidata/api_client/api/pipeline_api.py,sha256=PUFIw9CR3KftJBVZ_udd8AKLvEtWKvMz93c36wo9v8k,86637
15
15
  rapidata/api_client/api/rapid_api.py,sha256=wsUdeuL0JOyRoGwZ6bxUli3ik8aZV9vloD6fIjUAJsw,173070
16
16
  rapidata/api_client/api/rapidata_identity_api_api.py,sha256=-kgoDuLdh-R4MQ7JPi3kQ0WDFKbmI0MkCjxwHXBmksA,9824
17
17
  rapidata/api_client/api/simple_workflow_api.py,sha256=676u_J6hIL5u1V0jLuSEkkvHwBQBcpHGSfyd0147x-0,12806
18
18
  rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
19
19
  rapidata/api_client/api/validation_api.py,sha256=XET31snfRc78TJre3jGOlb0bAs8wr82qhRiURiitUaE,98706
20
20
  rapidata/api_client/api/validation_set_api.py,sha256=TxFR2cSJ5NXUJ5ZkLfB7XuszvYbYoRQ7NRUyoCz20PY,213794
21
- rapidata/api_client/api/workflow_api.py,sha256=iwsxc8Gx1qlj4YW4-629UsSkmL4BpPgoS8qz3IdLAZg,98907
21
+ rapidata/api_client/api/workflow_api.py,sha256=a4LSlqk4X08YEKm4pS7wQeK1tK3JPKJ2xW0ye252r7A,98898
22
22
  rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
23
23
  rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
24
24
  rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
@@ -27,7 +27,7 @@ rapidata/api_client/models/__init__.py,sha256=ywsStsEMzTBpHoaCrkz5PgJee9uma-aN1c
27
27
  rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
28
28
  rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=2sM9nimGo85Fk1k7yZQnp-3ncMXcz_wvYBCR8NG1Sb8,10771
29
29
  rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
30
- rapidata/api_client/models/add_campaign_model.py,sha256=Sja8qnmZ_DOqWqGTPnYNSbkkQ5zuLWlCFexNhe-iInw,7479
30
+ rapidata/api_client/models/add_campaign_model.py,sha256=HRFP1EGEzroTC2xzwvJoTaGiAlYUcprUlFkjxmxpOas,7478
31
31
  rapidata/api_client/models/add_campaign_model_user_filters_inner.py,sha256=i7R_ToWdsfkOZechTm_-KE01kucRGvsJ_tVIJWqkGgw,11152
32
32
  rapidata/api_client/models/add_user_response_result.py,sha256=bJe6-xga6kGS1RtDQVa-2iwqZtmbZ6dYFda0oX6nhug,4040
33
33
  rapidata/api_client/models/add_user_response_result_validation_truth.py,sha256=1_BKJKBayJ2h3HspPoMwbCrtG_zzMIy8y_b4RC8r6oM,11916
@@ -76,13 +76,13 @@ rapidata/api_client/models/compare_result.py,sha256=fYjZceOWQH9eVUW_Du5G0mLj94gx
76
76
  rapidata/api_client/models/compare_truth.py,sha256=1aVg80bn_0Q_ZnuA0uaoQ9wmiQ4GhaGaGQrx4povU0s,2955
77
77
  rapidata/api_client/models/compare_workflow_config.py,sha256=Rv94nLBSIdVxMtY2Fz1gmtsK0OF7bz4_BPY2zvH7-U8,5476
78
78
  rapidata/api_client/models/compare_workflow_config_metadata_value.py,sha256=ZJ113eW0xUSn-z1bC-_zVYyh7R9L8hZ-HGvqpIJydW8,11512
79
- rapidata/api_client/models/compare_workflow_config_model.py,sha256=GkK_q6uUSpBoc0gHLQ5EWKlcksM1hFSC-0LLA7ZZ8Gs,6139
79
+ rapidata/api_client/models/compare_workflow_config_model.py,sha256=k3R29s5rc3EceULNlDX_TI-z29JjRnqr_j8Bro_YSrE,6135
80
80
  rapidata/api_client/models/compare_workflow_config_model_pair_maker_config.py,sha256=Abxt8p19L3Fz5alg26BHDmukC-mNt-QnvojqGfIAJ8M,4987
81
81
  rapidata/api_client/models/compare_workflow_config_pair_maker_config.py,sha256=D_gLJA_T08erqik4AdM5TzXctdLX3ckHcSQuz_QN_YA,4923
82
82
  rapidata/api_client/models/compare_workflow_config_rapid_selection_configs_inner.py,sha256=k8zuwt4GC3j0oLD6MAy39BhGf_AhyK-uPpL9PaDz3Oc,11919
83
83
  rapidata/api_client/models/compare_workflow_config_referee.py,sha256=L0o57EoYVGhtP6DqDjuG3gFVc62U8cWKIlnqdhQf27Q,6956
84
84
  rapidata/api_client/models/compare_workflow_get_result_overview_get200_response.py,sha256=G7L7oRJw0koqFCcsm8a7br-Dh3fYT8QTiZ77KYlNtRs,6497
85
- rapidata/api_client/models/compare_workflow_model.py,sha256=0aWSjglQgPWWwayzmPxD_I2tkhFrGt353PQm2xl7DA0,5336
85
+ rapidata/api_client/models/compare_workflow_model.py,sha256=2E3K3HGzYXpHwFk-8M7odpbQnUu29fFUKy9thwAYae8,5335
86
86
  rapidata/api_client/models/compare_workflow_model1.py,sha256=ZRZuZGtB3PHb0LY4u_Gb6l4wBrl67M9k5DzxcU5QVQg,5426
87
87
  rapidata/api_client/models/compare_workflow_model1_pair_maker_information.py,sha256=zWpfdMZHt9Ktp2Bm7H4R1DLHi5kwoJUtevyol1F5jCc,5048
88
88
  rapidata/api_client/models/compare_workflow_model1_referee.py,sha256=opTltLO2arZUUhQSiLOea6_aRT35fLDCnTyPE3GgnJc,6956
@@ -103,10 +103,10 @@ rapidata/api_client/models/create_client_result.py,sha256=OHBnTMyW5Nno39JHoJkcQb
103
103
  rapidata/api_client/models/create_complex_order_model.py,sha256=46n1IJRAIyCYCGXKvF5LjMVf4pXILC-kP86oU6YKo1w,3337
104
104
  rapidata/api_client/models/create_complex_order_model_pipeline.py,sha256=yF_-tOciVlAiDlWb1bptnoEFGlQis68WEI_EeviEFk8,4939
105
105
  rapidata/api_client/models/create_complex_order_result.py,sha256=UW57ewUKFPZcx8lRjaICdYZWVPS7Yzr6eqK3-i-tf4s,3300
106
- rapidata/api_client/models/create_datapoint_from_files_model.py,sha256=Cokia94niiA1CNlpooAacIaP3rta4snH_JXG5aJWztM,3793
106
+ rapidata/api_client/models/create_datapoint_from_files_model.py,sha256=Mly7BuAq0Lg249oNNxQiCf3cQybiCEkx-FAYEEaN8Ew,3792
107
107
  rapidata/api_client/models/create_datapoint_from_files_model_metadata_inner.py,sha256=3urQLUeUpYPHPyS8I1Rq51T3sVOnfoKE3f2B5nl03-c,7766
108
- rapidata/api_client/models/create_datapoint_from_text_sources_model.py,sha256=kjYpgACjCcPsR7f80iLkHNGj_-6V1rOUyrNXJg2aYEQ,4336
109
- rapidata/api_client/models/create_datapoint_from_urls_model.py,sha256=RA_TfSChmflfnv5b_Yjnj0tK9M_tnzP799CbunCsy6w,4377
108
+ rapidata/api_client/models/create_datapoint_from_text_sources_model.py,sha256=zeOQKyw3U0X5Jjjs-y0MxcI-_XQJpP3ZmoHq3zyMSVE,4335
109
+ rapidata/api_client/models/create_datapoint_from_urls_model.py,sha256=QmBNkGiZdHB6X3vjrWNJS9hnNIwEG7mBEFJcBU15EGQ,4374
110
110
  rapidata/api_client/models/create_datapoint_from_urls_model_metadata_inner.py,sha256=nbYw6r2C0qKGDn46sY45ySe1deQ9hOXG7fRN5qc7Pq4,7758
111
111
  rapidata/api_client/models/create_datapoint_result.py,sha256=uaI0xE4pj7IKDesJRdF5gmS_faxZTaUUbVDRcnPi1h8,3303
112
112
  rapidata/api_client/models/create_datapoints_from_s3_bucket_model.py,sha256=e2UTd-uI6-QbElMjkdtEXsuBx8JZDnfTH0f7nmWVXHw,5101
@@ -121,7 +121,7 @@ rapidata/api_client/models/create_independent_workflow_model_workflow_config.py,
121
121
  rapidata/api_client/models/create_independent_workflow_result.py,sha256=JOhS75mAH-VvarvDDFsycahPlIezVKT1upuqIo93hC0,2719
122
122
  rapidata/api_client/models/create_legacy_client_model.py,sha256=8LcKnjv3Lq6w28ku6NG6nG9qfxWQnfPow53maGlwNdE,2802
123
123
  rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0UytTW6dpihAeNyfCc4C1m0XfY53hQ,2672
124
- rapidata/api_client/models/create_order_model.py,sha256=QLmxq0bY1K95fjnUtME0X3QQRma1iEF2a6kXpjrjST8,10203
124
+ rapidata/api_client/models/create_order_model.py,sha256=CkCBzqF5vWK-Rswy5MlIWpe8qZIaSnAsEVjF3zKMbn8,10202
125
125
  rapidata/api_client/models/create_order_model_referee.py,sha256=dxQ9SDiBjFIKYjctVNeiuGvjZwzIa0Q8JpW7iRei00I,5748
126
126
  rapidata/api_client/models/create_order_model_selections_inner.py,sha256=9p9BJKHN3WhRiu-FwWf421COAxeGmm1KkkyDT7UW5uc,8354
127
127
  rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=1GJXqDHshTP4EIl6LerKESmbOiDKg8SuTIa22RXXRBw,11135
@@ -150,13 +150,13 @@ rapidata/api_client/models/demographic.py,sha256=7lUHDHUHxhqdsrMFmKGuVfqTPVC86FM
150
150
  rapidata/api_client/models/demographic_metadata_model.py,sha256=zTow5DwlpJ1lOiSfiFkEO1QHfMW97A1YyDvJjYLpgCI,3726
151
151
  rapidata/api_client/models/demographic_rapid_selection_config.py,sha256=83bLP2Of1i-1kTHPpVOdV6v5w_OScsGvPMSBRKnMTII,3228
152
152
  rapidata/api_client/models/demographic_selection.py,sha256=-RIAemMmI0omKU6cVIY_a080lP7ccc5IGbn1yBGHzes,3140
153
- rapidata/api_client/models/early_stopping_referee_model.py,sha256=V_hO_gkya117PMUh8haNMJit5hENQpseozybqvoOlE0,3490
153
+ rapidata/api_client/models/early_stopping_referee_model.py,sha256=FhLrKAhvoI0OAMMEoJn0DjQo3WhTU_5fyzv8sd83kRk,3489
154
154
  rapidata/api_client/models/elo_config.py,sha256=r06LW9FrKOUhkwv_T_TajX7ljUCBBaw1_D61ZYnk8eU,2841
155
- rapidata/api_client/models/elo_config_model.py,sha256=lMMdzZIdoRcdazCLBD5iuEMKxmYXMWnpcxrazl6ln8I,3404
155
+ rapidata/api_client/models/elo_config_model.py,sha256=sSjZL2zxe9mLDywONksXK_E2SQgWJJy9xr2nI8wAoMI,3400
156
156
  rapidata/api_client/models/empty_validation_truth.py,sha256=dn4EDj_8DPBtupr2Hrmk-g9PuclrmJoe080rSBD_F6A,2911
157
157
  rapidata/api_client/models/error_type.py,sha256=AZKEf0UaGxP2PW5Gf9jYolx9GWBD9rWyDuzXcbgsm6E,842
158
158
  rapidata/api_client/models/evaluation_workflow_config.py,sha256=dAiyC1dmuKv-pl7gOxMsAmz5_exHdmItXfv4M9bs30I,3715
159
- rapidata/api_client/models/evaluation_workflow_model.py,sha256=tZC0REfFS9SxshS38Pejf7diurbUTGik647caE1LO1A,3686
159
+ rapidata/api_client/models/evaluation_workflow_model.py,sha256=vZE0H4Gf0vjeLQsf4gQgeP1XIIY3NDTVzjPEu8lmVtI,3684
160
160
  rapidata/api_client/models/feature_flag.py,sha256=Ctw_S0nxSr0gz4n2GQW1QmcvfVNV8A-IldefaojbgAc,2531
161
161
  rapidata/api_client/models/feature_flag_model.py,sha256=Bzq7vkZRoYnft2_2-HKHLj4FVa6a5lbN3x34-m8vFsA,2803
162
162
  rapidata/api_client/models/feedback_model.py,sha256=BqJoYITA22lE1O2SWenv2Ndw1_JfqIfWMhDvB9gJ0YA,3304
@@ -267,7 +267,7 @@ rapidata/api_client/models/null_asset_model.py,sha256=iYkiSxsLr1aJubdfsLKi468YWX
267
267
  rapidata/api_client/models/null_asset_model1.py,sha256=FAu0ayR7eK_mssNRFwDiaLTumoB44MiZzvWg6Lf3tOw,3601
268
268
  rapidata/api_client/models/null_asset_model2.py,sha256=VZSWnotnBGTuHXeySuHxQ8KWzMzi2WZrSlMqJNuEsTs,3601
269
269
  rapidata/api_client/models/online_pair_maker_config.py,sha256=j29pRLXwNzlMs4uOV6tgDhc76FNxWOM-nCjm-h98Lek,3361
270
- rapidata/api_client/models/online_pair_maker_config_model.py,sha256=JRajsevJoAH2Kc763T4O1_BXN3iHPfqTkNy6rSz7UVc,3581
270
+ rapidata/api_client/models/online_pair_maker_config_model.py,sha256=2jvkHrlEJhde9iD6yJ4TQCFE8-gWbEq8EQzm6GbYg2w,3580
271
271
  rapidata/api_client/models/online_pair_maker_information.py,sha256=SSVJUesx5nptyi9laNMT-K6JNieFn5IuegtqbbWyLCY,3609
272
272
  rapidata/api_client/models/only_validation_workflow_rapid_selection_config.py,sha256=I_k5RsXAXbK8Oe3yhQjN_JO1t1kvPnA4pemQS_CzHmw,3231
273
273
  rapidata/api_client/models/order_model.py,sha256=bkC1-XRSCOhDrzMa6t1Io_MynNmnoMA1J3VXvV5221Y,3864
@@ -334,13 +334,13 @@ rapidata/api_client/models/signup_customer_model.py,sha256=_0ELpAIeH1HPC3zMlLraM
334
334
  rapidata/api_client/models/signup_shadow_customer_model.py,sha256=Io0xUf9zTZuqSHgNCCgBNy-nRF7enYnr8VRX4NxnBdU,2628
335
335
  rapidata/api_client/models/simple_workflow_config.py,sha256=TcVrAusCMTjqxga4fN26nKQZmX4zhwMFUlcWDF3Ad1c,4009
336
336
  rapidata/api_client/models/simple_workflow_config_blueprint.py,sha256=_ECzeTNHF4y1GIcKds_gCXCvVbCTZYdQcfAPhd_X0CE,12264
337
- rapidata/api_client/models/simple_workflow_config_model.py,sha256=-gwTnxqejLiXw4V3VjhUmEbVuqr1MMojUHrh1HWpORs,4242
338
- rapidata/api_client/models/simple_workflow_config_model_blueprint.py,sha256=3OH1Xf7BTk6h7scSMOHP-DxZbUKs3t9uQzEucA3InbY,13278
337
+ rapidata/api_client/models/simple_workflow_config_model.py,sha256=M5NEgLNnD29R50v7-jiD8OoDfVDT8q25FA46Lcix6JE,4240
338
+ rapidata/api_client/models/simple_workflow_config_model_blueprint.py,sha256=LS5H-dD7z54ursFgX_YEJ27KCJ9XCxFyFU1fvJxRtdE,13277
339
339
  rapidata/api_client/models/simple_workflow_get_result_overview_get200_response.py,sha256=KCayJ1XrsclR7niDSqXwIkWQqKgfsdY2bjcMIuaA7TY,6403
340
- rapidata/api_client/models/simple_workflow_model.py,sha256=JiQxu983jp5bChhO7Q2J5ehQ-xKjKslkEYCsIboqpro,3470
340
+ rapidata/api_client/models/simple_workflow_model.py,sha256=p5E3sNBNrmIrC-jeWl0E4CM3C2eoI5MYzgrBAp40P68,3469
341
341
  rapidata/api_client/models/simple_workflow_model1.py,sha256=NxMgskHRvJoXy0fzfPA8MsEtx0IO6WdB16fV8hXq8X0,4759
342
342
  rapidata/api_client/models/simple_workflow_model1_blueprint.py,sha256=A3yCsFJfPnXtKgHEIKhond96vhVDzW5oMb-z0WBtOUA,12264
343
- rapidata/api_client/models/simple_workflow_model_blueprint.py,sha256=FOLg0zrr_kI-_EDv9zdlj_bXdYV90u08wwx2knj5-qM,13243
343
+ rapidata/api_client/models/simple_workflow_model_blueprint.py,sha256=BsO5cZncmoOfb6Y2LPMoqaLlwsR9n4JUsebGgd33ef8,13242
344
344
  rapidata/api_client/models/skip_result.py,sha256=Olj6h05ZjkjJIVKk6T95zoerioMRYCiBbcVH3Jm9CRo,2934
345
345
  rapidata/api_client/models/sort_criterion.py,sha256=klwKhELiScAGHRL8yF_TtL0X_4Z4ddBBAtPFRsOGQY8,2901
346
346
  rapidata/api_client/models/sort_direction.py,sha256=yNLZqvgL5fHbD98kMWFAsfgqn3gKM_GFIyRVfheZydI,748
@@ -369,7 +369,7 @@ rapidata/api_client/models/translated_prompt_metadata_model.py,sha256=BRKheCvA8e
369
369
  rapidata/api_client/models/translated_string.py,sha256=AeftEOw-sR4sMaQNOPy5iSo38kXmbyMIi7MmpbLvYew,2900
370
370
  rapidata/api_client/models/unlock_order_result.py,sha256=xAyBfOotLJ3mgaIjin7k3b-KLLQLJDwuxMfhkUMJr1Y,2561
371
371
  rapidata/api_client/models/update_access_model.py,sha256=VtOJotdQck_AMYBhPhK73uVcwJScqdyKRYNallR6Vjg,2614
372
- rapidata/api_client/models/update_campaign_model.py,sha256=BMpnFrKlyEhM6q2S-HohfRqT5tsTGyvPVkhazKRjBhk,3452
372
+ rapidata/api_client/models/update_campaign_model.py,sha256=9mCp3fQZqtecsCQS1SBbfNyESWxTD9Y7t8R9_21NLlQ,3451
373
373
  rapidata/api_client/models/update_dataset_name_model.py,sha256=IeGRrxo6G2fKfMwnoBFYj4BW9ksGo_8db21VcLYfLvc,2599
374
374
  rapidata/api_client/models/update_dimensions_model.py,sha256=jDg2114Y14AxcQHg_C6oTxMZ17Cq4vEQRtzeNjN70dk,2591
375
375
  rapidata/api_client/models/update_order_model.py,sha256=RUlxnzLqO6o-w5EEPb8wv1ANRKpkSbs8PhGM42T35uw,2570
@@ -384,7 +384,7 @@ rapidata/api_client/models/upload_coco_result.py,sha256=1bO7PjM5Su1fQKzFqpe0-HuL
384
384
  rapidata/api_client/models/upload_datapoints_result.py,sha256=elRh6AliS3UJsOeQCVv3RtRS4lthhYm-IOezshzmT9I,3122
385
385
  rapidata/api_client/models/upload_files_from_s3_bucket_model.py,sha256=mKhoXquUoNVFT-8iDLf9CwuHyJTBHtlpp2O_6M61ww8,4695
386
386
  rapidata/api_client/models/upload_from_s3_result.py,sha256=s3h6f2z7uMe870Vx2-mnollv77GRRMaLVouuYmCKC8I,2608
387
- rapidata/api_client/models/upload_text_sources_to_dataset_model.py,sha256=rKPZHXrgjKBRV_YT7PGl6bFuZmc9ksGpwYE6zJDSUpk,4498
387
+ rapidata/api_client/models/upload_text_sources_to_dataset_model.py,sha256=NTrHR7FWaEnOLyAu7QWy7byAboJJ79L6hF3qFLuCfMs,4497
388
388
  rapidata/api_client/models/user_score_user_filter_model.py,sha256=IEAhRRE4ertksZTIo9LfG6VNPMj7DQk8cgCm_4dtt9c,3521
389
389
  rapidata/api_client/models/validation_chance.py,sha256=noMnBjmt2MjJFpg6OPLfrEppoXmdv82fvCF8v6o4dL0,2838
390
390
  rapidata/api_client/models/validation_import_post_request_blueprint.py,sha256=O2BoEcpuRKfsV-ORVIpsm8DLVx-1sCehlm2G2fJ3iKA,13173
@@ -404,8 +404,8 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
404
404
  rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
405
405
  rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
406
406
  rapidata/api_client/rest.py,sha256=zmCIFQC2l1t-KZcq-TgEm3vco3y_LK6vRm3Q07K-xRI,9423
407
- rapidata/api_client_README.md,sha256=WSakwgi-gz9g-uR3s51H72ph_DMWaApMJhM0-jXmxos,53793
408
- rapidata/rapidata_client/__init__.py,sha256=kkT6FMU4P8rTdYKTJgZNcyptr-Rq1iZmsyLIyRCwpYA,896
407
+ rapidata/api_client_README.md,sha256=97mR2UeWNIhqNxgUAz87zH8kM9RsbrColX_FvIy_rYo,53784
408
+ rapidata/rapidata_client/__init__.py,sha256=yU0cRoX-RmOHQv0Qj3yJpHaDET4DHZWSO6w2cAApQhQ,920
409
409
  rapidata/rapidata_client/assets/__init__.py,sha256=hKgrOSn8gJcBSULaf4auYhH1S1N5AfcwIhBSq1BOKwQ,323
410
410
  rapidata/rapidata_client/assets/_base_asset.py,sha256=B2YWH1NgaeYUYHDW3OPpHM_bqawHbH4EjnRCE2BYwiM,298
411
411
  rapidata/rapidata_client/assets/_media_asset.py,sha256=9IKNKWarBJ-aAxfTjh80ScNsHlWGJnd55fsDbrf8x4s,10336
@@ -446,14 +446,15 @@ rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vT
446
446
  rapidata/rapidata_client/referee/_base_referee.py,sha256=MdFOhdxt3sRnWXLDKLJZKFdVpjBGn9jypPnWWQ6msQA,496
447
447
  rapidata/rapidata_client/referee/_early_stopping_referee.py,sha256=ULbokQZ91wc9D_20qHUhe55D28D9eTY1J1cMp_-oIDc,2088
448
448
  rapidata/rapidata_client/referee/_naive_referee.py,sha256=PVR8uy8hfRjr2DBzdOFyvou6S3swNc-4UvgjhO-09TU,1209
449
- rapidata/rapidata_client/selection/__init__.py,sha256=_SzgWBUYktT_JBPYDoQDjxqkm_TzGgr3ZRBdzP17UKk,330
449
+ rapidata/rapidata_client/selection/__init__.py,sha256=LbafUzvKgKbykbvHZJ7S9aYU82HQl71Y7jAbj_HTZ8c,382
450
450
  rapidata/rapidata_client/selection/_base_selection.py,sha256=tInbWOgxT_4CHkr5QHoG55ZcUi1ZmfcEGIwLKKCnN20,147
451
- rapidata/rapidata_client/selection/ab_test_selection.py,sha256=yNVRpYbRBBde_vg_Pf_xSKMemmJSrbHiL7XXKZW6kWw,1301
451
+ rapidata/rapidata_client/selection/ab_test_selection.py,sha256=fymubkVMawqJmYp9FKzWXTki9tgBgoj3cOP8rG9oOd0,1284
452
452
  rapidata/rapidata_client/selection/capped_selection.py,sha256=iWhbM1LcayhgFm7oKADXCaKHGdiQIupI0jbYuuEVM2A,1184
453
453
  rapidata/rapidata_client/selection/conditional_validation_selection.py,sha256=4etkO5p-wBoI8Wh8vBhNrXm7a_ioFvVmCANJmP8kIwI,2561
454
454
  rapidata/rapidata_client/selection/demographic_selection.py,sha256=l4vnNbzlf9ED6BKqN4k5cZXShkXu9L1C5DtO78Vwr5M,1454
455
455
  rapidata/rapidata_client/selection/labeling_selection.py,sha256=v26QogjmraFfRoSIgWZl6NMIW_TqbGeuCI2p4HxCeOM,657
456
- rapidata/rapidata_client/selection/rapidata_selections.py,sha256=Q5oQhjtjJbUyM6l4ZR5aCTJW_1HgUHbVFlf5QnmOv4E,1394
456
+ rapidata/rapidata_client/selection/rapidata_selections.py,sha256=Azh0ntBZp9EQNL19imIItotQ8QW3B1gEs5YmuTvUn6U,1526
457
+ rapidata/rapidata_client/selection/shuffling_selection.py,sha256=FzOp7mnBLxNzM5at_-935wd77IHyWnFR1f8uqokiMOg,1201
457
458
  rapidata/rapidata_client/selection/validation_selection.py,sha256=sedeIa8lpXVXKtFJA9IDeRvo9A1Ne4ZGcepaWDUGhCU,851
458
459
  rapidata/rapidata_client/settings/__init__.py,sha256=DTEAT_YykwodZJXqKYOtWRwimLCA-Jxo0F0d-H6A3vM,458
459
460
  rapidata/rapidata_client/settings/_rapidata_setting.py,sha256=MD5JhhogSLLrjFKjvL3JhMszOMCygyqLF-st0EwMSkw,352
@@ -467,12 +468,12 @@ rapidata/rapidata_client/settings/play_video_until_the_end.py,sha256=LLHx2_72k5Z
467
468
  rapidata/rapidata_client/settings/rapidata_settings.py,sha256=r6eDGo5YHMekOtWqPHD50uI8vEE9VoBJfaWEDFZ78RU,1430
468
469
  rapidata/rapidata_client/settings/translation_behaviour.py,sha256=i9n_H0eKJyKW6m3MKH_Cm1XEKWVEWsAV_79xGmGIC-4,742
469
470
  rapidata/rapidata_client/validation/__init__.py,sha256=s5wHVtcJkncXSFuL9I0zNwccNOKpWAqxqUjkeohzi2E,24
470
- rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=Px_tpFOc5rSvHaDRtN3prNTuXUqz7Y_ZjmbEFLzDciY,2680
471
+ rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=GaatGGuJCHRvdPbjzI0NRQhxzRftKzf-FkaFv25iB78,2649
471
472
  rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MDakzx4I8Y0laj7siw9teeXj5R0,21
472
473
  rapidata/rapidata_client/validation/rapids/box.py,sha256=t3_Kn6doKXdnJdtbwefXnYKPiTKHneJl9E2inkDSqL8,589
473
474
  rapidata/rapidata_client/validation/rapids/rapids.py,sha256=uCKnoSn1RykNHgTFbrvCFlfzU8lF42cff-2I-Pd48w0,4620
474
475
  rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=F00lPYBUx5fTPRw50iZuobtdbjFo6ZHevPMk101JdaY,14271
475
- rapidata/rapidata_client/validation/validation_set_manager.py,sha256=OeiJ_WX8qSGdQAOVejnSYxZJUmttNsW71E0MLWUQHXY,26529
476
+ rapidata/rapidata_client/validation/validation_set_manager.py,sha256=3gwoUkebAq2b5eMH-4plRz_5sab4mR8HcjYf0K0Tq8A,26698
476
477
  rapidata/rapidata_client/workflow/__init__.py,sha256=7nXcY91xkxjHudBc9H0fP35eBBtgwHGWTQKbb-M4h7Y,477
477
478
  rapidata/rapidata_client/workflow/_base_workflow.py,sha256=XyIZFKS_RxAuwIHS848S3AyLEHqd07oTD_5jm2oUbsw,762
478
479
  rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=9bT54wxVJgxC-zLk6MVNbseFpzYrvFPjt7DHvxqYfnk,1736
@@ -489,7 +490,7 @@ rapidata/service/credential_manager.py,sha256=_DIP665fpl4fkqj1l-wjRrBp-8fy2Db7tn
489
490
  rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
490
491
  rapidata/service/openapi_service.py,sha256=fUQGLQzezjJbLqHVq7o6pQZUrK2Y12sfV23OstV4lOk,3234
491
492
  rapidata/service/token_manager.py,sha256=C-8dN6P5TXCLANZCHWusmwAful5YBpKjKg0StQtajF0,6547
492
- rapidata-2.16.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
493
- rapidata-2.16.0.dist-info/METADATA,sha256=fUufe7p_gtm4UNIg-kzlR-WP9CwUDhiWVjIWJo3Pf3k,1147
494
- rapidata-2.16.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
495
- rapidata-2.16.0.dist-info/RECORD,,
493
+ rapidata-2.17.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
494
+ rapidata-2.17.1.dist-info/METADATA,sha256=g9SEffx65dogoIW2A82uq0HH1HT_-Ly5yBdf0I5a7c8,1147
495
+ rapidata-2.17.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
496
+ rapidata-2.17.1.dist-info/RECORD,,