[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-10-22 18:59:33 +00:00
parent 52345d9013
commit 4204bf6d28

View File

@ -1,6 +1,7 @@
import numpy as np
import pandas as pd
class RidgeRegression:
def __init__(
self, alpha: float = 0.001, lambda_: float = 0.1, iterations: int = 1000
@ -14,7 +15,9 @@ class RidgeRegression:
self.alpha = alpha
self.lambda_ = lambda_
self.iterations = iterations
self.theta: np.ndarray | None = None # Initialize as None, later will be ndarray
self.theta: np.ndarray | None = (
None # Initialize as None, later will be ndarray
)
def feature_scaling(
self, features: np.ndarray