linearrf 1.2.3__tar.gz → 1.2.4__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.
- {linearrf-1.2.3/src/linearrf.egg-info → linearrf-1.2.4}/PKG-INFO +1 -1
- {linearrf-1.2.3 → linearrf-1.2.4}/pyproject.toml +1 -1
- {linearrf-1.2.3 → linearrf-1.2.4/src/linearrf.egg-info}/PKG-INFO +1 -1
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/lrf.py +2 -1
- {linearrf-1.2.3 → linearrf-1.2.4}/LICENSE.md +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/MANIFEST.in +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/README.md +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/setup.cfg +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/linearrf.egg-info/SOURCES.txt +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/linearrf.egg-info/dependency_links.txt +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/linearrf.egg-info/requires.txt +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/linearrf.egg-info/top_level.txt +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/__init__.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_base_lrf.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_criterion.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_irls.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_linear_models.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_node.py +0 -0
- {linearrf-1.2.3 → linearrf-1.2.4}/src/lrf/_preprocessor.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: linearrf
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: A python libary to build Random Forests with Linear Models at the leaves.
|
|
5
5
|
Author-email: Marian Biermann <marianbiermann@gmx.de>
|
|
6
6
|
Project-URL: homepage, https://github.com/marianbiermann/lrf
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "linearrf"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.4"
|
|
8
8
|
description = "A python libary to build Random Forests with Linear Models at the leaves."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "Marian Biermann", email = "marianbiermann@gmx.de" }]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: linearrf
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: A python libary to build Random Forests with Linear Models at the leaves.
|
|
5
5
|
Author-email: Marian Biermann <marianbiermann@gmx.de>
|
|
6
6
|
Project-URL: homepage, https://github.com/marianbiermann/lrf
|
|
@@ -163,7 +163,8 @@ class LRFClassifier(_LinearRandomForest):
|
|
|
163
163
|
x = x.to_numpy()
|
|
164
164
|
|
|
165
165
|
# add intercept here and not inside linear model for performance reasons
|
|
166
|
-
|
|
166
|
+
if self.linear_model is None:
|
|
167
|
+
x = np.insert(x, 0, 1, axis=1)
|
|
167
168
|
|
|
168
169
|
# add columns with row index for sorting after multiprocessing
|
|
169
170
|
x = np.insert(x, 0, np.arange(x.shape[0]), axis=1)
|
|
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
|