国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

COMP9417代做、代寫Python語言編程

時間:2024-07-17  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



COMP9417 - Machine Learning
Homework 3: MLEs and Kernels
Introduction In this homework we first continue our exploration of bias, variance and MSE of estimators.
We will show that MLE estimators are not unnecessarily unbiased, which might affect their performance
in small samples. We then delve into kernel methods: first by kernelizing a popular algorithm used in
unsupervised learning, known as K-means. We then look at Kernel SVMs and compare them to fitting
linear SVMs with feature transforms.
Points Allocation There are a total of 28 marks.
• Question 1 a): 2 marks
• Question 1 b): 2 marks
• Question 1 c): 4 marks
• Question 2 a): 1 mark
• Question 2 b): 1 mark
• Question 2 c): 2 marks
• Question 2 d): 2 marks
• Question 2 e): 2 marks
• Question 2 f): 3 marks
• Question 2 g): 2 marks
• Question 3 a): 1 mark
• Question 3 b): 1 mark
• Question 3 c): 1 mark
• Question 3 d): 1 mark
• Question 3 e): 3 marks
What to Submit
• A single PDF file which contains solutions to each question. For each question, provide your solution
in the form of text and requested plots. For some questions you will be requested to provide screen
shots of code used to generate your answer — only include these when they are explicitly asked for.
1• .py file(s) containing all code you used for the project, which should be provided in a separate .zip
file. This code must match the code provided in the report.
• You may be deducted points for not following these instructions.
• You may be deducted points for poorly presented/formatted work. Please be neat and make your
solutions clear. Start each question on a new page if necessary.
• You cannot submit a Jupyter notebook; this will receive a mark of zero. This does not stop you from
developing your code in a notebook and then copying it into a .py file though, or using a tool such as
nbconvert or similar.
• We will set up a Moodle forum for questions about this homework. Please read the existing questions
before posting new questions. Please do some basic research online before posting questions. Please
only post clarification questions. Any questions deemed to be fishing for answers will be ignored
and/or deleted.
• Please check Moodle announcements for updates to this spec. It is your responsibility to check for
announcements about the spec.
• Please complete your homework on your own, do not discuss your solution with other people in the
course. General discussion of the problems is fine, but you must write out your own solution and
acknowledge if you discussed any of the problems in your submission (including their name(s) and
zID).
• As usual, we monitor all online forums such as Chegg, StackExchange, etc. Posting homework questions
 on these site is equivalent to plagiarism and will result in a case of academic misconduct.
• You may not use SymPy or any other symbolic programming toolkits to answer the derivation questions.
 This will result in an automatic grade of zero for the relevant question. You must do the
derivations manually.
When and Where to Submit
• Due date: Week 8, Monday July 15th, 2024 by 5pm. Please note that the forum will not be actively
monitored on weekends.
• Late submissions will incur a penalty of 5% per day from the maximum achievable grade. For example,
 if you achieve a grade of 80/100 but you submitted 3 days late, then your final grade will be
80 − 3 × 5 = 65. Submissions that are more than 5 days late will receive a mark of zero.
• Submission must be made on Moodle, no exceptions.
Page 2Question 1. Maximum Likielihood Estimators and their Bias
Let X1, . . . , Xn
i.i.d. ∼ N(µ, σ
2
). Recall that in Tutorial 2 we showed that the MLE estimators of µ, σ
2 were
µˆMLE and σˆ
2
MLE where
µˆMLE = X, and σˆ
2
MLE =
 1
n
Xn
i=1
(Xi − X)
2
.
In this question, we will explore these estimators in more depth.
(a) Find the bias and variance of both µˆMLE and σˆ
2
MLE
. Hint: You may use without proof the fact that
var
 
1
σ
2
Xn
i=1
(Xi − X)
2
!
= 2(n − 1)
What to submit: the bias and variance of the estimators, along with your working.
(b) Your friend tells you that they have a much better estimator for σ.
Discuss whether this estimator is better or worse than the MLE estimator:.
Be sure to include a detailed analysis of the bias and variance of both estimators, and describe what
happens to each of these quantities (for each of the estimators) as the sample size n increases (use
plots). For your plots, you can assume that σ = 1.
What to submit: the bias and variance of the new estimator. A plot comparing the bias of both estimators as
a function of the sample size n, a plot comparing the variance of both estimators as a function of the sample
size n, use labels/legends in your plots. A copy of the code used here in solutions.py
(c) Compute and then plot the MSE of the two estimators considered in the previous part. For your
plots, you can assume that σ = 1. Provide some discussion as to which estimator is better (according
 to their MSE), and what happens as the sample size n gets bigger. What to submit: the MSEs of
the two variance estimators. A plot comparing the MSEs of the estimators as a function of the sample size
n, and some commentary. Use labels/legends in your plots. A copy of the code used here in solutions.py
Question 2. A look at clustering algorithms
Note: Using an existing/online implementation of the algorithms described in this question will
result in a grade of zero. You may use code from the course with reference.
The K-means algorithm is the simplest and most intuitive clustering algorithm available. The algorithm
takes two inputs: the (unlabeled) data X1, . . . , Xn and a desired number of clusters K. The goal is to
identify K groupings (which we refer to as clusters), with each group containing a subset of the original
data points. Points that are deemed similar/close to each other will be assigned to the same grouping.
Algorithmically, given a set number of iterations T, we do the following:
1. Initialization: start with initial set of K-means (cluster centers): µ
(a) Consider the following data-set of n = 5 points in R
(2)
2 by hand. Be sure to
show your working.
What to submit: your cluster centers and any working, either typed or handwritten.
(b) Your friend tells you that they are working on a clustering problem at work. You ask for more
details and they tell you they have an unlabelled dataset with p = 10000 features and they ran
K-means clustering using Euclidean distance. They identified 52 clusters and managed to define
labellings for these clusters based on their expert domain knowledge. What do you think about the
usage of K-means here? Do you have any criticisms?
What to submit: some commentary.
(c) Consider the data and random clustering generated using the following code snippet:
1 import matplotlib.pyplot as plt
2 import numpy as np
3 from sklearn import datasets
4
5 X, y = datasets.make_circles(n_samples=200, factor=0.4, noise=0.04, random_state=13)
6 colors = np.array([’orange’, ’blue’])
7
8 np.random.seed(123)
9 random_labeling = np.random.choice([0,1], size=X.shape[0], )
10 plt.scatter(X[:, 0], X[:, 1], s=20, color=colors[random_labeling])
11 plt.title("Randomly Labelled Points")
12 plt.savefig("Randomly_Labeled.png")
13 plt.show()
14
The random clustering plot is displayed here:
1Recall that for a set S, |S| denotes its cardinality. For example, if S = {4, 9, 1} then |S| = 3.
2The notation in the summation here means we are summing over all points belonging to the k-th cluster at iteration t, i.e. C
(t)
k
.
Page 4Implement K-means clustering from scratch on this dataset. Initialize the following two cluster
centers:
and run for 10 iterations. In your answer, provide a plot of your final clustering (after 10 iterations)
similar to the randomly labeled plot, except with your computed labels in place of random labelling.
Do you think K-means does a good job on this data? Provide some discussion on what you observe.
What to submit: some commentary, a single plot, a screen shot of your code and a copy of your code
in your .py file.
(d) You decide to extend your implementation by considering a feature transformation which maps
2-dimensional points (x1, x2) into 3-dimensional points of the form. Run your
K-means algorithm (for 10 iterations) on the transformed data with cluster centers:
Note for reference that the nearest mean step of the algorithm is now:
ki = arg min
k∈{1,...,K}
. In your answer, provide a plot of your final clustering using the
code provided in (c) as a template. Provide some discussion on what you observe. What to submit:
a single plot, a screen shot of your code and a copy of your code in your .py file, some commentary.
(e) You recall (from lectures perhaps) that directly applying a feature transformation to the data can
be computationally intractable, and can be avoided if we instead write the algorithm in terms of
Page 5a function h that satisfies: h(x, x0
) = hφ(x), φ(x
0
)i. Show that the nearest mean step in (1) can be
re-written as:
ki = arg min
k∈{1,...,K}
h(Xi
, Xi) + T1 + T2

,
where T1 and T2 are two separate terms that may depend on C
(t−1)
k
, h(Xi
, Xj ) and h(Xj , X`) for
Xj , X` ∈ C
(t−1)
k
. The expressions should not depend on φ. What to submit: your full working.
(f) With your answer to the previous part, you design a new algorithm: Given data X1, . . . , Xn, the
number of clusters K, and the number of iterations T:
1. Initialization: start with initial set of K clusters: C
(0)
1
, C(0)
2
, . . . , C(0)
K .
2. For t = 1, 2, 3, . . . , T :
• For i = 1, 2, . . . , n: Solve
ki = arg min
k∈{1,...,K}
h(Xi
, Xi) + T1 + T2

.
• For k = 1, . . . , K, set
C
(t)
k = {Xi such that ki = k}.
The goal of this question is to implement this new algorithm from scratch using the same data
generated in part (c). In your implementation, you will run the algorithm two times: first with the
function:
h1(x, x0
) = (1 + hx, x0
i),
and then with the function
h2(x, x0
) = (1 + hx, x0
i)
2
.
For your initialization (both times), use the provided initial clusters, which can be loaded
in by running inital clusters = np.load(’init clusters.npy’). Run your code for at
most 10 iterations, and provide two plots, one for h1 and another for h2. Discuss your results for
the two functions. What to submit: two plots, your discussion, a screen shot of your code and a copy of
your code in your .py file.
(g) The initializations of the algorithms above were chosen very specifically, both in part (d) and (f).
Investigate different choices of intializations for your implemented algorithms. Do your results
look similar, better or worse? Comment on the pros/cons of your algorithm relative to K-means,
and more generally as a clustering algorithm. For full credit, you need to provide justification in
the form of a rigorous mathematical argument and/or empirical demonstration. What to submit:
your commentary.
Question 3. Kernel Power
Consider the following 2-dimensional data-set, where y denotes the class of each point.
index x1 x2 y
1 1 0 -1
2 0 1 -1
3 0 -1 -1
4 -1 0 +1
5 0 2 +1
6 0 -2 +1
7 -2 0 +1
Page 6Throughout this question, you may use any desired packages to answer the questions.
(a) Use the transformation x = (x1, x2) 7→ (φ1(x), φ2(x)) where φ1(x) = 2x
2
2 − 4x1 + 1 and φ2(x) =
x
2
1 − 2x2 − 3. What is the equation of the best separating hyper-plane in the new feature space?
Provide a plot with the data set and hyperplane clearly shown.
What to submit: a single plot, the equation of the separating hyperplane, a screen shot of your code, a copy
of your code in your .py file for this question.
(b) You wish to fit a hard margin SVM using the SVC class in sklearn. However, the SVC class only
fits soft margin SVMs. Explain how one may still effectively fit a hard margin SVM using the SVC
class. What to submit: some commentary.
(c) Fit a hard margin linear SVM to the transformed data-set in part (a). What are the estimated
values of (α1, . . . , α7). Based on this, which points are the support vectors? What error does your
computed SVM achieve?
What to submit: the indices of your identified support vectors, the train error of your SVM, the computed
α’s (rounded to 3 d.p.), a screen shot of your code, a copy of your code in your .py file for this question.
(d) Consider now the kernel k(x, z) = (2 + x
>z)
2
. Run a hard-margin kernel SVM on the original (untransformed)
data given in the table at the start of the question. What are the estimated values of
(α1, . . . , α7). Based on this, which points are the support vectors? What error does your computed
SVM achieve?
What to submit: the indices of your identified support vectors, the train error of your SVM, the computed
α’s (rounded to 3 d.p.), a screen shot of your code, a copy of your code in your .py file for this question.
(e) Provide a detailed argument explaining your results in parts (i), (ii) and (iii). Your argument
should explain the similarities and differences in the answers found. In particular, is your answer
in (iii) worse than in (ii)? Why? To get full marks, be as detailed as possible, and use mathematical
arguments or extra plots if necessary.
What to submit: some commentary and/or plots. If you use any code here, provide a screen shot of your code,
and a copy of your code in your .py file for this question.
Page 7

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代寫AT2- Accounting Systems、代做Java
  • 下一篇:菲律賓降簽多久可以出境(9G工簽降簽所需的材料)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    97碰在线观看| 欧美巨大黑人极品精男| 伊人网在线免费| 逼特逼视频在线| 国产日韩精品在线| 国内精品久久久久久中文字幕| 久久精品一区二区三区不卡免费视频| 欧美wwwxxxx| 国产一二三四区在线观看| 久久99国产精品| 日本精品久久久久影院| 国产激情一区二区三区在线观看| 亚洲欧洲久久| 亚洲精品免费在线视频| 国产麻豆日韩| 日本在线观看一区二区| 国产精品情侣自拍| 高清在线观看免费| 日韩精品免费播放| 精品国产乱码久久久久| www.久久草| 日韩精品久久久| 国产精品久久久久久久美男| 国产精品一区二区欧美| 亚洲一区尤物| 日韩在线资源网| 国产精品自拍偷拍| 日韩视频 中文字幕| 精品久久久三级| 久久久久久a亚洲欧洲aⅴ| 蜜臀精品一区二区| 午夜精品久久久久久99热软件| 国产精品无码人妻一区二区在线| 国产精品一区而去| 青青草国产精品| 亚洲天堂第一区| 久久久av电影| 91高清免费在线观看| 蜜桃成人免费视频| 午夜精品一区二区三区在线 | 国产精品激情自拍| 7777在线视频| 国产日产精品一区二区三区四区| 日本不卡高清视频一区| 在线播放豆国产99亚洲| 久久久91精品国产一区不卡| 91精品网站| 国产欧美精品aaaaaa片| 欧美在线视频免费| 午夜精品视频在线| 国产99在线|中文| 久久精品国产精品亚洲| 91精品国产综合久久久久久蜜臀| 欧美久久久久久| 日韩在线国产| 国产免费观看久久黄| 久久久精品在线| 丰满人妻中伦妇伦精品app| 日韩欧美国产免费| 欧美激情一区二区三区在线视频观看| 8050国产精品久久久久久| 精品人妻大屁股白浆无码| 一区二区三区四区视频在线| 久久国产精品网| 精品无码一区二区三区爱欲 | 亚洲一区二区三区精品在线观看| 日韩一区在线视频| 成人欧美一区二区| 欧美日韩一区二区三区电影| 亚洲欧洲另类精品久久综合| 久久精品人人爽| av免费观看国产| 欧美日韩性生活片| 亚洲a级在线播放观看| 国产一区二区丝袜高跟鞋图片| 插插插亚洲综合网| 久久五月天综合| 国产精品国产三级国产专区53| 国产成人啪精品视频免费网 | 久久亚洲一区二区三区四区五区高| 久久久久久人妻一区二区三区| 91久久偷偷做嫩草影院| 99久久自偷自偷国产精品不卡| 国产精品一久久香蕉国产线看观看| 国产综合福利在线| 国产一区在线观| 国内精品久久久久久中文字幕 | 国产精品高潮呻吟视频| 国产精品免费视频久久久| 久久久精品国产一区二区| 久久狠狠久久综合桃花| 久久久久亚洲精品| 少妇精69xxtheporn| 国产成人无码精品久久久性色| 日韩视频在线免费| 久久精品国产欧美亚洲人人爽| 精品国产一区二区三区久久狼黑人| 久久精品福利视频| 国产精品久久一区| 久久亚洲精品网站| 欧美日本在线视频中文字字幕| 欧美激情网站在线观看| 一区二区免费电影| 亚洲v国产v| 日韩av123| 热久久美女精品天天吊色| 青青青在线观看视频| 欧美怡春院一区二区三区 | 久久久久久久久久久亚洲| 精品国模在线视频| 国产精品免费视频一区二区| 精品国产区在线| 亚洲欧洲日夜超级视频| 日本三级中文字幕在线观看| 欧美一区二区影院| 国产日韩久久| 久久久亚洲影院你懂的| 日韩一区二区欧美| 国产精品户外野外| 亚洲欧洲久久| 欧美一区免费视频| 国产美女99p| 久久香蕉综合色| 国产成人免费av电影| 国产精品美乳在线观看| 欧美激情网站在线观看| 色婷婷综合久久久久中文字幕| 琪琪亚洲精品午夜在线| 国产区二精品视| 久久久伊人日本| 国产精品视频大全| 亚洲影院色在线观看免费| 欧美一级黄色影院| 麻豆中文字幕在线观看| 99久re热视频这里只有精品6| 久久精品欧美| 蜜臀久久99精品久久久久久宅男| 视频一区国产精品| 国内揄拍国内精品| 69国产精品成人在线播放| 国产精品日韩一区二区三区| 亚洲综合欧美日韩| 欧美性受xxxx黑人猛交88| 国产精品最新在线观看| 色青青草原桃花久久综合 | 九九九久久国产免费| 天天人人精品| 国产做受69高潮| 久久视频免费在线| 精品中文字幕在线2019| 日韩理论片在线观看| 国产精品亚洲美女av网站| 视频一区视频二区国产精品 | 亚洲欧美日韩综合一区| 国内免费久久久久久久久久久| 91精品国产91久久久久久| 欧美成人免费一级人片100| 日韩xxxx视频| av日韩中文字幕| 国产精品偷伦视频免费观看国产| 亚洲色欲综合一区二区三区| 国内自拍在线观看| 国产成人黄色av| 一区二区精品国产| 国模精品系列视频| 日韩视频免费看| 日本一区二区黄色| 91精品国产乱码久久久久久久久| 久久成人这里只有精品| 秋霞久久久久久一区二区| 久久久视频精品| 亚洲午夜精品国产| 国产淫片免费看| 国产精品三级久久久久久电影| 日韩在线三区| www.av一区视频| 久久99精品久久久久久噜噜 | 国语精品免费视频| 色婷婷久久一区二区| 午夜精品久久久久久久99热| 国产欧美最新羞羞视频在线观看| 日韩中文视频免费在线观看| 视频一区二区综合| 91精品视频在线播放| 一区二区视频国产| 国产欧美日韩精品丝袜高跟鞋| 国产精品手机在线| 日本一本草久p| 久久手机视频| 视频一区在线免费观看| 91免费看蜜桃| 亚洲视频在线二区| 国产精品视频成人| 精品免费日产一区一区三区免费 | 国产欧美一区二区三区另类精品| 久久观看最新视频| 亚洲欧美日韩精品综合在线观看| 久久久久久久免费视频| 国产精品美女诱惑| 激情五月六月婷婷|