upgini 1.2.103a4__py3-none-any.whl → 1.2.103a6__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/autofe/vector.py +8 -0
- {upgini-1.2.103a4.dist-info → upgini-1.2.103a6.dist-info}/METADATA +1 -1
- {upgini-1.2.103a4.dist-info → upgini-1.2.103a6.dist-info}/RECORD +6 -6
- {upgini-1.2.103a4.dist-info → upgini-1.2.103a6.dist-info}/WHEEL +0 -0
- {upgini-1.2.103a4.dist-info → upgini-1.2.103a6.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.2.
|
1
|
+
__version__ = "1.2.103a6"
|
upgini/autofe/vector.py
CHANGED
@@ -44,9 +44,13 @@ class OnnxModel(PandasOperator, ParametrizedOperator, metaclass=OperatorRegistry
|
|
44
44
|
|
45
45
|
@classmethod
|
46
46
|
def from_formula(cls, formula: str) -> Optional["OnnxModel"]:
|
47
|
+
if "(" in formula:
|
48
|
+
return None
|
47
49
|
if formula.startswith("onnx_"):
|
48
50
|
score_name = formula[len("onnx_"):]
|
49
51
|
return cls(score_name=score_name)
|
52
|
+
elif formula == "onnx": # for OperatorRegistry
|
53
|
+
return cls()
|
50
54
|
return None
|
51
55
|
|
52
56
|
|
@@ -61,7 +65,11 @@ class CatboostModel(PandasOperator, ParametrizedOperator, metaclass=OperatorRegi
|
|
61
65
|
|
62
66
|
@classmethod
|
63
67
|
def from_formula(cls, formula: str) -> Optional["CatboostModel"]:
|
68
|
+
if "(" in formula:
|
69
|
+
return None
|
64
70
|
if formula.startswith("catboost_"):
|
65
71
|
score_name = formula[len("catboost_"):]
|
66
72
|
return cls(score_name=score_name)
|
73
|
+
elif formula == "catboost": # for OperatorRegistry
|
74
|
+
return cls()
|
67
75
|
return None
|
@@ -1,4 +1,4 @@
|
|
1
|
-
upgini/__about__.py,sha256=
|
1
|
+
upgini/__about__.py,sha256=YINSZx_dtM8hJaZdUvfPJhPcgsRxL7sluGJryc6JviA,26
|
2
2
|
upgini/__init__.py,sha256=LXSfTNU0HnlOkE69VCxkgIKDhWP-JFo_eBQ71OxTr5Y,261
|
3
3
|
upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
|
4
4
|
upgini/dataset.py,sha256=e6JDYTZ2AwC5aF-dqclKZKkiKrHo2f6cFmMQO2ZZmjM,32724
|
@@ -21,7 +21,7 @@ upgini/autofe/groupby.py,sha256=IYmQV9uoCdRcpkeWZj_kI3ObzoNCNx3ff3h8sTL01tk,3603
|
|
21
21
|
upgini/autofe/operator.py,sha256=RB3rKMjFi5Cx81RiYXN3OTCuXjmvzmFKQrxn4h0Oclo,5219
|
22
22
|
upgini/autofe/unary.py,sha256=FFtvkQaT0cu_zPZ1jCLcsjik-UUh12qQFF3tUW8NqsE,6675
|
23
23
|
upgini/autofe/utils.py,sha256=dYrtyAM8Vcc_R8u4dNo54IsGrHKagTHDJTKhGho0bRg,2967
|
24
|
-
upgini/autofe/vector.py,sha256=
|
24
|
+
upgini/autofe/vector.py,sha256=r5H6DKT5f3KNjERpV2OOloZ96nDWkModXnpsqw_A77Q,2313
|
25
25
|
upgini/autofe/timeseries/__init__.py,sha256=PGwwDAMwvkXl3el12tXVEmZUgDUvlmIPlXtROm6bD18,738
|
26
26
|
upgini/autofe/timeseries/base.py,sha256=rWJqRuFAzTZEsUdWG5s1Vhif9zzRRmalASXvarufRxI,3610
|
27
27
|
upgini/autofe/timeseries/cross.py,sha256=BTINVwuZSbm_4NKkVm0FGM68SrvZLENZKXN7-UyvhYI,5319
|
@@ -71,7 +71,7 @@ upgini/utils/target_utils.py,sha256=i3Xt5l9ybB2_nF_ma5cfPuL3OeFTs2dY2xDI0p4Azpg,
|
|
71
71
|
upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
|
72
72
|
upgini/utils/ts_utils.py,sha256=26vhC0pN7vLXK6R09EEkMK3Lwb9IVPH7LRdqFIQ3kPs,1383
|
73
73
|
upgini/utils/warning_counter.py,sha256=-GRY8EUggEBKODPSuXAkHn9KnEQwAORC0mmz_tim-PM,254
|
74
|
-
upgini-1.2.
|
75
|
-
upgini-1.2.
|
76
|
-
upgini-1.2.
|
77
|
-
upgini-1.2.
|
74
|
+
upgini-1.2.103a6.dist-info/METADATA,sha256=HXXbQMsui50iMdVHRGQKUs7xoi_rXVQFFYwLxsG1YAQ,49531
|
75
|
+
upgini-1.2.103a6.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
76
|
+
upgini-1.2.103a6.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
77
|
+
upgini-1.2.103a6.dist-info/RECORD,,
|
File without changes
|
File without changes
|