batch-analytics 0.3.21__tar.gz → 0.3.222__tar.gz
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.
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/PKG-INFO +3 -1
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/pyproject.toml +3 -1
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/gluon_autogluon_train.py +7 -2
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/PKG-INFO +3 -1
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/requires.txt +2 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/README.md +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/setup.cfg +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/__init__.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/__main__.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/__init__.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/correlation.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/gluon_autogluon_infer.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/linear_regression.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/pca_clustering.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/t_test.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/config.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/extract.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/job_runner.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/log.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/modules.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/output/__init__.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/output/base.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/output/clickhouse.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/output/local.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/output/s3.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/transform.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/utils/__init__.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/utils/gluon_autogluon_common.py +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/SOURCES.txt +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/dependency_links.txt +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/entry_points.txt +0 -0
- {batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batch-analytics
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.222
|
|
4
4
|
Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
|
|
5
5
|
Author: Litewave Analytics Team
|
|
6
6
|
License: MIT
|
|
@@ -25,6 +25,7 @@ Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra ==
|
|
|
25
25
|
Requires-Dist: clickhouse-connect>=0.7; python_version >= "3.9" and extra == "output"
|
|
26
26
|
Provides-Extra: autogluon
|
|
27
27
|
Requires-Dist: autogluon-tabular[lightgbm]<2.0,>=1.0; extra == "autogluon"
|
|
28
|
+
Requires-Dist: typing-extensions>=4.8.0; extra == "autogluon"
|
|
28
29
|
Requires-Dist: pandas>=1.3.0; extra == "autogluon"
|
|
29
30
|
Requires-Dist: boto3>=1.28; extra == "autogluon"
|
|
30
31
|
Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra == "autogluon"
|
|
@@ -37,6 +38,7 @@ Requires-Dist: boto3>=1.28; extra == "full"
|
|
|
37
38
|
Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra == "full"
|
|
38
39
|
Requires-Dist: clickhouse-connect>=0.7; python_version >= "3.9" and extra == "full"
|
|
39
40
|
Requires-Dist: autogluon-tabular[lightgbm]<2.0,>=1.0; extra == "full"
|
|
41
|
+
Requires-Dist: typing-extensions>=4.8.0; extra == "full"
|
|
40
42
|
Requires-Dist: pyarrow>=10.0.0; python_version >= "3.8" and extra == "full"
|
|
41
43
|
|
|
42
44
|
# Batch Analytics
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "batch-analytics"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.222"
|
|
8
8
|
description = "PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -34,6 +34,7 @@ output = [
|
|
|
34
34
|
# autogluon-tabular[lightgbm]: tabular AutoML with LightGBM only (no PyTorch from full autogluon metapackage)
|
|
35
35
|
autogluon = [
|
|
36
36
|
"autogluon-tabular[lightgbm]>=1.0,<2.0",
|
|
37
|
+
"typing-extensions>=4.8.0",
|
|
37
38
|
"pandas>=1.3.0",
|
|
38
39
|
"boto3>=1.28",
|
|
39
40
|
"clickhouse-connect>=0.7,<0.9; python_version < '3.9'",
|
|
@@ -47,6 +48,7 @@ full = [
|
|
|
47
48
|
"clickhouse-connect>=0.7,<0.9; python_version < '3.9'",
|
|
48
49
|
"clickhouse-connect>=0.7; python_version >= '3.9'",
|
|
49
50
|
"autogluon-tabular[lightgbm]>=1.0,<2.0",
|
|
51
|
+
"typing-extensions>=4.8.0",
|
|
50
52
|
"pyarrow>=10.0.0; python_version >= '3.8'",
|
|
51
53
|
]
|
|
52
54
|
|
|
@@ -97,8 +97,13 @@ def main() -> None:
|
|
|
97
97
|
|
|
98
98
|
try:
|
|
99
99
|
from autogluon.tabular import TabularPredictor
|
|
100
|
-
except ImportError:
|
|
101
|
-
|
|
100
|
+
except ImportError as e:
|
|
101
|
+
if isinstance(e, ModuleNotFoundError) and e.name == "typing_extensions":
|
|
102
|
+
logger.exception(
|
|
103
|
+
"Install typing-extensions (required by AutoGluon): pip install 'typing-extensions>=4.8'"
|
|
104
|
+
)
|
|
105
|
+
else:
|
|
106
|
+
logger.exception("autogluon is not installed; use pip install 'batch-analytics[autogluon]'")
|
|
102
107
|
sys.exit(4)
|
|
103
108
|
|
|
104
109
|
problem_type = os.environ.get("AUTOGLUON_PROBLEM_TYPE", "binary").strip() or "binary"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batch-analytics
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.222
|
|
4
4
|
Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
|
|
5
5
|
Author: Litewave Analytics Team
|
|
6
6
|
License: MIT
|
|
@@ -25,6 +25,7 @@ Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra ==
|
|
|
25
25
|
Requires-Dist: clickhouse-connect>=0.7; python_version >= "3.9" and extra == "output"
|
|
26
26
|
Provides-Extra: autogluon
|
|
27
27
|
Requires-Dist: autogluon-tabular[lightgbm]<2.0,>=1.0; extra == "autogluon"
|
|
28
|
+
Requires-Dist: typing-extensions>=4.8.0; extra == "autogluon"
|
|
28
29
|
Requires-Dist: pandas>=1.3.0; extra == "autogluon"
|
|
29
30
|
Requires-Dist: boto3>=1.28; extra == "autogluon"
|
|
30
31
|
Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra == "autogluon"
|
|
@@ -37,6 +38,7 @@ Requires-Dist: boto3>=1.28; extra == "full"
|
|
|
37
38
|
Requires-Dist: clickhouse-connect<0.9,>=0.7; python_version < "3.9" and extra == "full"
|
|
38
39
|
Requires-Dist: clickhouse-connect>=0.7; python_version >= "3.9" and extra == "full"
|
|
39
40
|
Requires-Dist: autogluon-tabular[lightgbm]<2.0,>=1.0; extra == "full"
|
|
41
|
+
Requires-Dist: typing-extensions>=4.8.0; extra == "full"
|
|
40
42
|
Requires-Dist: pyarrow>=10.0.0; python_version >= "3.8" and extra == "full"
|
|
41
43
|
|
|
42
44
|
# Batch Analytics
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/requires.txt
RENAMED
|
@@ -2,6 +2,7 @@ numpy>=1.19.0
|
|
|
2
2
|
|
|
3
3
|
[autogluon]
|
|
4
4
|
autogluon-tabular[lightgbm]<2.0,>=1.0
|
|
5
|
+
typing-extensions>=4.8.0
|
|
5
6
|
pandas>=1.3.0
|
|
6
7
|
boto3>=1.28
|
|
7
8
|
|
|
@@ -30,6 +31,7 @@ pyspark<3.6,>=3.4
|
|
|
30
31
|
scipy>=1.5.0
|
|
31
32
|
boto3>=1.28
|
|
32
33
|
autogluon-tabular[lightgbm]<2.0,>=1.0
|
|
34
|
+
typing-extensions>=4.8.0
|
|
33
35
|
|
|
34
36
|
[full:python_version < "3.9"]
|
|
35
37
|
clickhouse-connect<0.9,>=0.7
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/__init__.py
RENAMED
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/correlation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics/analytics/pca_clustering.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{batch_analytics-0.3.21 → batch_analytics-0.3.222}/src/batch_analytics.egg-info/top_level.txt
RENAMED
|
File without changes
|