rapidata 2.7.2__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidata might be problematic. Click here for more details.
- rapidata/api_client/__init__.py +1 -0
- rapidata/api_client/api/dataset_api.py +31 -615
- rapidata/api_client/api/rapid_api.py +252 -0
- rapidata/api_client/api/workflow_api.py +280 -1
- rapidata/api_client/models/__init__.py +1 -0
- rapidata/api_client/models/add_campaign_model.py +1 -1
- rapidata/api_client/models/add_validation_rapid_model.py +2 -2
- rapidata/api_client/models/add_validation_text_rapid_model.py +2 -2
- rapidata/api_client/models/clients_query_result.py +3 -3
- rapidata/api_client/models/compare_workflow_model1.py +2 -2
- rapidata/api_client/models/coordinate.py +2 -2
- rapidata/api_client/models/datapoint.py +9 -2
- rapidata/api_client/models/datapoint_metadata_model.py +11 -4
- rapidata/api_client/models/get_compare_ab_summary_result.py +87 -0
- rapidata/api_client/models/order_model.py +1 -1
- rapidata/api_client/models/preliminary_download_model.py +2 -2
- rapidata/api_client/models/query_validation_rapids_result.py +1 -1
- rapidata/api_client/models/read_bridge_token_keys_result.py +6 -6
- rapidata/api_client/models/report_model.py +1 -1
- rapidata/api_client/models/simple_workflow_model1.py +2 -2
- rapidata/api_client/models/update_campaign_model.py +2 -2
- rapidata/api_client/models/update_validation_rapid_model.py +2 -2
- rapidata/api_client/models/upload_files_from_s3_bucket_model.py +3 -3
- rapidata/api_client/models/upload_text_sources_to_dataset_model.py +11 -4
- rapidata/api_client_README.md +3 -2
- rapidata/rapidata_client/order/_rapidata_dataset.py +9 -7
- rapidata/rapidata_client/order/rapidata_order.py +14 -4
- rapidata/rapidata_client/order/rapidata_results.py +143 -0
- rapidata/rapidata_client/validation/validation_set_manager.py +11 -8
- {rapidata-2.7.2.dist-info → rapidata-2.9.0.dist-info}/METADATA +2 -1
- {rapidata-2.7.2.dist-info → rapidata-2.9.0.dist-info}/RECORD +33 -31
- {rapidata-2.7.2.dist-info → rapidata-2.9.0.dist-info}/WHEEL +1 -1
- {rapidata-2.7.2.dist-info → rapidata-2.9.0.dist-info}/LICENSE +0 -0
|
@@ -47,7 +47,7 @@ class ValidationSetManager:
|
|
|
47
47
|
instruction (str): The instruction by which the labeler will answer.
|
|
48
48
|
answer_options (list[str]): The options to choose from when answering.
|
|
49
49
|
datapoints (list[str]): The datapoints that will be used for validation.
|
|
50
|
-
truths (list[list[str]]): The truths for each datapoint.
|
|
50
|
+
truths (list[list[str]]): The truths for each datapoint. Outer list is for each datapoint, inner list is for each truth.\n
|
|
51
51
|
example:
|
|
52
52
|
options: ["yes", "no", "maybe"]
|
|
53
53
|
datapoints: ["datapoint1", "datapoint2"]
|
|
@@ -161,7 +161,7 @@ class ValidationSetManager:
|
|
|
161
161
|
Args:
|
|
162
162
|
name (str): The name of the validation set. (will not be shown to the labeler)
|
|
163
163
|
instruction (str): The instruction to show to the labeler.
|
|
164
|
-
truths (list[list[int]]): The truths for each datapoint.
|
|
164
|
+
truths (list[list[int]]): The truths for each datapoint. Outer list is for each datapoint, inner list is for each truth.\n
|
|
165
165
|
example:
|
|
166
166
|
datapoints: ["datapoint1", "datapoint2"]
|
|
167
167
|
sentences: ["this example 1", "this example 2"]
|
|
@@ -214,7 +214,7 @@ class ValidationSetManager:
|
|
|
214
214
|
Args:
|
|
215
215
|
name (str): The name of the validation set. (will not be shown to the labeler)
|
|
216
216
|
instruction (str): The instruction to show to the labeler.
|
|
217
|
-
truths (list[list[Box]]): The truths for each datapoint.
|
|
217
|
+
truths (list[list[Box]]): The truths for each datapoint. Outer list is for each datapoint, inner list is for each truth.\n
|
|
218
218
|
example:
|
|
219
219
|
datapoints: ["datapoint1", "datapoint2"]
|
|
220
220
|
truths: [[Box(0, 0, 100, 100)], [Box(50, 50, 150, 150)]] -> first datapoint the object is in the top left corner, second datapoint the object is in the center
|
|
@@ -266,7 +266,7 @@ class ValidationSetManager:
|
|
|
266
266
|
Args:
|
|
267
267
|
name (str): The name of the validation set. (will not be shown to the labeler)
|
|
268
268
|
instruction (str): The instruction to show to the labeler.
|
|
269
|
-
truths (list[list[Box]]): The truths for each datapoint.
|
|
269
|
+
truths (list[list[Box]]): The truths for each datapoint. Outer list is for each datapoint, inner list is for each truth.\n
|
|
270
270
|
example:
|
|
271
271
|
datapoints: ["datapoint1", "datapoint2"]
|
|
272
272
|
truths: [[Box(0, 0, 100, 100)], [Box(50, 50, 150, 150)]] -> first datapoint the object is in the top left corner, second datapoint the object is in the center
|
|
@@ -318,7 +318,7 @@ class ValidationSetManager:
|
|
|
318
318
|
name (str): The name of the validation set. (will not be shown to the labeler)
|
|
319
319
|
instruction (str): The instruction to show to the labeler.
|
|
320
320
|
truths (list[list[tuple[int, int]]]): The truths for each datapoint defined as start and endpoint based on miliseconds.
|
|
321
|
-
|
|
321
|
+
Outer list is for each datapoint, inner list is for each truth.\n
|
|
322
322
|
example:
|
|
323
323
|
datapoints: ["datapoint1", "datapoint2"]
|
|
324
324
|
truths: [[(0, 10)], [(20, 30)]] -> first datapoint the correct interval is from 0 to 10, second datapoint the correct interval is from 20 to 30
|
|
@@ -396,9 +396,6 @@ class ValidationSetManager:
|
|
|
396
396
|
if validation_set_id is None:
|
|
397
397
|
raise ValueError("Failed to create validation set")
|
|
398
398
|
|
|
399
|
-
if print_confirmation:
|
|
400
|
-
print(f"Validation set '{name}' created with ID {validation_set_id}")
|
|
401
|
-
|
|
402
399
|
validation_set = RapidataValidationSet(
|
|
403
400
|
name=name,
|
|
404
401
|
validation_set_id=validation_set_id,
|
|
@@ -408,6 +405,12 @@ class ValidationSetManager:
|
|
|
408
405
|
for rapid in tqdm(rapids, desc="Uploading validation tasks"):
|
|
409
406
|
validation_set.add_rapid(rapid)
|
|
410
407
|
|
|
408
|
+
if print_confirmation:
|
|
409
|
+
print()
|
|
410
|
+
print(f"Validation set '{name}' created with ID {validation_set_id}\n",
|
|
411
|
+
f"Now viewable under: https://app.{self.__openapi_service.enviroment}/validation-set/detail/{validation_set_id}",
|
|
412
|
+
sep="")
|
|
413
|
+
|
|
411
414
|
return validation_set
|
|
412
415
|
|
|
413
416
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rapidata
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.9.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
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
15
|
Requires-Dist: colorama (==0.4.6)
|
|
16
16
|
Requires-Dist: deprecated (>=1.2.14,<2.0.0)
|
|
17
|
+
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
|
17
18
|
Requires-Dist: pillow (>=10.4.0,<11.0.0)
|
|
18
19
|
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
|
|
19
20
|
Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
|
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
rapidata/__init__.py,sha256=c-NU7eUdITYn3ggvlfsIwaQ09qrGfEK0eDUsflwaXUY,607
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=RR_Gbt6KlS7ru5Yp7CwqQ-I2qF9uSv7kLvvIl5z9bVk,25869
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=h0wnYolEBVduAU_7YBLFnwHcwXgZg_krSgarsWxz4zs,1061
|
|
4
4
|
rapidata/api_client/api/campaign_api.py,sha256=DxPFqt9F6c9OpXu_Uxhsrib2NVwnbcZFa3Vkrj7cIuA,40474
|
|
5
5
|
rapidata/api_client/api/client_api.py,sha256=P--1kvxHhC3mu6VQMgf6DyRV2FyC64-eyHP1X60bBSM,42259
|
|
6
6
|
rapidata/api_client/api/coco_api.py,sha256=WQKGMJ568P5bcIDLyV8u6NAhp8URSItdY6PSeTgh5Go,23224
|
|
7
7
|
rapidata/api_client/api/compare_workflow_api.py,sha256=GTJy1ltytlY_xTOjOh45ag3i1UKi4gUin_QWnZX_JXI,12592
|
|
8
8
|
rapidata/api_client/api/datapoint_api.py,sha256=CdLFVMrVylj2_D6Ll58_4ME604-7mgWCyXF5SpKmyfI,31668
|
|
9
|
-
rapidata/api_client/api/dataset_api.py,sha256=
|
|
9
|
+
rapidata/api_client/api/dataset_api.py,sha256=NqpcpuRMN9traUGYDxJcJf9_qZWOx2biad_uamzAtfU,68450
|
|
10
10
|
rapidata/api_client/api/identity_api.py,sha256=HohN5Kgynss527TI91vtpZ8mgxlcCTeH6IdxxEGpOak,34859
|
|
11
11
|
rapidata/api_client/api/newsletter_api.py,sha256=9ZqGDB4_AEQZfRA61RRYkyQ06WjXH-aCwJUe60c2H4w,22575
|
|
12
12
|
rapidata/api_client/api/order_api.py,sha256=hLLlXQrt3y5ni0NALNiDoLd6HxhZ7RuTjyBqmK-osMM,209636
|
|
13
13
|
rapidata/api_client/api/pipeline_api.py,sha256=mFbUZsfnPwHx4pLErTeyRLrf6G4eyekLCsU4KPhtHoQ,94031
|
|
14
|
-
rapidata/api_client/api/rapid_api.py,sha256=
|
|
14
|
+
rapidata/api_client/api/rapid_api.py,sha256=peSvzpFu2xG2OFCCCQxPnf5MlHzUKjcbxqZtYumH2uU,85017
|
|
15
15
|
rapidata/api_client/api/rapidata_identity_api_api.py,sha256=-kgoDuLdh-R4MQ7JPi3kQ0WDFKbmI0MkCjxwHXBmksA,9824
|
|
16
16
|
rapidata/api_client/api/simple_workflow_api.py,sha256=tehEZSbv7Dggweyu0jspgNt19RSnd7ZlPskmAwNaPGs,12565
|
|
17
17
|
rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
|
|
18
18
|
rapidata/api_client/api/validation_api.py,sha256=KAThShO0dR2FCKRoxBcOdeAz68okMyA8EgUv2DsJR1o,87129
|
|
19
|
-
rapidata/api_client/api/workflow_api.py,sha256=
|
|
19
|
+
rapidata/api_client/api/workflow_api.py,sha256=sPumWjoNlo_Tp00voDI4b2JkjHaZWqLhaXd7Lqgrkpo,53996
|
|
20
20
|
rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
|
|
21
21
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
22
22
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
23
23
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
24
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
24
|
+
rapidata/api_client/models/__init__.py,sha256=mbHxDx3OWwe9RwZShp5cwAgsbcQJia7JbU47lOXW0vc,24267
|
|
25
25
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
26
26
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=gQFWLdEJYlQr3SJeiwaAOnVigkmyFaqhAaa59uXu9k8,9937
|
|
27
27
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
28
|
-
rapidata/api_client/models/add_campaign_model.py,sha256=
|
|
29
|
-
rapidata/api_client/models/add_validation_rapid_model.py,sha256=
|
|
28
|
+
rapidata/api_client/models/add_campaign_model.py,sha256=6dFQZrw7NFxfguLzP1QhKiczYZheXA-wcrWWFnd35Qc,6852
|
|
29
|
+
rapidata/api_client/models/add_validation_rapid_model.py,sha256=RmSHnfvWNdvkN3CvHP5rv6XJOoF6sqTqqx75MMEVtU4,5366
|
|
30
30
|
rapidata/api_client/models/add_validation_rapid_model_payload.py,sha256=TxiQCEfoEz2LvSCLyPEbqs1f9iKcGZ4p1zxG3FZoo1U,11825
|
|
31
31
|
rapidata/api_client/models/add_validation_rapid_model_truth.py,sha256=_DTxr_08mHoz_dZtScLWwxw3iockbJ_UEI7JO0MQiuU,11743
|
|
32
32
|
rapidata/api_client/models/add_validation_rapid_result.py,sha256=rNk2_4CERFNpCq4XExFEb6-9QVwGEJ62nTmpX4_kjXk,2563
|
|
33
|
-
rapidata/api_client/models/add_validation_text_rapid_model.py,sha256=
|
|
33
|
+
rapidata/api_client/models/add_validation_text_rapid_model.py,sha256=VtrYXaMWK5xp0O0kiJl4vwimOg8VWOvhiAzYfc4qqMc,5508
|
|
34
34
|
rapidata/api_client/models/admin_order_model.py,sha256=-QBgxsw7MTOYEjwOnKSndJTCWpdx5Os--dY4e6JSW9E,3730
|
|
35
35
|
rapidata/api_client/models/admin_order_model_paged_result.py,sha256=edgeuvJ8yDMjKDB8vYa2YdbO7brdcgj6AMXPQTLeRbc,3494
|
|
36
36
|
rapidata/api_client/models/age_group.py,sha256=XZLFEKvPveCJOCN0byJ_p1rhbIEsAeETSpUX1gAfWMc,877
|
|
@@ -56,7 +56,7 @@ rapidata/api_client/models/classification_metadata.py,sha256=nNvX8m7sRkhxPiLaCtM
|
|
|
56
56
|
rapidata/api_client/models/classification_metadata_filter_config.py,sha256=Piv8LaeS856jP5SCbXpOAR-zbqVtXQTUtXxdIC6ViB4,3128
|
|
57
57
|
rapidata/api_client/models/classification_metadata_model.py,sha256=XMTa4UxpKTbnYYzVnQ0eQ_DbvaxcAzPmvm9T1r9qOfg,3141
|
|
58
58
|
rapidata/api_client/models/classify_payload.py,sha256=UmIU4mE6pR3KdrxEzFTgPTsN0H8YUPiUaZuy2JOTnAE,3104
|
|
59
|
-
rapidata/api_client/models/clients_query_result.py,sha256=
|
|
59
|
+
rapidata/api_client/models/clients_query_result.py,sha256=5zOp8vWYs_nBVQc624nM-UesEHtLUqx-3TJ9Ibsdc4Y,3561
|
|
60
60
|
rapidata/api_client/models/clients_query_result_paged_result.py,sha256=EielWNLAwC_usC_Zqaw0t9fXoHQShOluoCKFzExYanY,3518
|
|
61
61
|
rapidata/api_client/models/clone_dataset_model.py,sha256=FF8AFEmI1VGDI0w9BRF3L_kPK_ZHYWRz-dB0WObI0mM,3259
|
|
62
62
|
rapidata/api_client/models/clone_order_model.py,sha256=VAs3yUGy6XvTZHO5TYiE4kBxMTQ2DlUqFu8fY2w0_TY,2787
|
|
@@ -74,7 +74,7 @@ rapidata/api_client/models/compare_workflow_config_rapid_selection_configs_inner
|
|
|
74
74
|
rapidata/api_client/models/compare_workflow_config_referee.py,sha256=L0o57EoYVGhtP6DqDjuG3gFVc62U8cWKIlnqdhQf27Q,6956
|
|
75
75
|
rapidata/api_client/models/compare_workflow_get_result_overview_get200_response.py,sha256=G7L7oRJw0koqFCcsm8a7br-Dh3fYT8QTiZ77KYlNtRs,6497
|
|
76
76
|
rapidata/api_client/models/compare_workflow_model.py,sha256=XIp1RoBLcpDsMSUr0Vng5RGxiLtjtTWQjqa5gMVuKtk,4931
|
|
77
|
-
rapidata/api_client/models/compare_workflow_model1.py,sha256=
|
|
77
|
+
rapidata/api_client/models/compare_workflow_model1.py,sha256=MRpqgdPpKfkD9kdRoGNtNopTBkQk1hvurI0vrl4Cf1w,5558
|
|
78
78
|
rapidata/api_client/models/compare_workflow_model1_pair_maker_information.py,sha256=vgXchzMDQXBD5SLRogQexbGlNjrvhrsStQX8fnICjIU,6106
|
|
79
79
|
rapidata/api_client/models/compare_workflow_model1_referee.py,sha256=opTltLO2arZUUhQSiLOea6_aRT35fLDCnTyPE3GgnJc,6956
|
|
80
80
|
rapidata/api_client/models/compare_workflow_model_pair_maker_config.py,sha256=CVVPLDf7Nq8-fQVAVUHg8g3U84Ohw7ASP9plL7jKwdo,6191
|
|
@@ -82,7 +82,7 @@ rapidata/api_client/models/completed_rapid_model.py,sha256=rOqZYpcM0eYOL-qX162S_
|
|
|
82
82
|
rapidata/api_client/models/completed_rapid_model_asset.py,sha256=zyuzQfn3eucLZBC_vyIzceH4T0Iy5eIilRYV4CFUNNU,7192
|
|
83
83
|
rapidata/api_client/models/conditional_validation_rapid_selection_config.py,sha256=2VFuxKq_QrlG36hB0s67OWfA9y7MgohvJXNga8fhZtc,4285
|
|
84
84
|
rapidata/api_client/models/conditional_validation_selection.py,sha256=6N7MkGenD80a_BXiOpYBH-wrq0vOVtBC4MxqzSxNQLU,3879
|
|
85
|
-
rapidata/api_client/models/coordinate.py,sha256=
|
|
85
|
+
rapidata/api_client/models/coordinate.py,sha256=mSGBCGDzfew4rAmXCPwlDC3ZJlQruuFUgX-8S2qnl2g,3426
|
|
86
86
|
rapidata/api_client/models/correlated_rapid_selection_config.py,sha256=s1xiNfWthzmV-7lripBIvCUSSP5QkC6RgNjEo9p9S48,3208
|
|
87
87
|
rapidata/api_client/models/count_classification_metadata_filter_config.py,sha256=5DemyAZF4RxPw1lOiDP3oOkPdOXmRRR4zzVbTa7Kvi0,3063
|
|
88
88
|
rapidata/api_client/models/count_metadata.py,sha256=jZPGQjbV49uZo6DYrKGisLlSdQNZ6y_nfPMgsKbB1Bs,3165
|
|
@@ -118,10 +118,10 @@ rapidata/api_client/models/create_unsupported_order_model.py,sha256=3mtEMVJIoaK1
|
|
|
118
118
|
rapidata/api_client/models/custom_user_filter_model.py,sha256=uTNEeTE5Asds_GjkvZzDm9ndQmUoG3hghIGG9iJkp_s,3051
|
|
119
119
|
rapidata/api_client/models/customer_order_model.py,sha256=9kXJb1GQw6dZpZPSSqOU9_yxAoXHk6cbkvghMCf-0jA,3614
|
|
120
120
|
rapidata/api_client/models/customer_order_model_paged_result.py,sha256=3OdAC3BVGWjU6i5kWb108pwt6d1ThVJQF9Ji409ZZDo,3518
|
|
121
|
-
rapidata/api_client/models/datapoint.py,sha256=
|
|
121
|
+
rapidata/api_client/models/datapoint.py,sha256=0ctUw2AixurG_3YQR2dP3GkfrTQGMmpfvs6HUSG2PkU,4665
|
|
122
122
|
rapidata/api_client/models/datapoint_asset.py,sha256=_ed-V6YWPuMkftmAiJW2RxRUJ2W10pVFP_cCZXqJQMU,6690
|
|
123
123
|
rapidata/api_client/models/datapoint_get_by_id_get200_response.py,sha256=4SQEDpOUUGIUCVHe6Xm85Rdg1g_h8YgjCASt-UEn6Vk,4668
|
|
124
|
-
rapidata/api_client/models/datapoint_metadata_model.py,sha256=
|
|
124
|
+
rapidata/api_client/models/datapoint_metadata_model.py,sha256=VyQdXZEKHddf4FY95u7tKjPtEeZiC7oFUlutQyIWkOk,3854
|
|
125
125
|
rapidata/api_client/models/datapoint_metadata_model_metadata_inner.py,sha256=pOZZEwKLnx2LpKFJyJfdBOAtn57rduvPOvLdfSbdh6s,7710
|
|
126
126
|
rapidata/api_client/models/datapoint_model.py,sha256=nhZJg_kWFBN9mhIz_Ucb4fmmplObXSCoXqwxdf59P-o,2976
|
|
127
127
|
rapidata/api_client/models/datapoint_model_asset.py,sha256=817ARdS4ObL5wG9dcLmKJ_1mj1ZjgdagiHHyGhUX6zY,7079
|
|
@@ -156,6 +156,7 @@ rapidata/api_client/models/gender_user_filter_model.py,sha256=eW2Y2A4ZJAikV2hz6T
|
|
|
156
156
|
rapidata/api_client/models/get_attach_category_workflow_result_overview_result.py,sha256=eDUNFTPVJ9IYckJIQU3KRNoNWjANfJPivWO3CS235GI,6771
|
|
157
157
|
rapidata/api_client/models/get_available_validation_sets_result.py,sha256=6Tam9TNoc-l84FWw5AEUt0AdxDCPRrUvRkR9jCiJHi8,3228
|
|
158
158
|
rapidata/api_client/models/get_classify_workflow_result_overview_result.py,sha256=ofGYUKxXOphdGevqxoJd4xflT_nAqxncISIWCHjG124,6747
|
|
159
|
+
rapidata/api_client/models/get_compare_ab_summary_result.py,sha256=n3ZNjKT_BsEtZ7ItNB6TP85o6JezR_vToWMk5ff2cbk,2643
|
|
159
160
|
rapidata/api_client/models/get_compare_workflow_result_overview_result.py,sha256=x8T7N15i-5R8iM4fZgsj688nWCl6npVsvKYFH_kOmdo,4799
|
|
160
161
|
rapidata/api_client/models/get_compare_workflow_result_overview_small_result.py,sha256=myMv-dYrn4e7it6vnn5vd2eCYLfbdob2U5xyB1tD_jQ,4265
|
|
161
162
|
rapidata/api_client/models/get_compare_workflow_results_model.py,sha256=-C7lDa9HsBneUXfTwawWodz1NbyuD2SbVCGOoiuZI0Y,4319
|
|
@@ -236,7 +237,7 @@ rapidata/api_client/models/online_pair_maker_config.py,sha256=j29pRLXwNzlMs4uOV6
|
|
|
236
237
|
rapidata/api_client/models/online_pair_maker_config_model.py,sha256=fCn9TI7lvDaNnksBwI_4xlI13aFsMlyEOee40lOr0s8,3557
|
|
237
238
|
rapidata/api_client/models/online_pair_maker_information.py,sha256=SSVJUesx5nptyi9laNMT-K6JNieFn5IuegtqbbWyLCY,3609
|
|
238
239
|
rapidata/api_client/models/only_validation_workflow_rapid_selection_config.py,sha256=I_k5RsXAXbK8Oe3yhQjN_JO1t1kvPnA4pemQS_CzHmw,3231
|
|
239
|
-
rapidata/api_client/models/order_model.py,sha256=
|
|
240
|
+
rapidata/api_client/models/order_model.py,sha256=RvqbpMMqqNHw_Rr3yvB4Uc-GTmeiaFoEtRy3GLNXoSc,3842
|
|
240
241
|
rapidata/api_client/models/order_model_paged_result.py,sha256=7wHL_M1NYHFWFnaWjqiIx2GCjwWup7Dk1dBNp7_oiLk,3453
|
|
241
242
|
rapidata/api_client/models/order_query_get200_response.py,sha256=Zt6TqghldmhkXrF8eIUWXVCp1Af7jiD6iMbuvdj02G8,5876
|
|
242
243
|
rapidata/api_client/models/order_state.py,sha256=vKWXvq2oi5WNfDzSZ-1EnB-LGKVShj5ltGMYmt0k278,921
|
|
@@ -251,7 +252,7 @@ rapidata/api_client/models/polygon_truth.py,sha256=EmaG2vlgGLtQIHlBwT5dyRxp1OwX1
|
|
|
251
252
|
rapidata/api_client/models/pre_arranged_pair_maker_config.py,sha256=ONMv5S8oCIRvfOI6d0cFzT_CEuFQMaTByPLbKI69b1g,3370
|
|
252
253
|
rapidata/api_client/models/pre_arranged_pair_maker_config_model.py,sha256=HdCXrqW1xY6RLd5UE_YGndjEdgWEZ9X16S_z2u8ly-M,3206
|
|
253
254
|
rapidata/api_client/models/pre_arranged_pair_maker_information.py,sha256=_NpWpjvsiY3cURDVAw0zYksFd0ezL-6qIYNr9cAzQVA,3594
|
|
254
|
-
rapidata/api_client/models/preliminary_download_model.py,sha256=
|
|
255
|
+
rapidata/api_client/models/preliminary_download_model.py,sha256=EsNgTcooju61TCzhFDNUtFcaftoffA07oQqQE_NDXJw,2746
|
|
255
256
|
rapidata/api_client/models/preliminary_download_result.py,sha256=MMGTTVulc5dFtuXqq7hJxMpE6WblsSbXfZ0BckDEuQU,2582
|
|
256
257
|
rapidata/api_client/models/private_text_metadata_input.py,sha256=2v1OJ1FgMasHSytfKmE1pwyIYGO8DtHG6mqNcDgxW2A,3097
|
|
257
258
|
rapidata/api_client/models/probabilistic_attach_category_referee_config.py,sha256=TU6IyF0kW0upKi08AY7XFLeBSmPfj3cniTwnLb3RT94,3315
|
|
@@ -264,7 +265,7 @@ rapidata/api_client/models/public_text_metadata_input.py,sha256=n9-TY_32304RZ4N6
|
|
|
264
265
|
rapidata/api_client/models/query_campaigns_model.py,sha256=QFN637qh7qG0QjuJfTpimR57ACtItxTKn18rbdE-BKM,4138
|
|
265
266
|
rapidata/api_client/models/query_model.py,sha256=FP9dAgpgnlyxQfQhYWSvyTdRTjd9fDBdj8tdijLdw2g,4052
|
|
266
267
|
rapidata/api_client/models/query_orders_model.py,sha256=eRLuM82LOiKNFywC7vfKlAUvCGolUfTU5w-GUO4TAdA,4126
|
|
267
|
-
rapidata/api_client/models/query_validation_rapids_result.py,sha256=
|
|
268
|
+
rapidata/api_client/models/query_validation_rapids_result.py,sha256=tJ8iatu_ZGw9XIw59qVz7263C1-J8OcXi68OzktPGks,5741
|
|
268
269
|
rapidata/api_client/models/query_validation_rapids_result_asset.py,sha256=PuiKaLZqhcRSoTqtvK1CQa_gIN9FeDAfPSJaOqO-ke0,7269
|
|
269
270
|
rapidata/api_client/models/query_validation_rapids_result_paged_result.py,sha256=Xe6rexVMSW9tWcO3w93tGmggpXN-lgPNqn9-lkWe_9o,3591
|
|
270
271
|
rapidata/api_client/models/query_validation_rapids_result_payload.py,sha256=FELmkIBU6aHLv0a283-RdELd4AGZVLKL6SIwYhftm_4,11854
|
|
@@ -281,10 +282,10 @@ rapidata/api_client/models/rapid_result_model.py,sha256=JVUSCNErUbZimSIelKb7pgXj
|
|
|
281
282
|
rapidata/api_client/models/rapid_result_model_result.py,sha256=cGkLszNGFP08CVsLJJkkYD9Zz2lt8GuIVfaKlwYFI7c,12397
|
|
282
283
|
rapidata/api_client/models/rapid_skipped_model.py,sha256=3_YXlv4B8teo_xXWlXUMX2ybxgM29PWSw0JMha7qajY,2808
|
|
283
284
|
rapidata/api_client/models/rapid_state.py,sha256=ef3uvUJ89b-ch0KD11xBipgbaFFy0E9JnTbHWlPq-B4,819
|
|
284
|
-
rapidata/api_client/models/read_bridge_token_keys_result.py,sha256=
|
|
285
|
+
rapidata/api_client/models/read_bridge_token_keys_result.py,sha256=FG7YLQTGAlQeAxY0sVP3i3J3rm73fKf47iveqJkzVGo,5083
|
|
285
286
|
rapidata/api_client/models/register_temporary_customer_model.py,sha256=E4GPQtiA8FKa7aDUgQmQqOQuKm-CpWBfcRKhKWkMTSg,2643
|
|
286
287
|
rapidata/api_client/models/register_temporary_customer_result.py,sha256=uxMFNwPaQvMp0MziTBbllhFlCfaRlyx6gRAFJfRKl8o,4200
|
|
287
|
-
rapidata/api_client/models/report_model.py,sha256=
|
|
288
|
+
rapidata/api_client/models/report_model.py,sha256=sDBdaYcgsPq57kbWd2iyY7B9eFMge8PRix-niUxPyPI,3342
|
|
288
289
|
rapidata/api_client/models/request_password_reset_command.py,sha256=6bSYVzN3KNKd5u0Xl0vSjHRKI2uowIavU_wMbmLktvo,3174
|
|
289
290
|
rapidata/api_client/models/root_filter.py,sha256=ee1rX_2CSUV7etI1sryrgZU1s85ifKVQ8PhpD6PMzRE,3363
|
|
290
291
|
rapidata/api_client/models/scrub_payload.py,sha256=tX-QU_a8GUQWBPb1GofGLFupucZF5TY2LUpqdyfHDSI,2920
|
|
@@ -302,7 +303,7 @@ rapidata/api_client/models/simple_workflow_config_model.py,sha256=-gwTnxqejLiXw4
|
|
|
302
303
|
rapidata/api_client/models/simple_workflow_config_model_blueprint.py,sha256=3OH1Xf7BTk6h7scSMOHP-DxZbUKs3t9uQzEucA3InbY,13278
|
|
303
304
|
rapidata/api_client/models/simple_workflow_get_result_overview_get200_response.py,sha256=KCayJ1XrsclR7niDSqXwIkWQqKgfsdY2bjcMIuaA7TY,6403
|
|
304
305
|
rapidata/api_client/models/simple_workflow_model.py,sha256=JiQxu983jp5bChhO7Q2J5ehQ-xKjKslkEYCsIboqpro,3470
|
|
305
|
-
rapidata/api_client/models/simple_workflow_model1.py,sha256=
|
|
306
|
+
rapidata/api_client/models/simple_workflow_model1.py,sha256=NxMgskHRvJoXy0fzfPA8MsEtx0IO6WdB16fV8hXq8X0,4759
|
|
306
307
|
rapidata/api_client/models/simple_workflow_model1_blueprint.py,sha256=A3yCsFJfPnXtKgHEIKhond96vhVDzW5oMb-z0WBtOUA,12264
|
|
307
308
|
rapidata/api_client/models/simple_workflow_model_blueprint.py,sha256=FOLg0zrr_kI-_EDv9zdlj_bXdYV90u08wwx2knj5-qM,13243
|
|
308
309
|
rapidata/api_client/models/skip_result.py,sha256=Olj6h05ZjkjJIVKk6T95zoerioMRYCiBbcVH3Jm9CRo,2934
|
|
@@ -331,9 +332,9 @@ rapidata/api_client/models/translated_prompt_metadata_model.py,sha256=anQhY7nzrW
|
|
|
331
332
|
rapidata/api_client/models/translated_string.py,sha256=AeftEOw-sR4sMaQNOPy5iSo38kXmbyMIi7MmpbLvYew,2900
|
|
332
333
|
rapidata/api_client/models/unlock_order_result.py,sha256=xAyBfOotLJ3mgaIjin7k3b-KLLQLJDwuxMfhkUMJr1Y,2561
|
|
333
334
|
rapidata/api_client/models/update_access_model.py,sha256=VtOJotdQck_AMYBhPhK73uVcwJScqdyKRYNallR6Vjg,2614
|
|
334
|
-
rapidata/api_client/models/update_campaign_model.py,sha256=
|
|
335
|
+
rapidata/api_client/models/update_campaign_model.py,sha256=BMpnFrKlyEhM6q2S-HohfRqT5tsTGyvPVkhazKRjBhk,3452
|
|
335
336
|
rapidata/api_client/models/update_order_model.py,sha256=RUlxnzLqO6o-w5EEPb8wv1ANRKpkSbs8PhGM42T35uw,2570
|
|
336
|
-
rapidata/api_client/models/update_validation_rapid_model.py,sha256=
|
|
337
|
+
rapidata/api_client/models/update_validation_rapid_model.py,sha256=EmC58z7P2W6CH-RhxedE9hSKVXz1XRZoScC_KQybGZo,3557
|
|
337
338
|
rapidata/api_client/models/update_validation_rapid_model_truth.py,sha256=1NPNnt7xhbL1Wpxh64JTW7CaBTPS4oVkcKAIAmnugTw,11733
|
|
338
339
|
rapidata/api_client/models/update_workflow_config_model.py,sha256=c35Esk6HeqnTXmtDG33SYbplIDIqu7mXDYH3mWjewJA,3858
|
|
339
340
|
rapidata/api_client/models/update_workflow_config_model_workflow_config.py,sha256=L_CwAtyCvu7sPkYkRYF48l6LMgbfzzJxcPp__vagzDQ,5806
|
|
@@ -341,8 +342,8 @@ rapidata/api_client/models/update_workflow_config_request.py,sha256=Dg83C36JXUJq
|
|
|
341
342
|
rapidata/api_client/models/update_workflow_config_request_config.py,sha256=Z-1cyatp7NbZENwoycgnDlUyzENnFMPOrDUrioCS0N0,5937
|
|
342
343
|
rapidata/api_client/models/upload_coco_result.py,sha256=1bO7PjM5Su1fQKzFqpe0-HuLYSDW1M4nms0mMKHqlF8,2761
|
|
343
344
|
rapidata/api_client/models/upload_datapoints_result.py,sha256=elRh6AliS3UJsOeQCVv3RtRS4lthhYm-IOezshzmT9I,3122
|
|
344
|
-
rapidata/api_client/models/upload_files_from_s3_bucket_model.py,sha256=
|
|
345
|
-
rapidata/api_client/models/upload_text_sources_to_dataset_model.py,sha256=
|
|
345
|
+
rapidata/api_client/models/upload_files_from_s3_bucket_model.py,sha256=mKhoXquUoNVFT-8iDLf9CwuHyJTBHtlpp2O_6M61ww8,4695
|
|
346
|
+
rapidata/api_client/models/upload_text_sources_to_dataset_model.py,sha256=kljBHeZn4IyKTigMSwTmLgwVLgG1Tm9da9L2MaVMv38,3344
|
|
346
347
|
rapidata/api_client/models/user_score_user_filter_model.py,sha256=sFoeCbuezIWa8xGME_U07Zv3PtacftW607JSyJ6rw3Q,3200
|
|
347
348
|
rapidata/api_client/models/validation_chance.py,sha256=noMnBjmt2MjJFpg6OPLfrEppoXmdv82fvCF8v6o4dL0,2838
|
|
348
349
|
rapidata/api_client/models/validation_import_post_request_blueprint.py,sha256=O2BoEcpuRKfsV-ORVIpsm8DLVx-1sCehlm2G2fJ3iKA,13173
|
|
@@ -362,7 +363,7 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
|
|
|
362
363
|
rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
|
|
363
364
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
364
365
|
rapidata/api_client/rest.py,sha256=zmCIFQC2l1t-KZcq-TgEm3vco3y_LK6vRm3Q07K-xRI,9423
|
|
365
|
-
rapidata/api_client_README.md,sha256=
|
|
366
|
+
rapidata/api_client_README.md,sha256=CWOOzW4IbXMejePCHh5WxB_6mq_cTRsyZ6q9u6SIdR4,39620
|
|
366
367
|
rapidata/rapidata_client/__init__.py,sha256=kkT6FMU4P8rTdYKTJgZNcyptr-Rq1iZmsyLIyRCwpYA,896
|
|
367
368
|
rapidata/rapidata_client/assets/__init__.py,sha256=hKgrOSn8gJcBSULaf4auYhH1S1N5AfcwIhBSq1BOKwQ,323
|
|
368
369
|
rapidata/rapidata_client/assets/_base_asset.py,sha256=B2YWH1NgaeYUYHDW3OPpHM_bqawHbH4EjnRCE2BYwiM,298
|
|
@@ -394,10 +395,11 @@ rapidata/rapidata_client/metadata/_prompt_metadata.py,sha256=lbtUP9lwUHFfrY_MVlq
|
|
|
394
395
|
rapidata/rapidata_client/metadata/_public_text_metadata.py,sha256=BWEI8kAk3FivXmK82BEVRqy4R4EU_I9NQUSyBDSd_bs,513
|
|
395
396
|
rapidata/rapidata_client/metadata/_select_words_metadata.py,sha256=I4qVtCkj60ljkiYfFO0PbRMqjscSMFCMra60a0P2G-Y,728
|
|
396
397
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
397
|
-
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=
|
|
398
|
+
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=ipSLGEQm6Z5Gj0Z13SmE5-uUwqUeEtC7SyGWx_7piuo,5439
|
|
398
399
|
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=N6mqmgneJSsb_no_Ps9BG3EhDekLgKxFYpjDCN-VVeg,13095
|
|
399
|
-
rapidata/rapidata_client/order/rapidata_order.py,sha256=
|
|
400
|
+
rapidata/rapidata_client/order/rapidata_order.py,sha256=XI9xeEtqZIwdAXLe9Pn4RO8iPNSoBToQ2WD62TRWzTE,9115
|
|
400
401
|
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=4wW5xtmEtdewFGGwMWSMbdLZpHvygtLCfYNv4lcHGg8,27271
|
|
402
|
+
rapidata/rapidata_client/order/rapidata_results.py,sha256=tCQgfv70FHJBcVsgAjqkYZB8ZvqrPGD_hlOmzArlLHg,5037
|
|
401
403
|
rapidata/rapidata_client/rapidata_client.py,sha256=A9mnSX6wzVF9TxS1YH87hTi4jCn75dIuP3KZj5Y_vFg,1957
|
|
402
404
|
rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vTTf_UgUXPYNJ-H6M,153
|
|
403
405
|
rapidata/rapidata_client/referee/_base_referee.py,sha256=MdFOhdxt3sRnWXLDKLJZKFdVpjBGn9jypPnWWQ6msQA,496
|
|
@@ -429,7 +431,7 @@ rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MD
|
|
|
429
431
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=t3_Kn6doKXdnJdtbwefXnYKPiTKHneJl9E2inkDSqL8,589
|
|
430
432
|
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=aWkcjWR6Pr2BFwz8a0MfqEkXnEJPkAbKMeQtGXnsags,4440
|
|
431
433
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=4HOX6c42sCOfpGR2aDoiMgrfjontM8z2KEJwQp4ir6A,14247
|
|
432
|
-
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=
|
|
434
|
+
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=dv9a-Ms4bKOkcfyZfAb-RBjZ6cWT6imM_l3DDvg9aXU,22984
|
|
433
435
|
rapidata/rapidata_client/workflow/__init__.py,sha256=eFRx0fm280alXpds6hYcnxN_yERlabF9B5sTdPFsL1g,430
|
|
434
436
|
rapidata/rapidata_client/workflow/_base_workflow.py,sha256=XyIZFKS_RxAuwIHS848S3AyLEHqd07oTD_5jm2oUbsw,762
|
|
435
437
|
rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=9bT54wxVJgxC-zLk6MVNbseFpzYrvFPjt7DHvxqYfnk,1736
|
|
@@ -445,7 +447,7 @@ rapidata/service/credential_manager.py,sha256=Of0BQs_V1T7rkrWX9groLX790nOknaARwn
|
|
|
445
447
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
446
448
|
rapidata/service/openapi_service.py,sha256=Z4NrAuilLlIWBdGOv6otz36tHS_vvU36w5jmvOUTmqo,3198
|
|
447
449
|
rapidata/service/token_manager.py,sha256=JZ5YbR5Di8dO3H4kK11d0kzWlrXxjgCmeNkHA4AapCM,6425
|
|
448
|
-
rapidata-2.
|
|
449
|
-
rapidata-2.
|
|
450
|
-
rapidata-2.
|
|
451
|
-
rapidata-2.
|
|
450
|
+
rapidata-2.9.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
451
|
+
rapidata-2.9.0.dist-info/METADATA,sha256=7GbcyE9ZroILh90eiE2K7HuX_33Xoon2mZP8pRTjL_E,1146
|
|
452
|
+
rapidata-2.9.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
453
|
+
rapidata-2.9.0.dist-info/RECORD,,
|
|
File without changes
|