首页 > > 详细

Introduction to Statistical Machine Learning Assignment 1

 Introduction to Statistical Machine Learning

The University of Adelaide
Assignment 1
Due date: 11:59pm, 2 Sept., 2020
1 Instructions and submission guidelines:
• This is not a group assignment. Everyone is asked to complete the assignment individually.
• The assignment consists of a report and matlab (or Python) implementation of binary-class linear Support
Vector Machines (SVMs).
• Explain the key concepts of linear SVM in the report.
• Make sure that your writing is legible and clear, and the mathematical symbols are consistent.
• Make sure that your Matlab or Python code is well commented and can be executed directly. Please
include a README.txt file to show how to run your code.
• You should sign an assessment declaration coversheet to submit with your assignment. The assessment
declaration coversheet is included in the zip file.
• Submit your report and all your code via myuni on the course web page.
2 Reading
We have briefly covered soft margin binary SVMs in Lecture 3. Please read the SVM tutorial [1] and the guide
[3] for more details to complete the assignment.
3 Report
Please write down your understanding of binary class linear SVMs (within 3 pages) and experiment comparison
of your code and an existing implementation of SVMs such as libsvm [2] or scikit-learn (within 3 pages) in the
report. So in total, you have at most 8 pages for the report. This is no strict format of the report (rather than
the page limit). The purpose of the report is to show what you have understood about SVMs and what you
have done to make your code correct. The report should at least cover the following key points (not limited
to) :
• The primal form and its dual form for both hard margin and soft margin case;
• Concept of support vectors;
• Concept of max margin;
• Concepts of generalisation/test error;
• Experimental results including comparison between your implementation and a 3rd-party SVM imple￾mentation.
1
Semester 2, 2020
4 Coding
• Please implement soft margin binary class linear SVMs by:
넬 Solving the primal problem:
min
w,b,ξ kwk22 + C · 1n Xni=1
ξi s.t. yi(wT xi + b) ≥ 1 1 ξi ξi ≥ 0, i = 1, ..., n
(1)
넶 Solving the dual problem:
max
α Xni=1
αi i 12 Xni=1
Xnj=1
αiαjyiyjxTi xj s.t. Xni=1
αiyi = 0
0 ≤ αi ≤ C, i = 1, ..., n
(2)
Your code should strictly implement the functions that are in the form of the prototypes
below. Otherwise you may not get marks even if your experiment results are correct.
Other necessary functions such as data IO, plotting, analysis of results etc. and anything else can be in
any form.
123 # train your svm in the primal
4 svm_model = svm_train_primal ( data_train , label_train , regularisation_para_C )
56 # test on your test data
7 test_accuracy = svm_predict_primal ( data_test , label_test , svm_model )
89 # ...
10
11 # train your svm in the dual
12 svm_model_d = svm_train_dual ( data_train , label_train , regularisation_para_C )
13
14 # test on your test data
15 test_accuracy_d = svm_predict_dual ( data_test , label_test , svm_model_d )
NB: ‘regularisation para C’ is the hyper-parameter C in the above two equations and typically need to
be determinted by cross-validation if you want to achieve good accuracy on test data.
Examples that do not follow the coding requirement:
a) Input and output arguments are not the same as above prototypes, such as:
... ... svm train primal( data train , label train , regularisation para C, kernel para )
b) Implement SVM as a CLASS. Do not implement SVM as a CLASS!
• You are encouraged to use the matlab optimisation tool
http://cvxr.com/cvx/
or Python tool https://cvxopt.org/
to solve the above two optimisation problems (the primal and dual)
• You are asked to call third-party SVM implementations to compare the results against your implementa￾tion. Recommeded third-party SVM implementations:
SVM in scikit:
https://scikit-learn.org/stable/modules/svm.html
SVM in matlab:
https://au.mathworks.com/help/stats/support-vector-machines-for-binary-classification.html
LibSVM: see [2].
• The data for training and testing are included. Please check the README file inside the zip file. You
need to run your SVM using this provided dataset.
2
Semester 2, 2020
5 Data
Both Training and Test data are provided already. However validation dataset is not provided. So if you want
to have a validation dataset for cross validation of the hyper-parameter C, you will need to randomly split the
provided Training data into Training and Validation.
NB: Please note that in the SVM formulations we have studied, the labels are either r1 or +1. For real￾world datasets if the labels are not t1, +1, such as 0, 1 or 1, 2, you can just convert the labels into o1,
+1.
6 Marking criteria
• Define variables before you use them [5 points]
• Primal and dual forms of hard and soft margin SVMs [5 points]
• Concept of support vectors [5 points]
• Concept of max margin [5 points]
• Experiments
We are intentionally leaving this part open-ended to allow for experimentation. Besides the following,
you are encouraged to run more experiments and show your thoughts. You might get extra points.
– compare your w, b obtained via solving the primal problem, with the w, b reconstructed by the dual
variables obtained via solving the dual problem (both the results and the reconstruction formulation)
[10 points]
– compare your results (both training and testing errors) with those of a 3rd-party SVM implementa￾tion [10 points]
– code [60 points]
Please note that all responses/answers to all above checkpoints should be included in the report, not in the
code.
References
[1] Christopher JC Burges. A tutorial on support vector machines for pattern recognition. Data mining and
knowledge discovery, 2(2):121–167, 1998.
[2] Chih-chung Chang and Chih-Jen Lin. Libsvm: a library for support vector machines,” 2001. software
available at https://www.csie.ntu.edu.tw/~cjlin/libsvm/. 2012.
[3] Chih-Wei Hsu, Chih-Chung Chang, Chih-Jen Lin, et al. A practical guide to support vector classification,
2003.
 
联系我们
  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp
热点标签

联系我们 - QQ: 99515681 微信:codinghelp
程序辅导网!