From b279131503c928158de4991aa9ac7c12d6760efd Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 6 Jul 2025 17:43:17 +0100 Subject: [PATCH] Add model modules for linear regression, logistic regression, dense neural network, k-means, PCA, and Gaussian Naive Bayes --- src/compute/models/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/compute/models/mod.rs diff --git a/src/compute/models/mod.rs b/src/compute/models/mod.rs new file mode 100644 index 0000000..c617f08 --- /dev/null +++ b/src/compute/models/mod.rs @@ -0,0 +1,6 @@ +pub mod linreg; +pub mod logreg; +pub mod dense_nn; +pub mod k_means; +pub mod pca; +pub mod gaussian_nb; \ No newline at end of file