upgini 1.1.291a3232.post4__py3-none-any.whl → 1.1.293__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 upgini might be problematic. Click here for more details.
- upgini/__about__.py +1 -1
- upgini/__init__.py +6 -20
- upgini/data_source/data_source_publisher.py +26 -0
- upgini/http.py +5 -0
- upgini/lazy_import.py +22 -0
- {upgini-1.1.291a3232.post4.dist-info → upgini-1.1.293.dist-info}/METADATA +1 -1
- {upgini-1.1.291a3232.post4.dist-info → upgini-1.1.293.dist-info}/RECORD +9 -8
- {upgini-1.1.291a3232.post4.dist-info → upgini-1.1.293.dist-info}/WHEEL +0 -0
- {upgini-1.1.291a3232.post4.dist-info → upgini-1.1.293.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.1.
|
|
1
|
+
__version__ = "1.1.293"
|
upgini/__init__.py
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
|
-
from
|
|
1
|
+
from .lazy_import import LazyImport
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
ModelTaskType,
|
|
9
|
-
SearchKey,
|
|
10
|
-
)
|
|
11
|
-
from .search_task import SearchTask
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
def search_history() -> List[SearchTask]:
|
|
15
|
-
# TODO
|
|
16
|
-
return []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
def datasets_history() -> List[Dataset]:
|
|
20
|
-
# TODO
|
|
21
|
-
return []
|
|
3
|
+
FeaturesEnricher = LazyImport('upgini.features_enricher', 'FeaturesEnricher')
|
|
4
|
+
SearchKey = LazyImport('upgini.metadata', 'SearchKey')
|
|
5
|
+
RuntimeParameters = LazyImport('upgini.metadata', 'RuntimeParameters')
|
|
6
|
+
CVType = LazyImport('upgini.metadata', 'CVType')
|
|
7
|
+
ModelTaskType = LazyImport('upgini.metadata', 'ModelTaskType')
|
|
@@ -347,3 +347,29 @@ class DataSourcePublisher:
|
|
|
347
347
|
self.upload_online(search_keys=keys)
|
|
348
348
|
|
|
349
349
|
print("All ADS-es successfully uploaded")
|
|
350
|
+
|
|
351
|
+
def union_search_tasks(
|
|
352
|
+
self,
|
|
353
|
+
search_ids: List[str],
|
|
354
|
+
target_user_email: str,
|
|
355
|
+
selected_features: Optional[List[str]] = None,
|
|
356
|
+
exclude_features: Optional[List[str]] = None,
|
|
357
|
+
) -> str:
|
|
358
|
+
if not search_ids:
|
|
359
|
+
raise Exception("Empty search ids list")
|
|
360
|
+
|
|
361
|
+
if not target_user_email:
|
|
362
|
+
raise Exception("Empty target user email")
|
|
363
|
+
|
|
364
|
+
request = {
|
|
365
|
+
"search_task_ids": search_ids,
|
|
366
|
+
"target_user_email": target_user_email,
|
|
367
|
+
}
|
|
368
|
+
if selected_features:
|
|
369
|
+
request["selected_features"] = selected_features
|
|
370
|
+
if exclude_features:
|
|
371
|
+
request["exclude_features"] = exclude_features
|
|
372
|
+
|
|
373
|
+
response = self._rest_client.union_search_tasks(request, "trace_id")
|
|
374
|
+
print(response)
|
|
375
|
+
return response
|
upgini/http.py
CHANGED
|
@@ -291,6 +291,7 @@ class _RestClient:
|
|
|
291
291
|
GET_ACTIVE_ADS_DEFINITIONS_URI = "private/api/v2/ads/definitions"
|
|
292
292
|
UPLOAD_ONLINE_URI = "private/api/v2/ads/upload-online"
|
|
293
293
|
STOP_ADS_MANAGEMENT_TASK_URI_FMT = "private/api/v2/ads/management-task/{0}/stop"
|
|
294
|
+
UNION_SEARCH_TASKS_URI_FMT = SERVICE_ROOT_V2 + "search/merge"
|
|
294
295
|
|
|
295
296
|
ACCESS_TOKEN_HEADER_NAME = "Authorization"
|
|
296
297
|
CONTENT_TYPE_HEADER_NAME = "Content-Type"
|
|
@@ -760,6 +761,10 @@ class _RestClient:
|
|
|
760
761
|
api_path = self.STOP_ADS_MANAGEMENT_TASK_URI_FMT.format(ads_management_task_id)
|
|
761
762
|
self._with_unauth_retry(lambda: self._send_post_req(api_path, trace_id))
|
|
762
763
|
|
|
764
|
+
def union_search_tasks(self, request: dict, trace_id: str):
|
|
765
|
+
api_path = self.UNION_SEARCH_TASKS_URI_FMT
|
|
766
|
+
return self._with_unauth_retry(lambda: self._send_post_req(api_path, trace_id, request, result_format=None))
|
|
767
|
+
|
|
763
768
|
# ---
|
|
764
769
|
|
|
765
770
|
def _send_get_req(self, api_path: str, trace_id: Optional[str], additional_headers: Optional[dict] = None):
|
upgini/lazy_import.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import importlib
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class LazyImport:
|
|
5
|
+
def __init__(self, module_name, class_name):
|
|
6
|
+
self.module_name = module_name
|
|
7
|
+
self.class_name = class_name
|
|
8
|
+
self._module = None
|
|
9
|
+
self._class = None
|
|
10
|
+
|
|
11
|
+
def _load(self):
|
|
12
|
+
if self._module is None:
|
|
13
|
+
self._module = importlib.import_module(self.module_name)
|
|
14
|
+
self._class = getattr(self._module, self.class_name)
|
|
15
|
+
|
|
16
|
+
def __call__(self, *args, **kwargs):
|
|
17
|
+
self._load()
|
|
18
|
+
return self._class(*args, **kwargs)
|
|
19
|
+
|
|
20
|
+
def __getattr__(self, name):
|
|
21
|
+
self._load()
|
|
22
|
+
return getattr(self._class, name)
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
upgini/__about__.py,sha256=
|
|
2
|
-
upgini/__init__.py,sha256=
|
|
1
|
+
upgini/__about__.py,sha256=qZMAUJW6Js0WNRcvGFbeSyGFbiVxGPjSbHngvQV4JrY,24
|
|
2
|
+
upgini/__init__.py,sha256=ObEtjFkIssl83qeKNMLpIQygfwK8TzztwiI43YTsAP0,353
|
|
3
3
|
upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
|
|
4
4
|
upgini/dataset.py,sha256=7TLVVhGtjgx_9yaiaIUK3kZSe_R9wg5dY0d4F5qCGM4,45636
|
|
5
5
|
upgini/errors.py,sha256=2b_Wbo0OYhLUbrZqdLIx5jBnAsiD1Mcenh-VjR4HCTw,950
|
|
6
6
|
upgini/features_enricher.py,sha256=Bfqbzqj3h1Ox3s6hBA4UYXkG7hQDqGPB4JK1YXtxXxw,177530
|
|
7
|
-
upgini/http.py,sha256=
|
|
7
|
+
upgini/http.py,sha256=bp6jWl422Icy3AhHMdCcJv5NjExE45gSMmzMTPJjPuk,42600
|
|
8
|
+
upgini/lazy_import.py,sha256=EwoM0msNGbSmWBhGbrLDny1DSnOlvTxCjmMKPxYlDms,610
|
|
8
9
|
upgini/metadata.py,sha256=qDAIO7NLSSQp_XiXCv3U4XJTLO0KH3YuQ8lvCLYPqzs,9781
|
|
9
10
|
upgini/metrics.py,sha256=DLvA2YLV4f7lnzBCcfZ5T4NkqAv3pbstbjTepavuT7U,30688
|
|
10
11
|
upgini/search_task.py,sha256=LtRJ9bCPjMo1gJ-sUDKERhDwGcWKImrzwVFHjkMSQHQ,17071
|
|
@@ -22,7 +23,7 @@ upgini/autofe/operand.py,sha256=MKEsl3zxpWzRDpTkE0sNJxTu62U20sWOvEKhPjUWS6s,2915
|
|
|
22
23
|
upgini/autofe/unary.py,sha256=ZWjLd-CUkNt_PpM8YuWLLipW1v_RdBlsl4JxXIVo9aM,3652
|
|
23
24
|
upgini/autofe/vector.py,sha256=dLxfAstJs-gw_OQ1xxoxcM6pVzORlV0HVzdzt7cLXVQ,606
|
|
24
25
|
upgini/data_source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
upgini/data_source/data_source_publisher.py,sha256=
|
|
26
|
+
upgini/data_source/data_source_publisher.py,sha256=2BCFcglyZC1T5WYerqd_GGC6dg22o2Mh-ce53wOIOjQ,17465
|
|
26
27
|
upgini/mdc/__init__.py,sha256=aM08nIWFc2gWdWUa3_IuEnNND0cQPkBGnYpRMnfFN8k,1019
|
|
27
28
|
upgini/mdc/context.py,sha256=3u1B-jXt7tXEvNcV3qmR9SDCseudnY7KYsLclBdwVLk,1405
|
|
28
29
|
upgini/normalizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -56,7 +57,7 @@ upgini/utils/sklearn_ext.py,sha256=13jQS_k7v0aUtudXV6nGUEWjttPQzAW9AFYL5wgEz9k,4
|
|
|
56
57
|
upgini/utils/target_utils.py,sha256=Y96_PJ5cC-WsEbeqg20v9uqywDQobLoTb-xoP7S3o4E,7807
|
|
57
58
|
upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
|
|
58
59
|
upgini/utils/warning_counter.py,sha256=dIWBB4dI5XRRJZudvIlqlIYKEiwLLPcXarsZuYRt338,227
|
|
59
|
-
upgini-1.1.
|
|
60
|
-
upgini-1.1.
|
|
61
|
-
upgini-1.1.
|
|
62
|
-
upgini-1.1.
|
|
60
|
+
upgini-1.1.293.dist-info/METADATA,sha256=xxqpODSdTGvAAXew_U-IjsfNzYFALrNqOS2BK81cgy8,48117
|
|
61
|
+
upgini-1.1.293.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
62
|
+
upgini-1.1.293.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
|
63
|
+
upgini-1.1.293.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|