From d3a4f6417a33e03a85e7c730efc7661dd0e9062f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 28 May 2024 13:48:53 +0200 Subject: [PATCH] Add pending modules to sidebar --- mix.exs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 2fe3db9f..43c6cd29 100644 --- a/mix.exs +++ b/mix.exs @@ -75,6 +75,7 @@ defmodule Scholar.MixProject do Scholar.Interpolation.BezierSpline, Scholar.Interpolation.CubicSpline, Scholar.Interpolation.Linear, + Scholar.Linear.BayesianRidgeRegression, Scholar.Linear.IsotonicRegression, Scholar.Linear.LinearRegression, Scholar.Linear.LogisticRegression, @@ -82,12 +83,15 @@ defmodule Scholar.MixProject do Scholar.Linear.RidgeRegression, Scholar.Linear.SVM, Scholar.Manifold.MDS, + Scholar.Manifold.Trimap, Scholar.Manifold.TSNE, Scholar.NaiveBayes.Complement, Scholar.NaiveBayes.Gaussian, Scholar.NaiveBayes.Multinomial, + Scholar.Neighbors.BruteKNN, Scholar.Neighbors.KDTree, - Scholar.Neighbors.KNearestNeighbors, + Scholar.Neighbors.KNNClassifier, + Scholar.Neighbors.KNNRegressor, Scholar.Neighbors.LargeVis, Scholar.Neighbors.NNDescent, Scholar.Neighbors.RadiusNearestNeighbors, @@ -98,6 +102,7 @@ defmodule Scholar.MixProject do Scholar.Metrics.Classification, Scholar.Metrics.Clustering, Scholar.Metrics.Distance, + Scholar.Metrics.Neighbors, Scholar.Metrics.Ranking, Scholar.Metrics.Regression, Scholar.Metrics.Similarity,