rapidata 0.1.18__py3-none-any.whl → 0.1.20__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.
- rapidata/api_client/__init__.py +26 -0
- rapidata/api_client/api/__init__.py +1 -0
- rapidata/api_client/api/rapid_api.py +1370 -0
- rapidata/api_client/api/validation_api.py +15 -5
- rapidata/api_client/models/__init__.py +25 -0
- rapidata/api_client/models/add_validation_rapid_result.py +87 -0
- rapidata/api_client/models/attach_category_result.py +98 -0
- rapidata/api_client/models/bounding_box_result.py +106 -0
- rapidata/api_client/models/classification_metadata.py +0 -10
- rapidata/api_client/models/compare_result.py +98 -0
- rapidata/api_client/models/coordinate.py +108 -0
- rapidata/api_client/models/count_metadata.py +0 -10
- rapidata/api_client/models/create_demographic_rapid_model.py +93 -0
- rapidata/api_client/models/create_order_model_referee.py +22 -8
- rapidata/api_client/models/early_stopping_referee_model.py +98 -0
- rapidata/api_client/models/free_text_result.py +98 -0
- rapidata/api_client/models/image_dimension_metadata.py +0 -10
- rapidata/api_client/models/line.py +106 -0
- rapidata/api_client/models/line_point.py +98 -0
- rapidata/api_client/models/line_result.py +106 -0
- rapidata/api_client/models/locate_coordinate.py +98 -0
- rapidata/api_client/models/locate_result.py +106 -0
- rapidata/api_client/models/location_metadata.py +0 -10
- rapidata/api_client/models/named_entity_result.py +106 -0
- rapidata/api_client/models/order_query_get200_response.py +12 -12
- rapidata/api_client/models/original_filename_metadata.py +0 -10
- rapidata/api_client/models/polygon_result.py +106 -0
- rapidata/api_client/models/prompt_metadata.py +0 -10
- rapidata/api_client/models/query_model.py +112 -0
- rapidata/api_client/models/query_validation_rapids_result.py +98 -0
- rapidata/api_client/models/query_validation_rapids_result_asset.py +174 -0
- rapidata/api_client/models/query_validation_rapids_result_paged_result.py +105 -0
- rapidata/api_client/models/rapid_result_model.py +93 -0
- rapidata/api_client/models/rapid_result_model_result.py +252 -0
- rapidata/api_client/models/rapid_skipped_model.py +89 -0
- rapidata/api_client/models/shape.py +104 -0
- rapidata/api_client/models/skip_result.py +96 -0
- rapidata/api_client/models/text_metadata.py +0 -7
- rapidata/api_client/models/transcription_metadata.py +0 -7
- rapidata/api_client/models/transcription_result.py +106 -0
- rapidata/rapidata_client/config.py +9 -0
- rapidata/rapidata_client/dataset/rapidata_dataset.py +1 -2
- rapidata/rapidata_client/dataset/rapidata_validation_set.py +1 -2
- rapidata/rapidata_client/dataset/validation_rapid_parts.py +1 -2
- rapidata/rapidata_client/order/rapidata_order_builder.py +4 -4
- rapidata/rapidata_client/rapidata_client.py +5 -0
- rapidata/rapidata_client/utils/__init__.py +0 -0
- rapidata/rapidata_client/utils/utils.py +22 -0
- rapidata/service/openapi_service.py +6 -2
- {rapidata-0.1.18.dist-info → rapidata-0.1.20.dist-info}/METADATA +3 -2
- {rapidata-0.1.18.dist-info → rapidata-0.1.20.dist-info}/RECORD +53 -25
- rapidata/rapidata_client/types/__init__.py +0 -1
- {rapidata-0.1.18.dist-info → rapidata-0.1.20.dist-info}/LICENSE +0 -0
- {rapidata-0.1.18.dist-info → rapidata-0.1.20.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from rapidata.api_client.models.transcription_word import TranscriptionWord
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class TranscriptionResult(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
TranscriptionResult
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
t: StrictStr = Field(description="Discriminator value for TranscriptionResult", alias="_t")
|
|
31
|
+
selected_words: List[TranscriptionWord] = Field(alias="selectedWords")
|
|
32
|
+
rapid_id: StrictStr = Field(alias="rapidId")
|
|
33
|
+
__properties: ClassVar[List[str]] = ["_t", "selectedWords", "rapidId"]
|
|
34
|
+
|
|
35
|
+
@field_validator('t')
|
|
36
|
+
def t_validate_enum(cls, value):
|
|
37
|
+
"""Validates the enum"""
|
|
38
|
+
if value not in set(['TranscriptionResult']):
|
|
39
|
+
raise ValueError("must be one of enum values ('TranscriptionResult')")
|
|
40
|
+
return value
|
|
41
|
+
|
|
42
|
+
model_config = ConfigDict(
|
|
43
|
+
populate_by_name=True,
|
|
44
|
+
validate_assignment=True,
|
|
45
|
+
protected_namespaces=(),
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def to_str(self) -> str:
|
|
50
|
+
"""Returns the string representation of the model using alias"""
|
|
51
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
52
|
+
|
|
53
|
+
def to_json(self) -> str:
|
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
|
55
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
56
|
+
return json.dumps(self.to_dict())
|
|
57
|
+
|
|
58
|
+
@classmethod
|
|
59
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
60
|
+
"""Create an instance of TranscriptionResult from a JSON string"""
|
|
61
|
+
return cls.from_dict(json.loads(json_str))
|
|
62
|
+
|
|
63
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
64
|
+
"""Return the dictionary representation of the model using alias.
|
|
65
|
+
|
|
66
|
+
This has the following differences from calling pydantic's
|
|
67
|
+
`self.model_dump(by_alias=True)`:
|
|
68
|
+
|
|
69
|
+
* `None` is only added to the output dict for nullable fields that
|
|
70
|
+
were set at model initialization. Other fields with value `None`
|
|
71
|
+
are ignored.
|
|
72
|
+
"""
|
|
73
|
+
excluded_fields: Set[str] = set([
|
|
74
|
+
])
|
|
75
|
+
|
|
76
|
+
_dict = self.model_dump(
|
|
77
|
+
by_alias=True,
|
|
78
|
+
exclude=excluded_fields,
|
|
79
|
+
exclude_none=True,
|
|
80
|
+
)
|
|
81
|
+
# override the default output from pydantic by calling `to_dict()` of each item in selected_words (list)
|
|
82
|
+
_items = []
|
|
83
|
+
if self.selected_words:
|
|
84
|
+
for _item_selected_words in self.selected_words:
|
|
85
|
+
if _item_selected_words:
|
|
86
|
+
_items.append(_item_selected_words.to_dict())
|
|
87
|
+
_dict['selectedWords'] = _items
|
|
88
|
+
return _dict
|
|
89
|
+
|
|
90
|
+
@classmethod
|
|
91
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
92
|
+
"""Create an instance of TranscriptionResult from a dict"""
|
|
93
|
+
if obj is None:
|
|
94
|
+
return None
|
|
95
|
+
|
|
96
|
+
if not isinstance(obj, dict):
|
|
97
|
+
return cls.model_validate(obj)
|
|
98
|
+
|
|
99
|
+
_obj = cls.model_validate({
|
|
100
|
+
"_t": obj.get("_t") if obj.get("_t") is not None else 'TranscriptionResult',
|
|
101
|
+
"selectedWords": [TranscriptionWord.from_dict(_item) for _item in obj["selectedWords"]] if obj.get("selectedWords") is not None else None,
|
|
102
|
+
"rapidId": obj.get("rapidId")
|
|
103
|
+
})
|
|
104
|
+
return _obj
|
|
105
|
+
|
|
106
|
+
|
|
@@ -9,7 +9,6 @@ from rapidata.api_client.models.upload_text_sources_to_dataset_model import (
|
|
|
9
9
|
UploadTextSourcesToDatasetModel,
|
|
10
10
|
)
|
|
11
11
|
from rapidata.rapidata_client.metadata.base_metadata import Metadata
|
|
12
|
-
from rapidata.rapidata_client.types import RapidAsset
|
|
13
12
|
from rapidata.service import LocalFileService
|
|
14
13
|
from rapidata.service.openapi_service import OpenAPIService
|
|
15
14
|
|
|
@@ -31,7 +30,7 @@ class RapidataDataset:
|
|
|
31
30
|
|
|
32
31
|
def add_media_from_paths(
|
|
33
32
|
self,
|
|
34
|
-
image_paths: list[
|
|
33
|
+
image_paths: list[str | list[str]],
|
|
35
34
|
metadata: list[Metadata] | None = None,
|
|
36
35
|
):
|
|
37
36
|
if metadata is not None and len(metadata) != len(image_paths):
|
|
@@ -29,7 +29,6 @@ from rapidata.api_client.models.transcription_payload import TranscriptionPayloa
|
|
|
29
29
|
from rapidata.api_client.models.transcription_truth import TranscriptionTruth
|
|
30
30
|
from rapidata.rapidata_client.dataset.validation_rapid_parts import ValidatioRapidParts
|
|
31
31
|
from rapidata.rapidata_client.metadata.base_metadata import Metadata
|
|
32
|
-
from rapidata.rapidata_client.types import RapidAsset
|
|
33
32
|
from rapidata.service.openapi_service import OpenAPIService
|
|
34
33
|
|
|
35
34
|
|
|
@@ -64,7 +63,7 @@ class RapidataValidationSet:
|
|
|
64
63
|
| TranscriptionTruth
|
|
65
64
|
),
|
|
66
65
|
metadata: list[Metadata],
|
|
67
|
-
media_paths:
|
|
66
|
+
media_paths: str | list[str],
|
|
68
67
|
randomCorrectProbability: float,
|
|
69
68
|
):
|
|
70
69
|
model = AddValidationRapidModel(
|
|
@@ -20,13 +20,12 @@ from rapidata.api_client.models.polygon_truth import PolygonTruth
|
|
|
20
20
|
from rapidata.api_client.models.transcription_payload import TranscriptionPayload
|
|
21
21
|
from rapidata.api_client.models.transcription_truth import TranscriptionTruth
|
|
22
22
|
from rapidata.rapidata_client.metadata.base_metadata import Metadata
|
|
23
|
-
from rapidata.rapidata_client.types import RapidAsset
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
@dataclass
|
|
27
26
|
class ValidatioRapidParts:
|
|
28
27
|
question: str
|
|
29
|
-
media_paths:
|
|
28
|
+
media_paths: str | list[str]
|
|
30
29
|
payload: (
|
|
31
30
|
BoundingBoxPayload
|
|
32
31
|
| ClassifyPayload
|
|
@@ -19,7 +19,6 @@ from rapidata.rapidata_client.dataset.rapidata_dataset import RapidataDataset
|
|
|
19
19
|
from rapidata.rapidata_client.referee.naive_referee import NaiveReferee
|
|
20
20
|
from rapidata.rapidata_client.selection.base_selection import Selection
|
|
21
21
|
from rapidata.rapidata_client.selection.labeling_selection import LabelingSelection
|
|
22
|
-
from rapidata.rapidata_client.types import RapidAsset
|
|
23
22
|
from rapidata.rapidata_client.workflow import Workflow
|
|
24
23
|
from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
|
|
25
24
|
from rapidata.rapidata_client.referee import Referee
|
|
@@ -47,13 +46,14 @@ class RapidataOrderBuilder:
|
|
|
47
46
|
self._openapi_service = openapi_service
|
|
48
47
|
self._workflow: Workflow | None = None
|
|
49
48
|
self._referee: Referee | None = None
|
|
50
|
-
self._media_paths: list[
|
|
49
|
+
self._media_paths: list[str | list[str]] = []
|
|
51
50
|
self._metadata: list[Metadata] | None = None
|
|
52
51
|
self._aggregator: AggregatorType | None = None
|
|
53
52
|
self._validation_set_id: str | None = None
|
|
54
53
|
self._feature_flags: FeatureFlags | None = None
|
|
55
54
|
self._country_codes: list[str] | None = None
|
|
56
55
|
self._selections: list[Selection] = []
|
|
56
|
+
self._rapids_per_bag: int = 2
|
|
57
57
|
|
|
58
58
|
def _to_model(self) -> CreateOrderModel:
|
|
59
59
|
if self._workflow is None:
|
|
@@ -145,7 +145,7 @@ class RapidataOrderBuilder:
|
|
|
145
145
|
|
|
146
146
|
def media(
|
|
147
147
|
self,
|
|
148
|
-
media_paths: list[
|
|
148
|
+
media_paths: list[str | list[str]],
|
|
149
149
|
metadata: list[Metadata] | None = None,
|
|
150
150
|
):
|
|
151
151
|
"""
|
|
@@ -220,4 +220,4 @@ class RapidataOrderBuilder:
|
|
|
220
220
|
|
|
221
221
|
def selections(self, selections: list[Selection]):
|
|
222
222
|
self._selections = selections
|
|
223
|
-
return
|
|
223
|
+
return
|
|
@@ -3,6 +3,7 @@ from rapidata.rapidata_client.dataset.rapidata_validation_set import (
|
|
|
3
3
|
)
|
|
4
4
|
from rapidata.rapidata_client.dataset.validation_set_builder import ValidationSetBuilder
|
|
5
5
|
from rapidata.rapidata_client.order.rapidata_order_builder import RapidataOrderBuilder
|
|
6
|
+
from rapidata.rapidata_client.utils.utils import Utils
|
|
6
7
|
from rapidata.service.openapi_service import OpenAPIService
|
|
7
8
|
|
|
8
9
|
|
|
@@ -54,3 +55,7 @@ class RapidataClient:
|
|
|
54
55
|
:return: The ValidationSet instance.
|
|
55
56
|
"""
|
|
56
57
|
return RapidataValidationSet(validation_set_id, self.openapi_service)
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
def utils(self):
|
|
61
|
+
return Utils(openapi_service=self.openapi_service)
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from rapidata.api_client.models.classify_payload import ClassifyPayload
|
|
2
|
+
from rapidata.api_client.models.create_demographic_rapid_model import (
|
|
3
|
+
CreateDemographicRapidModel,
|
|
4
|
+
)
|
|
5
|
+
from rapidata.service.openapi_service import OpenAPIService
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Utils:
|
|
9
|
+
def __init__(self, openapi_service: OpenAPIService):
|
|
10
|
+
self.openapi_service = openapi_service
|
|
11
|
+
|
|
12
|
+
def new_demographic_rapid(
|
|
13
|
+
self, question: str, options: list[str], identifier: str, media_path: str
|
|
14
|
+
):
|
|
15
|
+
payload = ClassifyPayload(
|
|
16
|
+
_t="ClassifyPayload", title=question, possibleCategories=options
|
|
17
|
+
)
|
|
18
|
+
model = CreateDemographicRapidModel(identifier=identifier, payload=payload)
|
|
19
|
+
|
|
20
|
+
self.openapi_service.rapid_api.rapid_create_demographic_rapid_post(
|
|
21
|
+
model=model, file=[media_path]
|
|
22
|
+
)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from rapidata.api_client.api.dataset_api import DatasetApi
|
|
2
2
|
from rapidata.api_client.api.identity_api import IdentityApi
|
|
3
3
|
from rapidata.api_client.api.order_api import OrderApi
|
|
4
|
+
from rapidata.api_client.api.rapid_api import RapidApi
|
|
4
5
|
from rapidata.api_client.api.validation_api import ValidationApi
|
|
5
6
|
from rapidata.api_client.api_client import ApiClient
|
|
6
7
|
from rapidata.api_client.configuration import Configuration
|
|
@@ -36,8 +37,11 @@ class OpenAPIService:
|
|
|
36
37
|
@property
|
|
37
38
|
def dataset_api(self) -> DatasetApi:
|
|
38
39
|
return self._dataset_api
|
|
39
|
-
|
|
40
|
+
|
|
40
41
|
@property
|
|
41
42
|
def validation_api(self) -> ValidationApi:
|
|
42
43
|
return ValidationApi(self.api_client)
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
def rapid_api(self) -> RapidApi:
|
|
47
|
+
return RapidApi(self.api_client)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rapidata
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.20
|
|
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,9 +11,10 @@ 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
|
-
Requires-Dist: PyJWT (>=2.9.0,<3.0.0)
|
|
15
14
|
Requires-Dist: pillow (>=10.4.0,<11.0.0)
|
|
16
15
|
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
|
|
16
|
+
Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
|
|
17
|
+
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
|
17
18
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
18
19
|
Description-Content-Type: text/markdown
|
|
19
20
|
|
|
@@ -1,34 +1,38 @@
|
|
|
1
1
|
rapidata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
3
|
-
rapidata/api_client/api/__init__.py,sha256=
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=O7OF-B0_pcUkvSQG7koqvwS7S_IknSuSdWTotiV5-DQ,18513
|
|
3
|
+
rapidata/api_client/api/__init__.py,sha256=NmEdKcHiQlR8hn7KMT-V5CZv9H-uPlR8ZHJR27gUq2g,524
|
|
4
4
|
rapidata/api_client/api/coco_api.py,sha256=v5xYyQVlAv4ENgihWlji3BkbczQYKxLP0gnxfQLRmkI,24926
|
|
5
5
|
rapidata/api_client/api/datapoint_api.py,sha256=cKeGXSKNohFXsZwQ6UzHwLnzkcDTI59X7N8B8bp2B4w,31599
|
|
6
6
|
rapidata/api_client/api/dataset_api.py,sha256=EPzqRvCafB5CGMTWpt87qlVnpIYVCYeMdUAspA-PoAs,91075
|
|
7
7
|
rapidata/api_client/api/identity_api.py,sha256=bFEftBZkgoX7E5lVgx81G5vk4LBNIZSMS_GUpb_aynI,127289
|
|
8
8
|
rapidata/api_client/api/newsletter_api.py,sha256=-mBBE5E9nc-T9dxAfXe1sVNIbMueWVTpIuZxtOZPNOo,22529
|
|
9
9
|
rapidata/api_client/api/order_api.py,sha256=VZWdhxT3jR2ZQS9rwsYBEd0-lCXPYNr_iTzOUTNo1DI,215413
|
|
10
|
-
rapidata/api_client/api/
|
|
10
|
+
rapidata/api_client/api/rapid_api.py,sha256=mCS6kf_JEQ_t5zzj5Dar-yaXb3Xf4yGBDt0VN9X5WC4,53948
|
|
11
|
+
rapidata/api_client/api/validation_api.py,sha256=e453OOumaW8FL9pIO30JSy_N-XbGUUkn3urQYFId6mw,67112
|
|
11
12
|
rapidata/api_client/api_client.py,sha256=mApWfZNpTldhNwt1XFMhAUvsenHxZ-lvbyqWUHOhUtk,27427
|
|
12
13
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
13
14
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
14
15
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
15
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
16
|
+
rapidata/api_client/models/__init__.py,sha256=RUsbQZ05whXSdoD2nDbJdmoQfYkaySjfIJVUeLmHULM,17448
|
|
16
17
|
rapidata/api_client/models/add_validation_rapid_model.py,sha256=-HRHMK-o6dgGjUqfsP_woZcFxfN7nuJ-L1CUaK9nihY,4918
|
|
17
18
|
rapidata/api_client/models/add_validation_rapid_model_payload.py,sha256=Ul_xSBMI4jlnbIKPZfyuYJ5x-f-mQik8hYD1ArVKCLw,11092
|
|
18
19
|
rapidata/api_client/models/add_validation_rapid_model_truth.py,sha256=TlaA5RbE2gJquDDm-d7c_fQxvWjYQtiJljZEWgZMWo8,11044
|
|
20
|
+
rapidata/api_client/models/add_validation_rapid_result.py,sha256=rNk2_4CERFNpCq4XExFEb6-9QVwGEJ62nTmpX4_kjXk,2563
|
|
19
21
|
rapidata/api_client/models/admin_order_model.py,sha256=46FTD-pdTIVnETmYnx_P_-MMPPId0QV9BPuozlP1R8M,3296
|
|
20
22
|
rapidata/api_client/models/admin_order_model_paged_result.py,sha256=edgeuvJ8yDMjKDB8vYa2YdbO7brdcgj6AMXPQTLeRbc,3494
|
|
21
23
|
rapidata/api_client/models/age_group.py,sha256=vjo1xwktBdG8BpVxs0vtmqAoQxixUKcoMmpUIF5FH-8,859
|
|
22
24
|
rapidata/api_client/models/age_user_filter_model.py,sha256=6SyU4_4P7owgduletZ-QCTCzyDCj47tzReCD7f2BxT4,3114
|
|
23
25
|
rapidata/api_client/models/aggregator_type.py,sha256=IR1uVYj85BF3OCQoPLjBhmuYmf3qY-8jeVHWnjyLYAk,1073
|
|
24
26
|
rapidata/api_client/models/attach_category_rapid_blueprint.py,sha256=sdPTViyuCnEz4KNnNxIc_sSD0Qv3ux9y6tY4--hGISM,3164
|
|
27
|
+
rapidata/api_client/models/attach_category_result.py,sha256=xLM9576NxYblinC2bjUGAQ7eAqp8H1YK8i7_zS5S278,3095
|
|
25
28
|
rapidata/api_client/models/attach_category_truth.py,sha256=XAc0_cCEPP0iNEaak6ihK9_lExQSGboMBIlO6SebU6o,3062
|
|
26
29
|
rapidata/api_client/models/base_error.py,sha256=eBjOsxAeLEZBdEWLIaC5Fq10lRNBf4qglWnRhJrAbYo,2759
|
|
27
30
|
rapidata/api_client/models/bounding_box_payload.py,sha256=ttIPi-azQEOpn6TpJGPqoYb-Tv4fIQe9LKYnR36-d2o,2968
|
|
28
31
|
rapidata/api_client/models/bounding_box_rapid_blueprint.py,sha256=PUB5vE338XDhwWsGXZa9d1fUzxag3uYzYgbF5qwbCD4,3004
|
|
32
|
+
rapidata/api_client/models/bounding_box_result.py,sha256=3dJXlomyf7E4N-oLCp-7Crk6BG5e7ylxRLU7b7v0J4A,3650
|
|
29
33
|
rapidata/api_client/models/bounding_box_truth.py,sha256=QTlYZFc1ZG-_pO8n0fpfuT4_7g3xm9i7MUDhhtEJGa4,3342
|
|
30
34
|
rapidata/api_client/models/box_shape.py,sha256=8sPLY_p1e9yjCGtUBbtfeZcj2StrnPRY8RtOZ2CiwwM,4192
|
|
31
|
-
rapidata/api_client/models/classification_metadata.py,sha256=
|
|
35
|
+
rapidata/api_client/models/classification_metadata.py,sha256=nNvX8m7sRkhxPiLaCtMGdOmW8Q-cw42LFNlYT-i6WIY,3262
|
|
32
36
|
rapidata/api_client/models/classification_metadata_filter_config.py,sha256=Piv8LaeS856jP5SCbXpOAR-zbqVtXQTUtXxdIC6ViB4,3128
|
|
33
37
|
rapidata/api_client/models/classify_payload.py,sha256=UmIU4mE6pR3KdrxEzFTgPTsN0H8YUPiUaZuy2JOTnAE,3104
|
|
34
38
|
rapidata/api_client/models/clone_dataset_model.py,sha256=FF8AFEmI1VGDI0w9BRF3L_kPK_ZHYWRz-dB0WObI0mM,3259
|
|
@@ -36,15 +40,17 @@ rapidata/api_client/models/clone_order_model.py,sha256=VAs3yUGy6XvTZHO5TYiE4kBxM
|
|
|
36
40
|
rapidata/api_client/models/clone_order_result.py,sha256=YKZzWptburCz3N9bahiEtWviYEfUXOPOmuI1xRihmqk,2644
|
|
37
41
|
rapidata/api_client/models/compare_payload.py,sha256=In-lIEGOZVO6DdI5Vfsyu02ykmEoWbe8xVIJL4eaRrg,2944
|
|
38
42
|
rapidata/api_client/models/compare_rapid_blueprint.py,sha256=hCHLGAuZ6yK8Zv09lLqDBsxf-2r28I_PhZs1Lmr-CMw,2980
|
|
43
|
+
rapidata/api_client/models/compare_result.py,sha256=fYjZceOWQH9eVUW_Du5G0mLj94gx1TXeyEqOf1gug2w,3066
|
|
39
44
|
rapidata/api_client/models/compare_truth.py,sha256=1aVg80bn_0Q_ZnuA0uaoQ9wmiQ4GhaGaGQrx4povU0s,2955
|
|
40
45
|
rapidata/api_client/models/compare_workflow_config.py,sha256=YxDs10B23SWCXUJ2BD3EVl-nMh7cdSWr2PPkbO0kb4w,6500
|
|
41
46
|
rapidata/api_client/models/compare_workflow_config_rapid_selection_configs_inner.py,sha256=k8zuwt4GC3j0oLD6MAy39BhGf_AhyK-uPpL9PaDz3Oc,11919
|
|
42
47
|
rapidata/api_client/models/compare_workflow_config_referee.py,sha256=L0o57EoYVGhtP6DqDjuG3gFVc62U8cWKIlnqdhQf27Q,6956
|
|
43
48
|
rapidata/api_client/models/compare_workflow_model.py,sha256=Kbk_cOV3PcjzZ4PpELcGcI6U7ue_Ez8w5Tj6dpV35l0,4574
|
|
44
49
|
rapidata/api_client/models/conditional_validation_rapid_selection_config.py,sha256=2VFuxKq_QrlG36hB0s67OWfA9y7MgohvJXNga8fhZtc,4285
|
|
50
|
+
rapidata/api_client/models/coordinate.py,sha256=tT0pxkc-oNnGl1KJYWnLjBr0j2BcS7IZmMCLlZTu6TI,3412
|
|
45
51
|
rapidata/api_client/models/correlated_rapid_selection_config.py,sha256=s1xiNfWthzmV-7lripBIvCUSSP5QkC6RgNjEo9p9S48,3208
|
|
46
52
|
rapidata/api_client/models/count_classification_metadata_filter_config.py,sha256=5DemyAZF4RxPw1lOiDP3oOkPdOXmRRR4zzVbTa7Kvi0,3063
|
|
47
|
-
rapidata/api_client/models/count_metadata.py,sha256=
|
|
53
|
+
rapidata/api_client/models/count_metadata.py,sha256=jZPGQjbV49uZo6DYrKGisLlSdQNZ6y_nfPMgsKbB1Bs,3165
|
|
48
54
|
rapidata/api_client/models/country_user_filter_model.py,sha256=K1tE-CBdFq7LcjBqNeeoHxtu__R8bcuM5o5Nv_H4gNc,3113
|
|
49
55
|
rapidata/api_client/models/create_client_model.py,sha256=mhSgaiQjgzkyXqA8_SZdHFDjjNF8aRgTGbynx3-TXW0,2784
|
|
50
56
|
rapidata/api_client/models/create_complex_order_model.py,sha256=5Q-Z4DPdckIXaacJ4EEVg6iLlvIblwqRYL7Wdam00bs,3349
|
|
@@ -54,10 +60,11 @@ rapidata/api_client/models/create_dataset_artifact_model.py,sha256=oy_gbpPxEadNV
|
|
|
54
60
|
rapidata/api_client/models/create_dataset_artifact_model_dataset.py,sha256=fP1RLW2f-TGTm7OwjQLfPQfzkfpKdMb3HcBx89CBU5s,4821
|
|
55
61
|
rapidata/api_client/models/create_default_order_model.py,sha256=kkOxhHBY8DzAyV-PJs_2L-E8jandbpf4Tcgjbo7tDs4,4429
|
|
56
62
|
rapidata/api_client/models/create_default_order_model_workflow_config.py,sha256=2SWl-wTDFggNbKMSrk7LADYvg0tPvNF0OrMGk9ezZQM,5788
|
|
63
|
+
rapidata/api_client/models/create_demographic_rapid_model.py,sha256=XUHn36h1UrOr_Yuuc9D75w3Q0Btsb6XrRNknz4dL4Ws,3037
|
|
57
64
|
rapidata/api_client/models/create_empty_validation_set_result.py,sha256=Z8s0Kjz2lgkbFpbEOXUcu1Rm-iTTVv6vCArbXvwmqfA,2628
|
|
58
65
|
rapidata/api_client/models/create_legacy_order_result.py,sha256=BR1XqPKq9QkDe0UytTW6dpihAeNyfCc4C1m0XfY53hQ,2672
|
|
59
66
|
rapidata/api_client/models/create_order_model.py,sha256=S4HiTe_sVY95tqB9-ToCi5MulqZy8Rn5ypFV2P61qQM,8066
|
|
60
|
-
rapidata/api_client/models/create_order_model_referee.py,sha256=
|
|
67
|
+
rapidata/api_client/models/create_order_model_referee.py,sha256=dxQ9SDiBjFIKYjctVNeiuGvjZwzIa0Q8JpW7iRei00I,5748
|
|
61
68
|
rapidata/api_client/models/create_order_model_selections_inner.py,sha256=ynozg1tQpVC6Myt4nWhcAygKnqp6VFxlLvqHYkyJNNE,6566
|
|
62
69
|
rapidata/api_client/models/create_order_model_user_filters_inner.py,sha256=qEZpmZ_HN2FyXjEOFnZ7KJLeT3VdGtiUgMlrNGaY2KY,6671
|
|
63
70
|
rapidata/api_client/models/create_order_model_workflow.py,sha256=3df3woFT6gFmgy4REZdigXPiOAzv1zL4oALitsyBb_Q,5718
|
|
@@ -78,6 +85,7 @@ rapidata/api_client/models/datapoint_model_asset.py,sha256=817ARdS4ObL5wG9dcLmKJ
|
|
|
78
85
|
rapidata/api_client/models/dataset_evaluation_step_model.py,sha256=7i33ol7dbVK8gmg6kzqBhcQF10s-FQbKmGqir3vCero,3917
|
|
79
86
|
rapidata/api_client/models/demographic_rapid_selection_config.py,sha256=6Gl5HCZAxJcSjU8yTbaPncl7_zmiSzOYvngxjAwiSHk,3102
|
|
80
87
|
rapidata/api_client/models/demographic_selection.py,sha256=XnN9W4X2AnQUj7TuA7kAMn4EKJsNA2J5-b5IVT6gnYA,3165
|
|
88
|
+
rapidata/api_client/models/early_stopping_referee_model.py,sha256=FhLrKAhvoI0OAMMEoJn0DjQo3WhTU_5fyzv8sd83kRk,3489
|
|
81
89
|
rapidata/api_client/models/empty_validation_truth.py,sha256=dn4EDj_8DPBtupr2Hrmk-g9PuclrmJoe080rSBD_F6A,2911
|
|
82
90
|
rapidata/api_client/models/error_type.py,sha256=AZKEf0UaGxP2PW5Gf9jYolx9GWBD9rWyDuzXcbgsm6E,842
|
|
83
91
|
rapidata/api_client/models/feature_flag.py,sha256=Ctw_S0nxSr0gz4n2GQW1QmcvfVNV8A-IldefaojbgAc,2531
|
|
@@ -90,6 +98,7 @@ rapidata/api_client/models/filter.py,sha256=8BjSKkXDG7eTc-PNHU_UI3C4tZsrgEPGof8p
|
|
|
90
98
|
rapidata/api_client/models/filter_operator.py,sha256=hVWuGOU6iseDxdJCG4E-b5Pbb8w3rCLT26ukvmwx6G0,889
|
|
91
99
|
rapidata/api_client/models/free_text_payload.py,sha256=u5p0ybMMOH2ecmzT3FauQs0LgQgLNnUOD8Kk1umOqtw,2952
|
|
92
100
|
rapidata/api_client/models/free_text_rapid_blueprint.py,sha256=Tpf2durJj9olZbI-QPl89BiLESrOs9fDbATpch8tRj4,2988
|
|
101
|
+
rapidata/api_client/models/free_text_result.py,sha256=dmdJ1LVmLQGCJtJAPbZnL6Ylj6F95EGfpQ9DCHJrTO0,3039
|
|
93
102
|
rapidata/api_client/models/gender.py,sha256=hipBrotzYj7aZkY8pNReJcEak-1KMTaCzGBQ6sCR-gQ,776
|
|
94
103
|
rapidata/api_client/models/gender_user_filter_model.py,sha256=-D8NX8gfmvw2N2dc35HYk800T7M3juXmUVXvACLok-A,3117
|
|
95
104
|
rapidata/api_client/models/get_available_validation_sets_result.py,sha256=6Tam9TNoc-l84FWw5AEUt0AdxDCPRrUvRkR9jCiJHi8,3228
|
|
@@ -100,19 +109,24 @@ rapidata/api_client/models/get_order_results_result.py,sha256=zHCTEa1VgbIoGXHsBt
|
|
|
100
109
|
rapidata/api_client/models/get_public_orders_result.py,sha256=ZeORzTIQu3hq1nNdb6tjvSgrLOs8HVbDYjLOZTJNno4,2976
|
|
101
110
|
rapidata/api_client/models/get_workflow_config_result.py,sha256=2JiFcYzAsiUOheWrg1bL6RYuQqAvrn2WaL9pZpQZh1w,3023
|
|
102
111
|
rapidata/api_client/models/get_workflow_config_result_workflow_config.py,sha256=DeqZa0tP0J67MazFwpuNCL5B_YIhn-SlF58T4wMLH_w,5799
|
|
103
|
-
rapidata/api_client/models/image_dimension_metadata.py,sha256=
|
|
112
|
+
rapidata/api_client/models/image_dimension_metadata.py,sha256=q-dVVTXhjZCCIv0vpBaLvBg8xIMyn41NkQUS2TGyxzc,3344
|
|
104
113
|
rapidata/api_client/models/import_from_file_result.py,sha256=t_NhoUCnoY_jOD7xwUY7PjV2iQRqll3klaxo0oDKy60,2557
|
|
105
114
|
rapidata/api_client/models/import_validation_set_from_file_result.py,sha256=HqJXmQ8HwpciJb75ppZN_KAaBQZq_hLaJz-_lgsmplk,2640
|
|
106
115
|
rapidata/api_client/models/issue_auth_token_result.py,sha256=e-nW-90PLpY8jU1LvUFIKzO7YAidOWSP2YbnSqp2tzM,2574
|
|
107
116
|
rapidata/api_client/models/issue_client_auth_token_result.py,sha256=VDZ3-wCqDh4S0KCA3Z8crojS9tjgebLta07JS5w0oYA,2581
|
|
108
117
|
rapidata/api_client/models/labeling_selection.py,sha256=H_wzf1c9nCZfg5VvKpe5_jNP-rzfR-7bUbu20ZLLLhg,3139
|
|
118
|
+
rapidata/api_client/models/line.py,sha256=XBWNSWHE-VwxwhYDYjKcxpyPF8qXnNpQ6WRTxZFMuPE,3401
|
|
109
119
|
rapidata/api_client/models/line_payload.py,sha256=MlT2YmnUlHsaSSRXW6svbBE7j4vxiQYXIsYrMkP1hgc,2912
|
|
120
|
+
rapidata/api_client/models/line_point.py,sha256=GDZyLGx_4qFH0QbOcF4MnYvyxXRIp4DanOBNAgglsiI,3000
|
|
110
121
|
rapidata/api_client/models/line_rapid_blueprint.py,sha256=4iemG24yUYNfvv7SpbvxtHITuPdr4iVuMoqFHfo1xRU,2948
|
|
122
|
+
rapidata/api_client/models/line_result.py,sha256=YV0OsI_2_INxoJ6xO-ppw3DYWeQKlCyzrHD9j7iCwXI,3443
|
|
111
123
|
rapidata/api_client/models/line_truth.py,sha256=D-SsupyjvCQ7bWEFnA6y3vZN8k-dV2E_I4c00fwLIyE,2823
|
|
112
124
|
rapidata/api_client/models/locate_box_truth.py,sha256=J8vppu1EKaXYLAmDzBx__vAi_olpg7PETz5noyGg5Wo,3523
|
|
125
|
+
rapidata/api_client/models/locate_coordinate.py,sha256=gNOwTtZbizssHhRUWS-2s8A5hPJ5-FR67QK3vI7Ggy8,3056
|
|
113
126
|
rapidata/api_client/models/locate_payload.py,sha256=x4ded1NZN3Im8CX_v5OgcfbXuqeG1Y_I8363q4k1N0g,2928
|
|
114
127
|
rapidata/api_client/models/locate_rapid_blueprint.py,sha256=cYf4K62Z9O6wryACsaTYpT5Bj2BKJKjyyBo9JSPv1yU,2964
|
|
115
|
-
rapidata/api_client/models/
|
|
128
|
+
rapidata/api_client/models/locate_result.py,sha256=ICclZTq6QqGYKBAi0PJUT0Fil5wipQYpOdnn4E_5co8,3580
|
|
129
|
+
rapidata/api_client/models/location_metadata.py,sha256=nBtAejh1vWfPZ2s4vsVlQ3oA_NzSmStBdG9JXzJAp0Q,3286
|
|
116
130
|
rapidata/api_client/models/location_metadata_exists_filter_config.py,sha256=GGWqy8sbtqtrWEkKITTWMHzpZuggT37Q36OtW-7smmI,3023
|
|
117
131
|
rapidata/api_client/models/logic_operator.py,sha256=VK5jJ5BBiXUumnI_dtflu4l_wNF-HrrUAtqpO_43RPE,744
|
|
118
132
|
rapidata/api_client/models/login_model.py,sha256=FvbKlIdqtry34vyZjRCOCeH-AEmHByQ7CzHNlgvSzLg,2750
|
|
@@ -124,6 +138,7 @@ rapidata/api_client/models/naive_referee_model.py,sha256=ielKGsWeAQIo4bpcD8bWPaK
|
|
|
124
138
|
rapidata/api_client/models/named_classification.py,sha256=mpHquv-iqXsIowCIdGp1kYvUtDUKbYFq8aVt8MEj3CA,3149
|
|
125
139
|
rapidata/api_client/models/named_entity_payload.py,sha256=P39HOUrigBrEhgYdw-XQKVRV8UR8Ti_LD2gUUWAZz6E,3051
|
|
126
140
|
rapidata/api_client/models/named_entity_rapid_blueprint.py,sha256=NDXRJe6fSkzlegjGLC33bD3pP2cPbCjbIAdA6yE_rbA,3087
|
|
141
|
+
rapidata/api_client/models/named_entity_result.py,sha256=aG9uQMUkqoiGKdTvnIQfvjHESTfEe5tq3lGTBZq73vc,3680
|
|
127
142
|
rapidata/api_client/models/named_entity_truth.py,sha256=cD1Bjgp9SrX6nrzM3UFIFY5Dy_ILG8ztPoTlRS4c3uQ,3569
|
|
128
143
|
rapidata/api_client/models/never_ending_referee_config.py,sha256=_dsfboSZ3m2Wofb3p-qUARxwXaLC_nzB7LEHNehJLns,2943
|
|
129
144
|
rapidata/api_client/models/newsletter_model.py,sha256=wXWtCaodMw40dhX0krLuTRMCBs5OICS4fmH6FaAKlyA,2755
|
|
@@ -132,28 +147,38 @@ rapidata/api_client/models/null_asset.py,sha256=88mm-8iw4dJXCh4lYWYJQLYDxQiDOvqf
|
|
|
132
147
|
rapidata/api_client/models/null_asset_model.py,sha256=L5Zmo7Rp_mCivFT89J95Hb7qXx5Iz2kdV2aVPqnhw7E,3572
|
|
133
148
|
rapidata/api_client/models/only_validation_workflow_rapid_selection_config.py,sha256=I_k5RsXAXbK8Oe3yhQjN_JO1t1kvPnA4pemQS_CzHmw,3231
|
|
134
149
|
rapidata/api_client/models/order_model.py,sha256=RBNDwpGUc4d-2fPg9Fg8VW4Ml5D9yc5TnJGYu95kXrg,2647
|
|
135
|
-
rapidata/api_client/models/order_query_get200_response.py,sha256=
|
|
136
|
-
rapidata/api_client/models/original_filename_metadata.py,sha256=
|
|
150
|
+
rapidata/api_client/models/order_query_get200_response.py,sha256=Zt6TqghldmhkXrF8eIUWXVCp1Af7jiD6iMbuvdj02G8,5876
|
|
151
|
+
rapidata/api_client/models/original_filename_metadata.py,sha256=83cep8ZqYHMxPDCO_JPH8TkubZ6Sddl6VKS0CPld5uY,3321
|
|
137
152
|
rapidata/api_client/models/page_info.py,sha256=8vmnkRGqq38mIQCOMInYrPLFDBALxkWZUM-Z_M1-XK4,2766
|
|
138
153
|
rapidata/api_client/models/polygon_payload.py,sha256=s59uxEbr0sA8zfOFdcjcb9cDf06q4M4dUxG6zu__WmE,2936
|
|
139
154
|
rapidata/api_client/models/polygon_rapid_blueprint.py,sha256=2cpLAiFU3BGjovD2iLw7RTqrQaRAKU0U6AKIiLmqOX4,2972
|
|
155
|
+
rapidata/api_client/models/polygon_result.py,sha256=MouWpVaG94B3CA_mRrCAguIN3k6k796ZxpQXXFHZAYg,3483
|
|
140
156
|
rapidata/api_client/models/polygon_truth.py,sha256=EmaG2vlgGLtQIHlBwT5dyRxp1OwX1i0waLFCIAiTNDs,2847
|
|
141
157
|
rapidata/api_client/models/private_text_metadata_input.py,sha256=2v1OJ1FgMasHSytfKmE1pwyIYGO8DtHG6mqNcDgxW2A,3097
|
|
142
158
|
rapidata/api_client/models/probabilistic_attach_category_referee_config.py,sha256=TU6IyF0kW0upKi08AY7XFLeBSmPfj3cniTwnLb3RT94,3315
|
|
143
|
-
rapidata/api_client/models/prompt_metadata.py,sha256=
|
|
159
|
+
rapidata/api_client/models/prompt_metadata.py,sha256=I2zZbxyffAblh-Gjg58N0cAlTvZoc08aNH4v8J3WZhc,3166
|
|
144
160
|
rapidata/api_client/models/prompt_metadata_input.py,sha256=6dTgZ2OPerrwmpHoEUyQRNuyva-BaCsqS-AANx1zdTI,3065
|
|
145
161
|
rapidata/api_client/models/public_text_metadata_input.py,sha256=n9-TY_32304RZ4N6B5uA16YhseExJZjF14MmlCcdm1U,3089
|
|
162
|
+
rapidata/api_client/models/query_model.py,sha256=EnFwrxlbwhrvG46DWgYPG3CERNIwWh6DdXX86LtEY7g,4193
|
|
146
163
|
rapidata/api_client/models/query_orders_model.py,sha256=eRLuM82LOiKNFywC7vfKlAUvCGolUfTU5w-GUO4TAdA,4126
|
|
164
|
+
rapidata/api_client/models/query_validation_rapids_result.py,sha256=dVN6YAUcVxJb82dSoQf-LwNn0qJZW9AGOOe5c-s6GP8,3193
|
|
165
|
+
rapidata/api_client/models/query_validation_rapids_result_asset.py,sha256=A8QsfT5dXwZ0LJYRL-Uwk3opcyVy21qOmIocNYZin1Q,7201
|
|
166
|
+
rapidata/api_client/models/query_validation_rapids_result_paged_result.py,sha256=Xe6rexVMSW9tWcO3w93tGmggpXN-lgPNqn9-lkWe_9o,3591
|
|
147
167
|
rapidata/api_client/models/query_validation_set_model.py,sha256=FIPvd0-wXvK-GTdtj_ZvQEcsLt2B8wTXb6-33WujkBY,4239
|
|
168
|
+
rapidata/api_client/models/rapid_result_model.py,sha256=JVUSCNErUbZimSIelKb7pgXjxdaHFX6ZjKahuRLbe7w,3048
|
|
169
|
+
rapidata/api_client/models/rapid_result_model_result.py,sha256=RjA75vGoZW5fEHLxS3-z1TUesyax_qxPXW4aYhGFoPw,11681
|
|
170
|
+
rapidata/api_client/models/rapid_skipped_model.py,sha256=3_YXlv4B8teo_xXWlXUMX2ybxgM29PWSw0JMha7qajY,2808
|
|
148
171
|
rapidata/api_client/models/request_password_reset_command.py,sha256=6bSYVzN3KNKd5u0Xl0vSjHRKI2uowIavU_wMbmLktvo,3174
|
|
149
172
|
rapidata/api_client/models/root_filter.py,sha256=ee1rX_2CSUV7etI1sryrgZU1s85ifKVQ8PhpD6PMzRE,3363
|
|
150
173
|
rapidata/api_client/models/send_completion_mail_step_model.py,sha256=iU90CqnaTiC5DmhLKKSJNV_xcKJtnbEJ0NpLtUUhvPM,3382
|
|
174
|
+
rapidata/api_client/models/shape.py,sha256=vBFcHNrmP-gVi0dLIfLGXXOM929l-s0mU8cbryLbI-o,3324
|
|
151
175
|
rapidata/api_client/models/signup_customer_model.py,sha256=_0ELpAIeH1HPC3zMlLraMz-QbZl1z0O8arckiLBOldo,3077
|
|
152
176
|
rapidata/api_client/models/signup_shadow_customer_model.py,sha256=Io0xUf9zTZuqSHgNCCgBNy-nRF7enYnr8VRX4NxnBdU,2628
|
|
153
177
|
rapidata/api_client/models/simple_workflow_config.py,sha256=6V9UcgdPBaDzbsfSsdKaZ4IPrJLldEuklCpDHPugU20,6097
|
|
154
178
|
rapidata/api_client/models/simple_workflow_config_blueprint.py,sha256=_ECzeTNHF4y1GIcKds_gCXCvVbCTZYdQcfAPhd_X0CE,12264
|
|
155
179
|
rapidata/api_client/models/simple_workflow_model.py,sha256=JiQxu983jp5bChhO7Q2J5ehQ-xKjKslkEYCsIboqpro,3470
|
|
156
180
|
rapidata/api_client/models/simple_workflow_model_blueprint.py,sha256=_-7TI96_CqvicKZH196K5z4xk6kEeWh-ft7zhbtFkJ0,12390
|
|
181
|
+
rapidata/api_client/models/skip_result.py,sha256=Olj6h05ZjkjJIVKk6T95zoerioMRYCiBbcVH3Jm9CRo,2934
|
|
157
182
|
rapidata/api_client/models/sort_criterion.py,sha256=klwKhELiScAGHRL8yF_TtL0X_4Z4ddBBAtPFRsOGQY8,2901
|
|
158
183
|
rapidata/api_client/models/sort_direction.py,sha256=yNLZqvgL5fHbD98kMWFAsfgqn3gKM_GFIyRVfheZydI,748
|
|
159
184
|
rapidata/api_client/models/static_rapid_selection_config.py,sha256=RnjyRhAOaxmJ2PW-X2m4G0QZlm-8vw2d9ZO5uneNOtg,3073
|
|
@@ -162,11 +187,12 @@ rapidata/api_client/models/submit_coco_result.py,sha256=7LfDd-GRZx3xxOJED4MlSGfP
|
|
|
162
187
|
rapidata/api_client/models/submit_password_reset_command.py,sha256=EcHK3K72_OrG0McyarmMhY3LHmz0opXMLxwDtPdn-mU,3404
|
|
163
188
|
rapidata/api_client/models/text_asset.py,sha256=VZak7HvImvaL5ticznv97v7ZFEZrf02QzyFusM0p6aY,3508
|
|
164
189
|
rapidata/api_client/models/text_asset_model.py,sha256=F4F3r-cAatxujvzV4TMLjEKUGKwI95lDyhqZ6Z27XfI,3637
|
|
165
|
-
rapidata/api_client/models/text_metadata.py,sha256=
|
|
166
|
-
rapidata/api_client/models/transcription_metadata.py,sha256=
|
|
190
|
+
rapidata/api_client/models/text_metadata.py,sha256=_ss0wkwQK04-hZ7csrS4br_Ho6OztVmcrEaEKj6RCzA,3098
|
|
191
|
+
rapidata/api_client/models/transcription_metadata.py,sha256=O2gIxVocD-A3snk10y2jrgyUUPM8pqaLU7WODR6951o,3206
|
|
167
192
|
rapidata/api_client/models/transcription_metadata_input.py,sha256=OWpF2wbrawjsAZwad4C23DS0m62YaGnTMmpNV7Jh-dQ,3149
|
|
168
193
|
rapidata/api_client/models/transcription_payload.py,sha256=9_l_B74rb4DQLWxWXjzrAPQhbnumEQrKtmNjPMMIp1A,3638
|
|
169
194
|
rapidata/api_client/models/transcription_rapid_blueprint.py,sha256=8Cq2SaI1zaoI3LXCPRU8M4eWRCHcwrb99xCuRXYaAoo,3016
|
|
195
|
+
rapidata/api_client/models/transcription_result.py,sha256=JtZpt6KbrsNOSP9JAhzleApw8dh4sWOxx8sfLz5brIA,3702
|
|
170
196
|
rapidata/api_client/models/transcription_truth.py,sha256=09JR6SdR1Osrw0eVdjqwt8nnCfn9COd6UEWBYRw4yPw,3758
|
|
171
197
|
rapidata/api_client/models/transcription_word.py,sha256=cX_ExJVYVOhi0z2tyOr15VuMIPdHec-8E48H4DG_DNQ,2621
|
|
172
198
|
rapidata/api_client/models/unlock_order_result.py,sha256=xAyBfOotLJ3mgaIjin7k3b-KLLQLJDwuxMfhkUMJr1Y,2561
|
|
@@ -191,12 +217,13 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
|
|
|
191
217
|
rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
|
|
192
218
|
rapidata/api_client/rest.py,sha256=A8BNcRsSo-Pn6sluvAOkTONtiA8gpulLjvGX93sQiAs,9419
|
|
193
219
|
rapidata/rapidata_client/__init__.py,sha256=S34OtjhVlHBYmruPZHpJ5C-pVflCHPwj7FHwhMN-YyY,61
|
|
220
|
+
rapidata/rapidata_client/config.py,sha256=tQLgN6k_ATOX1GzZh38At2rgBDLStV6rJ6z0vsTTPjg,186
|
|
194
221
|
rapidata/rapidata_client/country_codes/__init__.py,sha256=Y8qeG2IMjvMGvhaPydq0nhwRQHb6dQqilctlEXu0_PE,55
|
|
195
222
|
rapidata/rapidata_client/country_codes/country_codes.py,sha256=Q0HMX7uHJQDeLCFPP5bq4iYi6pgcDWEcl2ONGhjgoeU,286
|
|
196
223
|
rapidata/rapidata_client/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
-
rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=
|
|
198
|
-
rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=
|
|
199
|
-
rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=
|
|
224
|
+
rapidata/rapidata_client/dataset/rapidata_dataset.py,sha256=J5jlSIbdswhqXHOq8Qf9gtzVF70cImq9sioDG7S9Mxs,2457
|
|
225
|
+
rapidata/rapidata_client/dataset/rapidata_validation_set.py,sha256=SmhjACZ-Gfj5sJpJztsLYueQJocKPFb3j3I3DAt6wJk,3515
|
|
226
|
+
rapidata/rapidata_client/dataset/validation_rapid_parts.py,sha256=SIeQesEXPPOW5kclxYLNWaKllBXHm7DQKBdMU-GXnfc,2104
|
|
200
227
|
rapidata/rapidata_client/dataset/validation_set_builder.py,sha256=C1mBZUr_ch_8_2mb5EfT44HFM4KaWIRSl1yLsGIsOus,5333
|
|
201
228
|
rapidata/rapidata_client/feature_flags/__init__.py,sha256=BNG_NQ4CrrC61fAWliImr8r581pIvegrkepVVbxcBw8,55
|
|
202
229
|
rapidata/rapidata_client/feature_flags/feature_flags.py,sha256=uV4TPXc1oyqBRC9Ch3APprZwxBGnGMAl9DMFBUWmvnA,1048
|
|
@@ -207,8 +234,8 @@ rapidata/rapidata_client/metadata/prompt_metadata.py,sha256=_FypjKWrC3iKUO_G2CVw
|
|
|
207
234
|
rapidata/rapidata_client/metadata/transcription_metadata.py,sha256=THtDEVCON4UlcXHmXrjilaOLHys4TrktUOPGWnXaCcc,631
|
|
208
235
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
236
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=VRDLTPBf2k6UihF0DnWq3nfBLWExfWHzh3T-cJgFF1w,2437
|
|
210
|
-
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=
|
|
211
|
-
rapidata/rapidata_client/rapidata_client.py,sha256=
|
|
237
|
+
rapidata/rapidata_client/order/rapidata_order_builder.py,sha256=ebAAXKVkEoxX4IEORrlCZNj3AEAZA_lawACwvH2D_20,7958
|
|
238
|
+
rapidata/rapidata_client/rapidata_client.py,sha256=HjKwhTAIpGGZJgLSUOfkmqPEOnPAJtGUO0zslOVbq5k,2168
|
|
212
239
|
rapidata/rapidata_client/referee/__init__.py,sha256=x0AxGCsR6TlDjfqQ00lB9V7QVS9EZCJzweNEIzx42PI,207
|
|
213
240
|
rapidata/rapidata_client/referee/base_referee.py,sha256=bMy7cw0a-pGNbFu6u_1_Jplu0A483Ubj4oDQzh8vu8k,493
|
|
214
241
|
rapidata/rapidata_client/referee/classify_early_stopping_referee.py,sha256=-mPTCck81r2xn1GtMoizaOCftA3cOfj6YDSFbqsI3Ic,1140
|
|
@@ -217,7 +244,8 @@ rapidata/rapidata_client/selection/base_selection.py,sha256=Y3HkROPm4I4HLNiR0HuH
|
|
|
217
244
|
rapidata/rapidata_client/selection/demographic_selection.py,sha256=DU8YvAj-WFALMAQJgjvBm1_ruIdPg2JVuKw07f7nDuA,453
|
|
218
245
|
rapidata/rapidata_client/selection/labeling_selection.py,sha256=cqDMQEXfQGMmgIvPgGOYgIGaXflV_J7LZsGOsakLXqo,425
|
|
219
246
|
rapidata/rapidata_client/selection/validation_selection.py,sha256=HswzD2SvZZWisNLoGj--0sT_TIK8crYp3xGGndo6aLY,523
|
|
220
|
-
rapidata/rapidata_client/
|
|
247
|
+
rapidata/rapidata_client/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
|
+
rapidata/rapidata_client/utils/utils.py,sha256=Fl99gCnh_HnieIp099xEvEv4g2kEIKiFcUp0G2iz6x8,815
|
|
221
249
|
rapidata/rapidata_client/workflow/__init__.py,sha256=CDG8bKOBhLV4A0uBlqOd__79fH9KW3-UlZsR1RANLf0,250
|
|
222
250
|
rapidata/rapidata_client/workflow/base_workflow.py,sha256=335UyiNsIFix7ru_KZLeQHvfNg3GSId44ppPmWTXs_Y,1267
|
|
223
251
|
rapidata/rapidata_client/workflow/classify_workflow.py,sha256=m_0z3y3BNnoOeJv27GpmKXfyjVhjeK-5gaVbtYLboVc,1221
|
|
@@ -226,10 +254,10 @@ rapidata/rapidata_client/workflow/free_text_workflow.py,sha256=X4FBFw00n3S8tqwjH
|
|
|
226
254
|
rapidata/rapidata_client/workflow/transcription_workflow.py,sha256=BkbYaW-T1mr8PxzICx_JT3tFNastOA1KF6Og4qaM67A,854
|
|
227
255
|
rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,68
|
|
228
256
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
229
|
-
rapidata/service/openapi_service.py,sha256
|
|
257
|
+
rapidata/service/openapi_service.py,sha256=-vrM2jEzQxr9KAerOYkVhpvMEeHwjzRwm9L_VFyzOT0,1537
|
|
230
258
|
rapidata/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
259
|
rapidata/utils/image_utils.py,sha256=TldO3eJWG8IhfJjm5MfNGO0mEDm1mQTsRoA0HLU1Uxs,404
|
|
232
|
-
rapidata-0.1.
|
|
233
|
-
rapidata-0.1.
|
|
234
|
-
rapidata-0.1.
|
|
235
|
-
rapidata-0.1.
|
|
260
|
+
rapidata-0.1.20.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
261
|
+
rapidata-0.1.20.dist-info/METADATA,sha256=clJbIPPh_rZbXuvkn2zOcLeEUTUC3vyHPndVU6atOsY,924
|
|
262
|
+
rapidata-0.1.20.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
263
|
+
rapidata-0.1.20.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
type RapidAsset = str | list[str]
|
|
File without changes
|
|
File without changes
|