chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:30:25 +08:00
commit f19b2512d7
562 changed files with 38082 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
from prml.linear.bayesian_logistic_regression import BayesianLogisticRegression
from prml.linear.bayesian_regression import BayesianRegression
from prml.linear.emprical_bayes_regression import EmpiricalBayesRegression
from prml.linear.least_squares_classifier import LeastSquaresClassifier
from prml.linear.linear_regression import LinearRegression
from prml.linear.fishers_linear_discriminant import FishersLinearDiscriminant
from prml.linear.logistic_regression import LogisticRegression
from prml.linear.perceptron import Perceptron
from prml.linear.ridge_regression import RidgeRegression
from prml.linear.softmax_regression import SoftmaxRegression
from prml.linear.variational_linear_regression import VariationalLinearRegression
from prml.linear.variational_logistic_regression import VariationalLogisticRegression
__all__ = [
"BayesianLogisticRegression",
"BayesianRegression",
"EmpiricalBayesRegression",
"LeastSquaresClassifier",
"LinearRegression",
"FishersLinearDiscriminant",
"LogisticRegression",
"Perceptron",
"RidgeRegression",
"SoftmaxRegression",
"VariationalLinearRegression",
"VariationalLogisticRegression"
]