aplr 10.16.0__cp310-cp310-macosx_11_0_arm64.whl → 10.17.1__cp310-cp310-macosx_11_0_arm64.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 aplr might be problematic. Click here for more details.

aplr/aplr.py CHANGED
@@ -76,6 +76,7 @@ class APLRRegressor:
76
76
  max_terms: int = 0,
77
77
  ridge_penalty: float = 0.0001,
78
78
  mean_bias_correction: bool = False,
79
+ faster_convergence: bool = False,
79
80
  ):
80
81
  self.m = m
81
82
  self.v = v
@@ -124,6 +125,7 @@ class APLRRegressor:
124
125
  self.max_terms = max_terms
125
126
  self.ridge_penalty = ridge_penalty
126
127
  self.mean_bias_correction = mean_bias_correction
128
+ self.faster_convergence = faster_convergence
127
129
 
128
130
  # Creating aplr_cpp and setting parameters
129
131
  self.APLRRegressor = aplr_cpp.APLRRegressor()
@@ -186,6 +188,7 @@ class APLRRegressor:
186
188
  self.APLRRegressor.max_terms = self.max_terms
187
189
  self.APLRRegressor.ridge_penalty = self.ridge_penalty
188
190
  self.APLRRegressor.mean_bias_correction = self.mean_bias_correction
191
+ self.APLRRegressor.faster_convergence = self.faster_convergence
189
192
 
190
193
  def fit(
191
194
  self,
@@ -469,6 +472,7 @@ class APLRRegressor:
469
472
  "max_terms": self.max_terms,
470
473
  "ridge_penalty": self.ridge_penalty,
471
474
  "mean_bias_correction": self.mean_bias_correction,
475
+ "faster_convergence": self.faster_convergence,
472
476
  }
473
477
 
474
478
  # For sklearn
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aplr
3
- Version: 10.16.0
3
+ Version: 10.17.1
4
4
  Summary: Automatic Piecewise Linear Regression
5
5
  Home-page: https://github.com/ottenbreit-data-science/aplr
6
6
  Author: Mathias von Ottenbreit
@@ -0,0 +1,8 @@
1
+ aplr_cpp.cpython-310-darwin.so,sha256=ZAnq6UErBbKAGkLF8BVEJtUeu5mrpqnyP7YFTXbv1ZY,1265904
2
+ aplr-10.17.1.dist-info/RECORD,,
3
+ aplr-10.17.1.dist-info/WHEEL,sha256=wyHf6UDzyHyUK-aDYscyyyExpYI7SeEZ9xjyEiU4cnw,109
4
+ aplr-10.17.1.dist-info/top_level.txt,sha256=DXVC0RIFGpzVnPeKWAZTXQdJheOEZL51Wip6Fx7zbR4,14
5
+ aplr-10.17.1.dist-info/METADATA,sha256=nc2hAQ6PkDPLtJ5fsdUJZ5Yz3HBmacHln4qE9a7lpjY,2559
6
+ aplr-10.17.1.dist-info/licenses/LICENSE,sha256=g4qcQtkSVPHtGRi3T93DoFCrssvW6ij_emU-2fj_xfY,1113
7
+ aplr/__init__.py,sha256=rRfTgNWnYZlFatyA920lWqBcjwmQUI7FcvEPFUTJgzE,20
8
+ aplr/aplr.py,sha256=obmpNNppOrnzQxhYzShYzNe02lQv17-YRWUklf8IXds,33302
Binary file
@@ -1,8 +0,0 @@
1
- aplr_cpp.cpython-310-darwin.so,sha256=vb-aXfqPgsjaK7L5Pt02nxfdoVM4daXF-s45dfWCx6g,1247792
2
- aplr-10.16.0.dist-info/RECORD,,
3
- aplr-10.16.0.dist-info/WHEEL,sha256=wyHf6UDzyHyUK-aDYscyyyExpYI7SeEZ9xjyEiU4cnw,109
4
- aplr-10.16.0.dist-info/top_level.txt,sha256=DXVC0RIFGpzVnPeKWAZTXQdJheOEZL51Wip6Fx7zbR4,14
5
- aplr-10.16.0.dist-info/METADATA,sha256=Ru7LD3ZOFUjPd7VljsaU2u3Dr9lTeEh14ea-hStDE-U,2559
6
- aplr-10.16.0.dist-info/licenses/LICENSE,sha256=g4qcQtkSVPHtGRi3T93DoFCrssvW6ij_emU-2fj_xfY,1113
7
- aplr/__init__.py,sha256=rRfTgNWnYZlFatyA920lWqBcjwmQUI7FcvEPFUTJgzE,20
8
- aplr/aplr.py,sha256=hGxqgMt6sUBi3P18W0p_Q88qqHsKX7wxpm1iQFw5Rig,33072
File without changes