fiddler-client 2.5.0.dev2__py3-none-any.whl → 2.5.2__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.
- fiddler/_version.py +1 -1
- fiddler/schemas/custom_features.py +1 -0
- fiddler/utils/pandas_helper.py +1 -1
- {fiddler_client-2.5.0.dev2.dist-info → fiddler_client-2.5.2.dist-info}/METADATA +13 -1
- {fiddler_client-2.5.0.dev2.dist-info → fiddler_client-2.5.2.dist-info}/RECORD +8 -8
- {fiddler_client-2.5.0.dev2.dist-info → fiddler_client-2.5.2.dist-info}/WHEEL +1 -1
- {fiddler_client-2.5.0.dev2.dist-info → fiddler_client-2.5.2.dist-info}/LICENSE.txt +0 -0
- {fiddler_client-2.5.0.dev2.dist-info → fiddler_client-2.5.2.dist-info}/top_level.txt +0 -0
fiddler/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.5.
|
|
1
|
+
__version__ = '2.5.2'
|
|
@@ -103,6 +103,7 @@ class VectorFeature(CustomFeature):
|
|
|
103
103
|
class TextEmbedding(VectorFeature):
|
|
104
104
|
type: CustomFeatureType = CustomFeatureType.FROM_TEXT_EMBEDDING
|
|
105
105
|
n_tags: Optional[int] = DEFAULT_NUM_TAGS
|
|
106
|
+
tf_idf: Optional[Dict[str, List]] = None
|
|
106
107
|
|
|
107
108
|
@validator('source_column')
|
|
108
109
|
def validate_source_column(cls, value: str) -> str: # noqa: N805
|
fiddler/utils/pandas_helper.py
CHANGED
|
@@ -84,7 +84,7 @@ def clean_df_types(df: pd.DataFrame) -> pd.DataFrame:
|
|
|
84
84
|
def try_series_retype(
|
|
85
85
|
series: pd.Series, new_type: str
|
|
86
86
|
) -> Union[pd.DataFrame, pd.Series]:
|
|
87
|
-
if new_type in ['unknown', 'str']:
|
|
87
|
+
if new_type in ['unknown', 'str', 'vector']:
|
|
88
88
|
# Do not retype data
|
|
89
89
|
return series
|
|
90
90
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fiddler-client
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.2
|
|
4
4
|
Summary: Python client for Fiddler Service
|
|
5
5
|
Home-page: https://fiddler.ai
|
|
6
6
|
Author: Fiddler Labs
|
|
@@ -20,6 +20,7 @@ Requires-Dist: tqdm
|
|
|
20
20
|
Requires-Dist: simplejson >=3.17.0
|
|
21
21
|
Requires-Dist: pyarrow >=7.0.0
|
|
22
22
|
Requires-Dist: pyyaml
|
|
23
|
+
Requires-Dist: typing-extensions <=4.5.0
|
|
23
24
|
|
|
24
25
|
Fiddler Client
|
|
25
26
|
=============
|
|
@@ -42,11 +43,22 @@ Documentation for the API can be found [here](https://docs.fiddler.ai/reference/
|
|
|
42
43
|
|
|
43
44
|
Version History
|
|
44
45
|
-------------
|
|
46
|
+
### 2.5.2
|
|
47
|
+
- #### **Modifications**
|
|
48
|
+
- Fix pydantic issue with typing-extensions versions > 4.5.0
|
|
49
|
+
### 2.5.1
|
|
50
|
+
- #### **New Features**
|
|
51
|
+
- Support tf_idf vectors in `TextEmbedding` type column definition
|
|
45
52
|
### 2.5.0
|
|
46
53
|
- #### **New Features**
|
|
47
54
|
- Add support for enrichments
|
|
48
55
|
- Allow pausing multiple alerts at once
|
|
49
56
|
- Add percentage violation metrics for alert
|
|
57
|
+
- Support for alert revisions
|
|
58
|
+
|
|
59
|
+
### 2.4.1
|
|
60
|
+
- ### **Modifications**
|
|
61
|
+
- Fix slice query with `vector` type columns
|
|
50
62
|
|
|
51
63
|
### 2.4.0
|
|
52
64
|
- ### **New Features**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
fiddler/__init__.py,sha256=D3soQu7i4pVdlmtuJDjlSwil0jSfusWl9DbpD33oo3k,2018
|
|
2
|
-
fiddler/_version.py,sha256=
|
|
2
|
+
fiddler/_version.py,sha256=oukrMRg4qf30lNM--mUg2zK6vf4JRY5dYH62lGgTBRM,22
|
|
3
3
|
fiddler/constants.py,sha256=kXJX771B9UoQKh-umPnPfDXGeCRdC8TmTAi40hSK0Cs,1886
|
|
4
4
|
fiddler/core_objects.py,sha256=ERxyRFTaw1Lhf2q2p_8sQMohwy5U9SGppHmSkRGqTBs,117468
|
|
5
5
|
fiddler/exceptions.py,sha256=uC7EhNRmlndYxPvlyHOKQUNTRpe-J8HNulytU_NLmn0,2585
|
|
@@ -44,14 +44,14 @@ fiddler/schema/server_info.py,sha256=33tY0ohiSJJNpoeyanUCNZy-sexQwoLRdr2XQrUmNEE
|
|
|
44
44
|
fiddler/schema/user.py,sha256=8p4r2ZMqPEggggd10l62w_7A5KsRr6Se5QP-xfrEtks,109
|
|
45
45
|
fiddler/schema/webhook.py,sha256=zDYGEgsAYd8NYMDhVOpK74t7dC6VieAvHmSoeadS_Ks,219
|
|
46
46
|
fiddler/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
fiddler/schemas/custom_features.py,sha256=
|
|
47
|
+
fiddler/schemas/custom_features.py,sha256=JSw3BVEFjMfNjmY9E4lrbq5Lp_GLH8REauKJmFYJuZg,4696
|
|
48
48
|
fiddler/utils/__init__.py,sha256=DEH6Z0Y4sawrzgpCHYuHfeGfYihxxjDC_z5ZhpICHjg,4622
|
|
49
49
|
fiddler/utils/decorators.py,sha256=jp7oGBgcWpcxfs5O36zHR-urJdtqjLo4hA-5XxR8fIs,3681
|
|
50
50
|
fiddler/utils/formatting.py,sha256=vXldw_Qtcvk22Yv4c2FkROHrkniWNog55dG1DoaIs4Q,1379
|
|
51
51
|
fiddler/utils/general_checks.py,sha256=-iXe8nqTlGBDeGvK6lU0sulBTXXLqLCdHlYpAuiACYY,3265
|
|
52
52
|
fiddler/utils/helpers.py,sha256=FTC6NUi736OGjtrv7MyjhNScktiipwCTlLuBD0_7t9w,2568
|
|
53
53
|
fiddler/utils/logger.py,sha256=gkFIUa3kGslsZ33oNxc8_PQ5L4z1jyJI4ygG4kbpuVE,189
|
|
54
|
-
fiddler/utils/pandas_helper.py,sha256=
|
|
54
|
+
fiddler/utils/pandas_helper.py,sha256=LcDDz0pQ6LcywiqVOtaZkEZ4FvAqzU4ZYp0lZubdF1w,5274
|
|
55
55
|
fiddler/utils/response_handler.py,sha256=FAtnMQGu5oP24W2gYo4IjRvguVE9q4AFdnJf4L18sEI,1870
|
|
56
56
|
fiddler/utils/semver_version.py,sha256=vnJrQ39zqdiddoBQSsb-w92pooed2hf2SLN9xsct6mA,16835
|
|
57
57
|
fiddler/utils/validations.py,sha256=fT8Sl9wPuJHONi2CsY8pgLCISfigVcaUXwhbtm_KuX0,362
|
|
@@ -182,8 +182,8 @@ tests/fiddler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
182
182
|
tests/fiddler/utils/test_general_checks.py,sha256=kxG8n4UdBWXBGchA0SvV7o4t28a7YAc8viorEBpzzcE,1451
|
|
183
183
|
tests/fiddler/utils/test_pandas.py,sha256=7VBh8yJZMVE1bSaUYH0T_qwXpcwXgJ5rI1nL3vGRwjY,8781
|
|
184
184
|
tests/fiddler/utils/tests_utils.py,sha256=kPmMoOlaSIWw6Gk7QnAnn8QJvEyqtd2Rz32kS6RGEc8,1800
|
|
185
|
-
fiddler_client-2.5.
|
|
186
|
-
fiddler_client-2.5.
|
|
187
|
-
fiddler_client-2.5.
|
|
188
|
-
fiddler_client-2.5.
|
|
189
|
-
fiddler_client-2.5.
|
|
185
|
+
fiddler_client-2.5.2.dist-info/LICENSE.txt,sha256=w8-LUAb_VLBWSsCNmih0pAqLIicJfGu8OJXpDjkIg_o,559
|
|
186
|
+
fiddler_client-2.5.2.dist-info/METADATA,sha256=JY7KBfdRX93nOcP4c1tKgKsslAHOnqyCMRmyYcyrwqk,20923
|
|
187
|
+
fiddler_client-2.5.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
188
|
+
fiddler_client-2.5.2.dist-info/top_level.txt,sha256=d227cAlPARL7zNFhltLEb5Q-04mfc1CJM5-TBDZShlQ,23
|
|
189
|
+
fiddler_client-2.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|