Skip to content

Commit b1199c4

Browse files
authoredDec 18, 2017
Create README.md
1 parent a981656 commit b1199c4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 

‎README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# SVM_Framework
2+
Support vector machines flexible framework
3+
We solve the unconstrained primal SVM formulation
4+
SVM & Softmax classifiers supported
5+
NB:
6+
-Softmax classifier refers to penalized and kernalized logistic regression
7+
-Classical logistic regression can be obtained by setting cost very high & using a linear kernel
8+
-Python implementation in a seperate repository
9+
# 1. Classifiers/regressors:
10+
LS: regression classifier using penalized least squared loss
11+
Softmax: Softmax classifier using cross entropy loss
12+
SVM:svm classifier using quadratic hinge loss
13+
# 2. Optimization methods:
14+
BGD: gradient descent (batch)
15+
NGD: Newton-Raphson optimization (batch)
16+
CGD: conjugate gradient descent (batch)
17+
SGD: stochastic gradient descent (under development)
18+
# 3. Kernels:
19+
gaussian: gaussian kernel
20+
linear: linear kernel
21+
poly:polynomial kernel
22+
For any remarks please let me know <azzouz.marouen@gmail.com>

0 commit comments

Comments
 (0)