You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cluster/kmeans.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
//! these re-calculated centroids becoming the new centers of their respective clusters. Next all instances of the training set are re-assigned to their closest cluster again.
12
12
//! This iterative process continues until convergence is achieved and the clusters are considered settled.
13
13
//!
14
-
//! Initial choice of K data points is very important and has big effect on performance of the algorithm. smartcore uses k-means++ algorithm to initialize cluster centers.
14
+
//! Initial choice of K data points is very important and has big effect on performance of the algorithm. `smartcore` uses k-means++ algorithm to initialize cluster centers.
Copy file name to clipboardExpand all lines: src/lib.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@
75
75
//! ```
76
76
//!
77
77
//! ## Overview
78
-
//!
78
+
//!
79
79
//! ### Supported algorithms
80
80
//! All machine learning algorithms are grouped into these broad categories:
81
81
//! * [Clustering](cluster/index.html), unsupervised clustering of unlabeled data.
@@ -86,7 +86,7 @@
86
86
//! * [Nearest Neighbors](neighbors/index.html), K Nearest Neighbors for classification and regression
87
87
//! * [Naive Bayes](naive_bayes/index.html), statistical classification technique based on Bayes Theorem
88
88
//! * [SVM](svm/index.html), support vector machines
89
-
//!
89
+
//!
90
90
//! ### Linear Algebra traits system
91
91
//! For an introduction to `smartcore`'s traits system see [this notebook](https://github.com/smartcorelib/smartcore-jupyter/blob/5523993c53c6ec1fd72eea130ef4e7883121c1ea/notebooks/01-A-little-bit-about-numbers.ipynb)
Copy file name to clipboardExpand all lines: src/numbers/realnum.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
//! # Real Number
2
-
//! Most algorithms in smartcore rely on basic linear algebra operations like dot product, matrix decomposition and other subroutines that are defined for a set of real numbers, ℝ.
2
+
//! Most algorithms in `smartcore` rely on basic linear algebra operations like dot product, matrix decomposition and other subroutines that are defined for a set of real numbers, ℝ.
3
3
//! This module defines real number and some useful functions that are used in [Linear Algebra](../../linalg/index.html) module.
Copy file name to clipboardExpand all lines: src/tree/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
//! Decision trees suffer from high variance and often does not deliver best prediction accuracy when compared to other supervised learning approaches, such as linear and logistic regression.
10
10
//! Hence some techniques such as [Random Forests](../ensemble/index.html) use more than one decision tree to improve performance of the algorithm.
11
11
//!
12
-
//! smartcore uses [CART](https://en.wikipedia.org/wiki/Predictive_analytics#Classification_and_regression_trees_.28CART.29) learning technique to build both classification and regression trees.
12
+
//! `smartcore` uses [CART](https://en.wikipedia.org/wiki/Predictive_analytics#Classification_and_regression_trees_.28CART.29) learning technique to build both classification and regression trees.
0 commit comments