rapidata 0.5.1__py3-none-any.whl → 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. rapidata/__init__.py +3 -0
  2. rapidata/api_client/__init__.py +3 -1
  3. rapidata/api_client/api/validation_api.py +276 -0
  4. rapidata/api_client/models/__init__.py +3 -1
  5. rapidata/api_client/models/add_campaign_model.py +3 -3
  6. rapidata/api_client/models/add_validation_text_rapid_model.py +118 -0
  7. rapidata/api_client/models/capped_selection.py +108 -0
  8. rapidata/api_client/models/capped_selection_selections_inner.py +198 -0
  9. rapidata/api_client/models/create_order_model.py +3 -3
  10. rapidata/api_client_README.md +4 -1
  11. rapidata/rapidata_client/__init__.py +1 -0
  12. rapidata/rapidata_client/assets/__init__.py +8 -0
  13. rapidata/rapidata_client/assets/base_asset.py +11 -0
  14. rapidata/rapidata_client/assets/media_asset.py +33 -0
  15. rapidata/rapidata_client/assets/multi_asset.py +44 -0
  16. rapidata/rapidata_client/assets/text_asset.py +25 -0
  17. rapidata/rapidata_client/dataset/rapidata_dataset.py +4 -4
  18. rapidata/rapidata_client/dataset/rapidata_validation_set.py +54 -27
  19. rapidata/rapidata_client/dataset/validation_rapid_parts.py +4 -1
  20. rapidata/rapidata_client/dataset/validation_set_builder.py +49 -34
  21. rapidata/rapidata_client/order/rapidata_order_builder.py +135 -43
  22. rapidata/rapidata_client/rapidata_client.py +24 -0
  23. rapidata/rapidata_client/simple_builders/simple_classification_builders.py +122 -0
  24. rapidata/rapidata_client/simple_builders/simple_compare_builders.py +86 -0
  25. {rapidata-0.5.1.dist-info → rapidata-1.1.0.dist-info}/METADATA +2 -1
  26. {rapidata-0.5.1.dist-info → rapidata-1.1.0.dist-info}/RECORD +28 -18
  27. {rapidata-0.5.1.dist-info → rapidata-1.1.0.dist-info}/WHEEL +1 -1
  28. {rapidata-0.5.1.dist-info → rapidata-1.1.0.dist-info}/LICENSE +0 -0
@@ -0,0 +1,122 @@
1
+ from rapidata.rapidata_client.order.rapidata_order_builder import RapidataOrderBuilder
2
+ from rapidata.rapidata_client.metadata.base_metadata import Metadata
3
+ from rapidata.rapidata_client.referee.naive_referee import NaiveReferee
4
+ from rapidata.rapidata_client.referee.classify_early_stopping_referee import ClassifyEarlyStoppingReferee
5
+ from rapidata.rapidata_client.selection.base_selection import Selection
6
+ from rapidata.rapidata_client.workflow.classify_workflow import ClassifyWorkflow
7
+ from rapidata.rapidata_client.selection.validation_selection import ValidationSelection
8
+ from rapidata.rapidata_client.selection.labeling_selection import LabelingSelection
9
+ from rapidata.service.openapi_service import OpenAPIService
10
+
11
+ class ClassificationOrderBuilder:
12
+ def __init__(self, name: str, question: str, options: list[str], media_paths: list[str], openapi_service: OpenAPIService):
13
+ self._order_builder = RapidataOrderBuilder(name=name, openapi_service=openapi_service)
14
+ self._question = question
15
+ self._options = options
16
+ self._media_paths = media_paths
17
+ self._responses_required = 10
18
+ self._probability_threshold = None
19
+ self._metadata = None
20
+ self._validation_set_id = None
21
+
22
+ def metadata(self, metadata: list[Metadata]):
23
+ """Set the metadata for the classification order. Has to be the same lenght as the media paths."""
24
+ self._metadata = metadata
25
+ return self
26
+
27
+ def responses(self, responses_required: int):
28
+ """Set the number of responses required for the classification order."""
29
+ self._responses_required = responses_required
30
+ return self
31
+
32
+ def probability_threshold(self, probability_threshold: float):
33
+ """Set the probability threshold for early stopping."""
34
+ self._probability_threshold = probability_threshold
35
+ return self
36
+
37
+ def validation_set_id(self, validation_set_id: str):
38
+ """Set the validation set ID for the classification order."""
39
+ self._validation_set_id = validation_set_id
40
+ return self
41
+
42
+ def create(self, submit: bool = True, max_upload_workers: int = 10):
43
+ if self._probability_threshold and self._responses_required:
44
+ referee = ClassifyEarlyStoppingReferee(
45
+ max_vote_count=self._responses_required,
46
+ threshold=self._probability_threshold
47
+ )
48
+
49
+ else:
50
+ referee = NaiveReferee(required_guesses=self._responses_required)
51
+
52
+ selection: list[Selection] = ([ValidationSelection(amount=1, validation_set_id=self._validation_set_id), LabelingSelection(amount=2)]
53
+ if self._validation_set_id
54
+ else [LabelingSelection(amount=3)])
55
+
56
+ order = (self._order_builder
57
+ .workflow(
58
+ ClassifyWorkflow(
59
+ question=self._question,
60
+ options=self._options
61
+ )
62
+ )
63
+ .referee(referee)
64
+ .media(self._media_paths, metadata=self._metadata) # type: ignore
65
+ .selections(selection)
66
+ .create(submit=submit, max_workers=max_upload_workers))
67
+
68
+ return order
69
+
70
+
71
+ class ClassificationMediaBuilder:
72
+ def __init__(self, name: str, question: str, options: list[str], openapi_service: OpenAPIService):
73
+ self._openapi_service = openapi_service
74
+ self._name = name
75
+ self._question = question
76
+ self._options = options
77
+ self._media_paths = None
78
+
79
+ def media(self, media_paths: list[str]) -> ClassificationOrderBuilder:
80
+ """Set the media assets for the classification order by providing the local paths to the files."""
81
+ self._media_paths = media_paths
82
+ return self._build()
83
+
84
+ def _build(self) -> ClassificationOrderBuilder:
85
+ if self._media_paths is None:
86
+ raise ValueError("Media paths are required")
87
+ return ClassificationOrderBuilder(self._name, self._question, self._options, self._media_paths, openapi_service=self._openapi_service)
88
+
89
+
90
+ class ClassificationOptionsBuilder:
91
+ def __init__(self, name: str, question: str, openapi_service: OpenAPIService):
92
+ self._openapi_service = openapi_service
93
+ self._name = name
94
+ self._question = question
95
+ self._options = None
96
+
97
+ def options(self, options: list[str]) -> ClassificationMediaBuilder:
98
+ """Set the answer options for the classification order."""
99
+ self._options = options
100
+ return self._build()
101
+
102
+ def _build(self) -> ClassificationMediaBuilder:
103
+ if self._options is None:
104
+ raise ValueError("Options are required")
105
+ return ClassificationMediaBuilder(self._name, self._question, self._options, self._openapi_service)
106
+
107
+
108
+ class ClassificationQuestionBuilder:
109
+ def __init__(self, name: str, openapi_service: OpenAPIService):
110
+ self._openapi_service = openapi_service
111
+ self._name = name
112
+ self._question = None
113
+
114
+ def question(self, question: str) -> ClassificationOptionsBuilder:
115
+ """Set the question for the classification order."""
116
+ self._question = question
117
+ return self._build()
118
+
119
+ def _build(self) -> ClassificationOptionsBuilder:
120
+ if self._question is None:
121
+ raise ValueError("Question is required")
122
+ return ClassificationOptionsBuilder(self._name, self._question, self._openapi_service)
@@ -0,0 +1,86 @@
1
+ from rapidata.service.openapi_service import OpenAPIService
2
+ from rapidata.rapidata_client.metadata.base_metadata import Metadata
3
+ from rapidata.rapidata_client.order.rapidata_order_builder import RapidataOrderBuilder
4
+ from rapidata.rapidata_client.workflow.compare_workflow import CompareWorkflow
5
+ from rapidata.rapidata_client.referee.naive_referee import NaiveReferee
6
+ from rapidata.rapidata_client.selection.validation_selection import ValidationSelection
7
+ from rapidata.rapidata_client.selection.labeling_selection import LabelingSelection
8
+ from rapidata.rapidata_client.selection.base_selection import Selection
9
+
10
+ class CompareOrderBuilder:
11
+ def __init__(self, name:str, criteria: str, media_paths: list[list[str]], openapi_service: OpenAPIService):
12
+ self._order_builder = RapidataOrderBuilder(name=name, openapi_service=openapi_service)
13
+ self._name = name
14
+ self._criteria = criteria
15
+ self._media_paths = media_paths
16
+ self._responses_required = 10
17
+ self._metadata = None
18
+ self._validation_set_id = None
19
+
20
+ def responses(self, responses_required: int) -> 'CompareOrderBuilder':
21
+ """Set the number of resoonses required per matchup/pairing for the comparison order."""
22
+ self._responses_required = responses_required
23
+ return self
24
+
25
+ def metadata(self, metadata: list[Metadata]) -> 'CompareOrderBuilder':
26
+ """Set the metadata for the comparison order. Has to be the same shape as the media paths."""
27
+ self._metadata = metadata
28
+ return self
29
+
30
+ def validation_set_id(self, validation_set_id: str) -> 'CompareOrderBuilder':
31
+ """Set the validation set ID for the comparison order."""
32
+ self._validation_set_id = validation_set_id
33
+ return self
34
+
35
+ def create(self, submit: bool = True, max_upload_workers: int = 10):
36
+ selection: list[Selection] = ([ValidationSelection(amount=1, validation_set_id=self._validation_set_id), LabelingSelection(amount=2)]
37
+ if self._validation_set_id
38
+ else [LabelingSelection(amount=3)])
39
+
40
+ order = (self._order_builder
41
+ .workflow(
42
+ CompareWorkflow(
43
+ criteria=self._criteria
44
+ )
45
+ )
46
+ .referee(NaiveReferee(required_guesses=self._responses_required))
47
+ .media(self._media_paths, metadata=self._metadata) # type: ignore
48
+ .selections(selection)
49
+ .create(submit=submit, max_workers=max_upload_workers))
50
+
51
+ return order
52
+
53
+ class CompareMediaBuilder:
54
+ def __init__(self, name: str, criteria: str, openapi_service: OpenAPIService):
55
+ self._openapi_service = openapi_service
56
+ self._name = name
57
+ self._criteria = criteria
58
+ self._media_paths = None
59
+
60
+ def media(self, media_paths: list[list[str]]) -> CompareOrderBuilder:
61
+ """Set the media assets for the comparison order by providing the local paths to the files."""
62
+ self._media_paths = media_paths
63
+ return self._build()
64
+
65
+ def _build(self) -> CompareOrderBuilder:
66
+ if self._media_paths is None:
67
+ raise ValueError("Media paths are required")
68
+ assert all([len(path) == 2 for path in self._media_paths]), "The media paths must come in pairs for comparison tasks."
69
+ return CompareOrderBuilder(self._name, self._criteria, self._media_paths, self._openapi_service)
70
+
71
+ class CompareCriteriaBuilder:
72
+ def __init__(self, name: str, openapi_service: OpenAPIService):
73
+ self._openapi_service = openapi_service
74
+ self._name = name
75
+ self._criteria = None
76
+
77
+ def criteria(self, criteria: str) -> CompareMediaBuilder:
78
+ """Set the criteria how the images should be compared."""
79
+ self._criteria = criteria
80
+ return self._build()
81
+
82
+ def _build(self) -> CompareMediaBuilder:
83
+ if self._criteria is None:
84
+ raise ValueError("Criteria are required")
85
+ return CompareMediaBuilder(self._name, self._criteria, self._openapi_service)
86
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapidata
3
- Version: 0.5.1
3
+ Version: 1.1.0
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
@@ -11,6 +11,7 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
14
15
  Requires-Dist: pillow (>=10.4.0,<11.0.0)
15
16
  Requires-Dist: pydantic (>=2.8.2,<3.0.0)
16
17
  Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
@@ -1,5 +1,5 @@
1
- rapidata/__init__.py,sha256=Hi3nSfB8WTNqp-0t-JuNHet1dQ_r2Bs_k4MY1rv-lrE,439
2
- rapidata/api_client/__init__.py,sha256=x3-JQket4rv49nniZY-aS2MDGE2HyxEF3N5LY9IYxYc,21877
1
+ rapidata/__init__.py,sha256=RjXYD9JoaCt45SnKETQNql7GzbRY3yzGirZSQNK26aI,486
2
+ rapidata/api_client/__init__.py,sha256=h5d6E5Xw4b3d8qIO5HBDLzwCKMK_Q_-u1mNJBr2jwpU,22045
3
3
  rapidata/api_client/api/__init__.py,sha256=uy9DBb5K6kofik_kEODgcND2VV2-7lSuX8f-LPp7s-o,857
4
4
  rapidata/api_client/api/campaign_api.py,sha256=v31gL2TkwJdq8lQ33Ys3I1X5d6P92pgVO9qhpwW6aJI,40382
5
5
  rapidata/api_client/api/coco_api.py,sha256=v5xYyQVlAv4ENgihWlji3BkbczQYKxLP0gnxfQLRmkI,24926
@@ -12,19 +12,20 @@ rapidata/api_client/api/order_api.py,sha256=Ki_UbvNHHdpyV3Jz_41Fal_PJ3Ifjv5SF-U4
12
12
  rapidata/api_client/api/pipeline_api.py,sha256=j6JLaDmzj3Hv79H3HZLi0a4jURAQmigM2d1PyI9iEDs,33177
13
13
  rapidata/api_client/api/rapid_api.py,sha256=wVy2ucEw8nJfNAf_IVAj7u_JViggXtcb1LVTt8ygGts,54311
14
14
  rapidata/api_client/api/simple_workflow_api.py,sha256=2jzwmQhaeypcyt6MeyeehSBntCvfhQt1uihMvivFpnE,15417
15
- rapidata/api_client/api/validation_api.py,sha256=TyAI3025so1MNKYdBUAPYfjrpdax87Fvpmginmpscgo,67763
15
+ rapidata/api_client/api/validation_api.py,sha256=Sqb5ZNYhHe0E1Pm7wx3UrEp_Jaa5FfJunTBO2G_EucA,79581
16
16
  rapidata/api_client/api/workflow_api.py,sha256=fl8n31tByZyHJRqIZa1_dpQ7mz_nbWg6P2_KfM8MAxc,94431
17
17
  rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
18
18
  rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
19
19
  rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
20
20
  rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
21
- rapidata/api_client/models/__init__.py,sha256=ifxZebPyaQtNPPDRU6Wr83mtef-44WVFSE9rvEgNmIk,20479
21
+ rapidata/api_client/models/__init__.py,sha256=2cWi88s-Cu0DYwmfj4vxWFlxW3Vl16K63IsS8VJiWlA,20647
22
22
  rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
23
- rapidata/api_client/models/add_campaign_model.py,sha256=hTZjiWV-n2EC-BBrhj6bUucPjLtrREbH05oZatizr3U,6858
23
+ rapidata/api_client/models/add_campaign_model.py,sha256=OJzkfvQlrp6j6ffwVShouUCW-MQZw60BGUJpqjbSGs8,6853
24
24
  rapidata/api_client/models/add_validation_rapid_model.py,sha256=-HRHMK-o6dgGjUqfsP_woZcFxfN7nuJ-L1CUaK9nihY,4918
25
25
  rapidata/api_client/models/add_validation_rapid_model_payload.py,sha256=Ul_xSBMI4jlnbIKPZfyuYJ5x-f-mQik8hYD1ArVKCLw,11092
26
26
  rapidata/api_client/models/add_validation_rapid_model_truth.py,sha256=TlaA5RbE2gJquDDm-d7c_fQxvWjYQtiJljZEWgZMWo8,11044
27
27
  rapidata/api_client/models/add_validation_rapid_result.py,sha256=rNk2_4CERFNpCq4XExFEb6-9QVwGEJ62nTmpX4_kjXk,2563
28
+ rapidata/api_client/models/add_validation_text_rapid_model.py,sha256=Z7EbM9tfkmIQoVDvFdpqDXkecXQF6ymoAJrkxPFVfRU,4995
28
29
  rapidata/api_client/models/admin_order_model.py,sha256=-QBgxsw7MTOYEjwOnKSndJTCWpdx5Os--dY4e6JSW9E,3730
29
30
  rapidata/api_client/models/admin_order_model_paged_result.py,sha256=edgeuvJ8yDMjKDB8vYa2YdbO7brdcgj6AMXPQTLeRbc,3494
30
31
  rapidata/api_client/models/age_group.py,sha256=k4gm2IPuwxXbU9wTvlat0yMwyz3HJ7tVG3Vqhda-e0g,846
@@ -44,6 +45,8 @@ rapidata/api_client/models/campaign_query_model.py,sha256=jyJVUrxumUmkx_Al4yoLi0
44
45
  rapidata/api_client/models/campaign_query_model_paged_result.py,sha256=Aggg5CzXPO6dL-GeSf0RU7WKYelvFagEVq8jaz2MA6g,3518
45
46
  rapidata/api_client/models/campaign_status.py,sha256=YizkmOn2a0CUmP6GZ0z1zukiYYCpiENZmOVeIzZ-qTQ,813
46
47
  rapidata/api_client/models/campaign_user_filter_model.py,sha256=Jl92xwZPA_qQxeVkxGmT987KTG7Bdbj5zysugricbKo,3028
48
+ rapidata/api_client/models/capped_selection.py,sha256=5lS2TtDYS3LH93dq8nVQiZLLcyfWLe5_vMdSs30sKBc,3761
49
+ rapidata/api_client/models/capped_selection_selections_inner.py,sha256=pIT5w0rtbY2h__5xbsVj0zXEciaNMu7Ctfq1o-YZxjE,9234
47
50
  rapidata/api_client/models/classification_metadata.py,sha256=nNvX8m7sRkhxPiLaCtMGdOmW8Q-cw42LFNlYT-i6WIY,3262
48
51
  rapidata/api_client/models/classification_metadata_filter_config.py,sha256=Piv8LaeS856jP5SCbXpOAR-zbqVtXQTUtXxdIC6ViB4,3128
49
52
  rapidata/api_client/models/classify_payload.py,sha256=UmIU4mE6pR3KdrxEzFTgPTsN0H8YUPiUaZuy2JOTnAE,3104
@@ -83,7 +86,7 @@ rapidata/api_client/models/create_independent_workflow_model.py,sha256=w7lHQXKG1
83
86
  rapidata/api_client/models/create_independent_workflow_model_workflow_config.py,sha256=GVVxs9VAmM2hTXWWoqKNXD9E7qRk3CO88YRm1AHxJCI,5845
84
87
  rapidata/api_client/models/create_independent_workflow_result.py,sha256=JOhS75mAH-VvarvDDFsycahPlIezVKT1upuqIo93hC0,2719
85
88
  rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0UytTW6dpihAeNyfCc4C1m0XfY53hQ,2672
86
- rapidata/api_client/models/create_order_model.py,sha256=iDZn_LR8IBuTcyoJDsBkLyIMmhLCrXl1o3-8rNU3pUE,8909
89
+ rapidata/api_client/models/create_order_model.py,sha256=yILLaONWi3DHDGHgbz2M3MkGN7R1yIKF35XOsjInuaQ,8904
87
90
  rapidata/api_client/models/create_order_model_referee.py,sha256=dxQ9SDiBjFIKYjctVNeiuGvjZwzIa0Q8JpW7iRei00I,5748
88
91
  rapidata/api_client/models/create_order_model_selections_inner.py,sha256=9p9BJKHN3WhRiu-FwWf421COAxeGmm1KkkyDT7UW5uc,8354
89
92
  rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=2PAJkzMgWavHvaiR5vb1Sk6uPQZkDltiMjeoQAdsU8c,9412
@@ -270,16 +273,21 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
270
273
  rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
271
274
  rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
272
275
  rapidata/api_client/rest.py,sha256=zmCIFQC2l1t-KZcq-TgEm3vco3y_LK6vRm3Q07K-xRI,9423
273
- rapidata/api_client_README.md,sha256=DSG4jdBJPc9wR5WqtW2cBTb7D1Sgptp6nfdPY5KJqbk,35564
274
- rapidata/rapidata_client/__init__.py,sha256=1DQ3eWUYDg4TwDND0nhSHU03BWdsDU9HpVDAMgbXgPg,523
276
+ rapidata/api_client_README.md,sha256=TTRICzNTe3a2U9z1c5BAcMdSnUODlBBM5keBeBXv6uk,35978
277
+ rapidata/rapidata_client/__init__.py,sha256=zJ96SlJHI-RX-ut9hJoyOs9vWYGoDEcTqvwbgZOB8j8,577
278
+ rapidata/rapidata_client/assets/__init__.py,sha256=T-XKvMSkmyI8iYLUYDdZ3LrrSInHsGMUY_Tz77hhnlE,240
279
+ rapidata/rapidata_client/assets/base_asset.py,sha256=B2YWH1NgaeYUYHDW3OPpHM_bqawHbH4EjnRCE2BYwiM,298
280
+ rapidata/rapidata_client/assets/media_asset.py,sha256=JU0O_2eNPnHSYpxKjzUq0hdVaHhI0VPw2z1UICkLBLw,846
281
+ rapidata/rapidata_client/assets/multi_asset.py,sha256=laHJt-t29rMtgVYv1j5M6h_CrqWIQlPdjKMTI-jEcWI,1118
282
+ rapidata/rapidata_client/assets/text_asset.py,sha256=a_En6wo0Ubgodl2KpBl1p_SxHSy_qRNme2bA3AtcPbY,516
275
283
  rapidata/rapidata_client/config.py,sha256=tQLgN6k_ATOX1GzZh38At2rgBDLStV6rJ6z0vsTTPjg,186
276
284
  rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ71tE130x6NO_3aLJ8fKzQ,40
277
285
  rapidata/rapidata_client/country_codes/country_codes.py,sha256=Q0HMX7uHJQDeLCFPP5bq4iYi6pgcDWEcl2ONGhjgoeU,286
278
286
  rapidata/rapidata_client/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
279
- rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=QDsl7ZCZxuG02yfEpBSphfSDZh_qHz6m5HUCGwZflfw,3205
280
- rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=YrnUzia9AXgq2z917FtztFxj4fD5EgTWXVPBzLVIujY,9374
281
- rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=SIeQesEXPPOW5kclxYLNWaKllBXHm7DQKBdMU-GXnfc,2104
282
- rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=B9D-uNCo_PO0NCUHju_7dsWtz_KcOmvFIsxUgQ67Q2M,7471
287
+ rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=Rwt7sM5T74HT7gbtfjmdF9tDaPqHfpMLggIWOsYCgYU,3205
288
+ rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=Y7iaThkLxDyHJuKA34rgPkIQ3_8l-hJyZwfomzOyUqk,10096
289
+ rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=uzpOZFqQu8bG6vmjcWWUNJPZsRe28OmnyalRE6ry8tk,2317
290
+ rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=MhIG6to34Sjt2q7hkWJOFVZzmz0_aI2jRrESlmsljyg,7957
283
291
  rapidata/rapidata_client/feature_flags/__init__.py,sha256=IYkcK_bZCl5RfyQFiWjjUdz4y0jipiW9qfeopq4EjQQ,40
284
292
  rapidata/rapidata_client/feature_flags/feature_flags.py,sha256=hcS9YRzpsPWpZfw-3QwSuf2TaVg-MOHBxY788oNqIW4,3957
285
293
  rapidata/rapidata_client/metadata/__init__.py,sha256=qMmo4wqScUCAJ6YXRWxvJLmbFA5YRbK39p9_exV1d50,246
@@ -290,8 +298,8 @@ rapidata/rapidata_client/metadata/public_text_metadata.py,sha256=LTiBQHs6izxQ6-C
290
298
  rapidata/rapidata_client/metadata/transcription_metadata.py,sha256=THtDEVCON4UlcXHmXrjilaOLHys4TrktUOPGWnXaCcc,631
291
299
  rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
300
  rapidata/rapidata_client/order/rapidata_order.py,sha256=DCfw_xH7Ja8KURlJYaxVuX6dM81sUF7HLyX4iTfqqZc,3098
293
- rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=5B-YNMInGLHNEaARpZ24igdUUdxPvZvscCsuDSqPo9s,8869
294
- rapidata/rapidata_client/rapidata_client.py,sha256=NsLE6WRrnPFNyCklD0d249XmCoVr_Z_z8HOf-scEnxM,3623
301
+ rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=E879fYGbdkTfELfuWxy87tmRtrLSmIndevKujRlH8gE,11964
302
+ rapidata/rapidata_client/rapidata_client.py,sha256=s3TlhYlvMuxcyEDIFDqpwRsP0SIi9b158uIHLUyV1gY,4699
295
303
  rapidata/rapidata_client/referee/__init__.py,sha256=Ow9MQsONhF4sX2wFK9jbvSBrpcJgtq3OglIQMkBUdIY,167
296
304
  rapidata/rapidata_client/referee/base_referee.py,sha256=bMy7cw0a-pGNbFu6u_1_Jplu0A483Ubj4oDQzh8vu8k,493
297
305
  rapidata/rapidata_client/referee/classify_early_stopping_referee.py,sha256=B5wsqKM3_Oc1TU_MFGiIyiXjwK1LcmaVjhzLdaL8Cgw,1797
@@ -302,6 +310,8 @@ rapidata/rapidata_client/selection/conditional_validation_selection.py,sha256=wP
302
310
  rapidata/rapidata_client/selection/demographic_selection.py,sha256=BmzMpWS2kNv1-zRLWuZoqpGp6bF5PujhkyEs5UG7X18,439
303
311
  rapidata/rapidata_client/selection/labeling_selection.py,sha256=cqDMQEXfQGMmgIvPgGOYgIGaXflV_J7LZsGOsakLXqo,425
304
312
  rapidata/rapidata_client/selection/validation_selection.py,sha256=HswzD2SvZZWisNLoGj--0sT_TIK8crYp3xGGndo6aLY,523
313
+ rapidata/rapidata_client/simple_builders/simple_classification_builders.py,sha256=N7r83eqKfiKMcbW5VBES7pCZEu9VXdcANaIxb0Denq8,5421
314
+ rapidata/rapidata_client/simple_builders/simple_compare_builders.py,sha256=JVV6FYyY435Sj-u-xJvNtcmJjmZTWUvEPKiWXjc3COE,4052
305
315
  rapidata/rapidata_client/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
316
  rapidata/rapidata_client/utils/utils.py,sha256=Fl99gCnh_HnieIp099xEvEv4g2kEIKiFcUp0G2iz6x8,815
307
317
  rapidata/rapidata_client/workflow/__init__.py,sha256=nHB6heVVf_A3nhSL0NGapnGqJAL0K9nfOpfyaUM5srw,238
@@ -315,7 +325,7 @@ rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5
315
325
  rapidata/service/openapi_service.py,sha256=-vrM2jEzQxr9KAerOYkVhpvMEeHwjzRwm9L_VFyzOT0,1537
316
326
  rapidata/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
327
  rapidata/utils/image_utils.py,sha256=TldO3eJWG8IhfJjm5MfNGO0mEDm1mQTsRoA0HLU1Uxs,404
318
- rapidata-0.5.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
319
- rapidata-0.5.1.dist-info/METADATA,sha256=D85-nvTYY6blbR3n6g2iTW1IYw0wNcM21U0hJDNFFLs,961
320
- rapidata-0.5.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
321
- rapidata-0.5.1.dist-info/RECORD,,
328
+ rapidata-1.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
329
+ rapidata-1.1.0.dist-info/METADATA,sha256=OEWHxhQ0JHX20wGLRT9ISppda18KuLHBLLicZfwKxeE,1012
330
+ rapidata-1.1.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
331
+ rapidata-1.1.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any