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: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,16 @@
6
6
7
7
This is a package gathering functionalities to solve a number of generalised linear regression/classification problems which, inherently, correspond to an optimisation problem of the form
8
8
9
-
```
10
-
L(y, X*θ) + P(θ)
11
-
```
9
+
$$
10
+
L(y, X\theta) + P(\theta)
11
+
$$
12
12
13
13
where:
14
14
15
-
-`L` is a loss function
16
-
-`X` is the `n` x `p` matrix of training observations
17
-
-`θ` the length `p` vector of weights to be optimized
18
-
-`P` is a penalty function
15
+
-$L$ is a loss function
16
+
-$X$ is the $n \times p$ matrix of training observations, where $n$ is the number of _observations_ (sample size) and $p$ is the number of _features_ (dimension)
17
+
-$\theta$ the length $p$ vector of weights to be optimized
18
+
-$P$ is a penalty function
19
19
20
20
Additional regression/classification methods which do not directly correspond to this formulation may be added in the future.
0 commit comments