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 CHANGED
@@ -1 +1 @@
1
- __version__ = "1.1.292"
1
+ __version__ = "1.1.293"
upgini/__init__.py CHANGED
@@ -1,21 +1,7 @@
1
- from typing import List
1
+ from .lazy_import import LazyImport
2
2
 
3
- from .dataset import Dataset
4
- from .features_enricher import FeaturesEnricher # noqa: F401
5
- from .metadata import ( # noqa: F401
6
- FileColumnMeaningType,
7
- FileMetrics,
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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: upgini
3
- Version: 1.1.292
3
+ Version: 1.1.293
4
4
  Summary: Intelligent data search & enrichment for Machine Learning
5
5
  Project-URL: Bug Reports, https://github.com/upgini/upgini/issues
6
6
  Project-URL: Homepage, https://upgini.com/
@@ -1,10 +1,11 @@
1
- upgini/__about__.py,sha256=ftI-AhPhhGVokbUGBIG7BOU1TcKcaEDEyviqLQdHimM,24
2
- upgini/__init__.py,sha256=asENHgEVHQBIkV-e_0IhE_ZWqkCG6398U3ZLrNzAH6k,407
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.292.dist-info/METADATA,sha256=VsA4dkEyCQEUAunLd-p24iOLBHnVFFMMVCb5SisZjck,48117
60
- upgini-1.1.292.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
61
- upgini-1.1.292.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
62
- upgini-1.1.292.dist-info/RECORD,,
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,,