gitlabds 2.1.2__tar.gz → 2.1.3__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.
- {gitlabds-2.1.2 → gitlabds-2.1.3}/PKG-INFO +9 -9
- {gitlabds-2.1.2 → gitlabds-2.1.3}/README.md +8 -8
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds.egg-info/PKG-INFO +9 -9
- gitlabds-2.1.3/gitlabds.egg-info/requires.txt +8 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/setup.py +1 -1
- gitlabds-2.1.2/gitlabds.egg-info/requires.txt +0 -8
- {gitlabds-2.1.2 → gitlabds-2.1.3}/LICENSE +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/__init__.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/baselines.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/config_generator.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/dummy.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/feature_reduction.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/insights.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/memory_optimization.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/missing.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/missing_check.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/missing_fill.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/model_evaluator.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/monitoring_metrics.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/outliers.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/split_data.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds/trends.py +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds.egg-info/SOURCES.txt +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds.egg-info/dependency_links.txt +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/gitlabds.egg-info/top_level.txt +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/setup.cfg +0 -0
- {gitlabds-2.1.2 → gitlabds-2.1.3}/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gitlabds
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: Gitlab Data Science and Modeling Tools
|
|
5
5
|
Home-page: https://gitlab.com/gitlab-data/gitlabds
|
|
6
6
|
Author: Kevin Dietz
|
|
@@ -37,14 +37,14 @@ pip install gitlabds
|
|
|
37
37
|
|
|
38
38
|
- Python 3.10 or later
|
|
39
39
|
- Core dependencies:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
40
|
+
- pandas>=1.5.3
|
|
41
|
+
- numpy>=1.23.5
|
|
42
|
+
- scipy>=1.13.1
|
|
43
|
+
- scikit-learn>=1.1.1
|
|
44
|
+
- imbalanced-learn>=0.9.1
|
|
45
|
+
- seaborn>=0.13.2
|
|
46
|
+
- shap>=0.41.0
|
|
47
|
+
- tqdm>=4.66.2
|
|
48
48
|
|
|
49
49
|
## Main Features by Category
|
|
50
50
|
|
|
@@ -17,14 +17,14 @@ pip install gitlabds
|
|
|
17
17
|
|
|
18
18
|
- Python 3.10 or later
|
|
19
19
|
- Core dependencies:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
- pandas>=1.5.3
|
|
21
|
+
- numpy>=1.23.5
|
|
22
|
+
- scipy>=1.13.1
|
|
23
|
+
- scikit-learn>=1.1.1
|
|
24
|
+
- imbalanced-learn>=0.9.1
|
|
25
|
+
- seaborn>=0.13.2
|
|
26
|
+
- shap>=0.41.0
|
|
27
|
+
- tqdm>=4.66.2
|
|
28
28
|
|
|
29
29
|
## Main Features by Category
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gitlabds
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: Gitlab Data Science and Modeling Tools
|
|
5
5
|
Home-page: https://gitlab.com/gitlab-data/gitlabds
|
|
6
6
|
Author: Kevin Dietz
|
|
@@ -37,14 +37,14 @@ pip install gitlabds
|
|
|
37
37
|
|
|
38
38
|
- Python 3.10 or later
|
|
39
39
|
- Core dependencies:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
40
|
+
- pandas>=1.5.3
|
|
41
|
+
- numpy>=1.23.5
|
|
42
|
+
- scipy>=1.13.1
|
|
43
|
+
- scikit-learn>=1.1.1
|
|
44
|
+
- imbalanced-learn>=0.9.1
|
|
45
|
+
- seaborn>=0.13.2
|
|
46
|
+
- shap>=0.41.0
|
|
47
|
+
- tqdm>=4.66.2
|
|
48
48
|
|
|
49
49
|
## Main Features by Category
|
|
50
50
|
|
|
@@ -8,7 +8,7 @@ elif os.environ.get('CI_JOB_ID'):
|
|
|
8
8
|
else:
|
|
9
9
|
version = "0.0.0-dev"
|
|
10
10
|
|
|
11
|
-
requires = ["pandas>=
|
|
11
|
+
requires = ["pandas>=1.5.3", "numpy>=1.23.5", "scipy>=1.13.1", "scikit-learn>=1.1.1", "imbalanced-learn>=0.9.1", "seaborn>=0.13.2", "shap>=0.41.0", "tqdm>=4.66.2"]
|
|
12
12
|
|
|
13
13
|
# read the contents of README file
|
|
14
14
|
this_directory = Path(__file__).parent
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|