upgini 1.1.292__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/lazy_import.py +22 -0
- {upgini-1.1.292.dist-info → upgini-1.1.293.dist-info}/METADATA +1 -1
- {upgini-1.1.292.dist-info → upgini-1.1.293.dist-info}/RECORD +7 -6
- {upgini-1.1.292.dist-info → upgini-1.1.293.dist-info}/WHEEL +0 -0
- {upgini-1.1.292.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')
|
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
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
|
|
@@ -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
|