成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron

COMP9417 代做、代寫 Python 語言程序

時間:2024-06-30  來源:  作者: 我要糾錯



COMP9417 - Machine Learning
Homework 2: Bias, Variance and an application of Gradient
Descent
Introduction In this homework we revisit the notion of bias and variance as metrics for characterizing the
behaviour of an estimator. We then take a look at a new gradient descent based algorithm for combining
different machine learning models into a single, more complex, model.
Points Allocation There are a total of 28 marks.
 Question 1 a): 1 mark
 Question 1 b): 3 marks
Question 1 c): 3 marks
Question 1 d): 1 mark
 Question 1 e): 1 mark
Question 2 a): 3 marks
 Question 2 b): 2 marks
 Question 2 c): 6 marks
 Question 2 d): 2 marks
 Question 2 e): 3 marks
 Question 2 f): 2 marks
 Question 2 g): 1 mark
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.
 .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.
1
 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 ques-
tions 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 ques-
tions. 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 5, Friday June 28th, 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 ex-
ample, 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 2
Question 1. Bias of Estimators
Let γ > 0 and suppose that X1, . . . , Xn
i.i.d.~ N(γ, γ2). We define:
X =
1
n
n∑
i=1
Xi,
S2 =
1
n? 1
n∑
i=1
(Xi ?X)2.
You may use the following two facts without proof:
(F1) X and S2 are independent.
(F2) X and c?S are both unbiased estimators of γ.1
What to submit: for all parts (a)-(e), include your working out, either typed or handwritten. For all parts, you
must show all working for full credit. Answers without working will receive a grade of zero.
(a) Consider the estimator:
T1 = aX + (1? a)c?S.
Show that for any choice of constant a, T1 is unbiased for γ.
(b) What choice of a gives you the best (in the sense of MSE) possible estimator? Derive an explicit
expression for this optimal choice of a. We refer to this estimator as T ?1 .
(c) Consider now a different estimator:
T2 = a1Xˉ + a2(c?S),
and we do not make any assumptions about the relationship between a1 and a2. Find the con-
stants a1, a2 explicitly that make T2 best (from the MSE perspective), i.e. choose a1, a2 to minimize
MSE(T2) = E(T2 ? γ)2. We refer to this estimator as T ?2 .
(d) Show that T ?2 has MSE that is less than or equal to the MSE of T ?1 .
(e) Consider the estimator V+ = max{0, T ?2 }. Show that the MSE of V+ is smaller than or equal to the
MSE of T ?2 .
Question 2. Gradient Descent for Learning Combinations of Models
In this question, we discuss and implement a gradient descent based algorithm for learning combina-
tions of models, which are generally termed ’ensemble models’. The gradient descent idea is a very
powerful one that has been used in a large number of creative ways in machine learning beyond direct
minimization of loss functions.
The Gradient-Combination (GC) algorithm can be described as follows: Let F be a set of base learning
algorithms2. The idea is to combine the base learners in F in an optimal way to end up with a good
learning algorithm. Let `(y, y?) be a loss function, where y is the target, and y? is the predicted value.3
Suppose we have data (xi, yi) for i = 1, . . . , n, which we collect into a single data set D0. We then set
the number of desired base learners to T and proceed as follows:
1You do not need to worry about knowing or calculating c? for this question, it is just some constant.
2For example, you could take F to be the set of all regression models with a single feature, or alternatively the set of all regression
models with 4 features, or the set of neural networks with 2 layers etc.
3Note that this set-up is general enough to include both regression and classification algorithms.
Page 3
(I) Initialize f0(x) = 0 (i.e. f0 is the zero function.)
(II) For t = 1, 2, . . . , T :
(GC1) Compute:
rt,i = ? ?
?f(xi)
n∑
j=1
`(yj , f(xj))
∣∣∣∣
f(xj)=ft?1(xj), j=1,...,n
for i = 1, . . . , n. We refer to rt,i as the i-th pseudo-residual at iteration t.
(GC2) Construct a new pseudo data set, Dt, consisting of pairs: (xi, rt,i) for i = 1, . . . , n.
(GC3) Fit a model to Dt using our base class F . That is, we solve
ht = arg min
f∈F
n∑
i=1
`(rt,i, f(xi))
(GC4) Choose a step-size. This can be done by either of the following methods:
(SS1) Pick a fixed step-size αt = α
(SS2) Pick a step-size adaptively according to
αt = arg min
α
n∑
i=1
`(yi, ft?1(xi) + αht(xi)).
(GC5) Take the step
ft(x) = ft?1(x) + αtht(x).
(III) return fT .
We can view this algorithm as performing (functional) gradient descent on the base class F . Note that
in (GC1), the notation means that after taking the derivative with respect to f(xi), set all occurences
of f(xj) in the resulting expression with the prediction of the current model ft?1(xj), for all j. For
example:
?
?x
log(x+ 1)
∣∣∣∣
x=23
=
1
x+ 1
∣∣∣∣
x=23
=
1
24
.
(a) Consider the regression setting where we allow the y-values in our data set to be real numbers.
Suppose that we use squared error loss `(y, y?) = 12 (y? y?)2. For round t of the algorithm, show that
rt,i = yi ? ft?1(xi). Then, write down an expression for the optimization problem in step (GC3)
that is specific to this setting (you don’t need to actually solve it).
What to submit: your working out, either typed or handwritten.
(b) Using the same setting as in the previous part, derive the step-size expression according to the
adaptive approach (SS2).
What to submit: your working out, either typed or handwritten.
(c) We will now implement the gradient-combination algorithm on a toy dataset from scratch, and we
will use the class of decision stumps (depth 1 decision trees) as our base class (F), and squared error
loss as in the previous parts.4. The following code generates the data and demonstrates plotting
the predictions of a fitted decision tree (more details in q1.py):
4In your implementation, you may make use of sklearn.tree.DecisionTreeRegressor, but all other code must be your
own. You may use NumPy and matplotlib, but do not use an existing implementation of the algorithm if you happen to find one.
Page 4
1 np.random.seed(123)
2 X, y = f_sampler(f, 160, sigma=0.2)
3 X = X.reshape(-1,1)
4
5 fig = plt.figure(figsize=(7,7))
6 dt = DecisionTreeRegressor(max_depth=2).fit(X,y) # example model
7 xx = np.linspace(0,1,1000)
8 plt.plot(xx, f(xx), alpha=0.5, color=’red’, label=’truth’)
9 plt.scatter(X,y, marker=’x’, color=’blue’, label=’observed’)
10 plt.plot(xx, dt.predict(xx.reshape(-1,1)), color=’green’, label=’dt’) # plotting
example model
11 plt.legend()
12 plt.show()
13
The figure generated is
Your task is to generate a 5 x 2 figure of subplots showing the predictions of your fitted gradient-
combination model. There are 10 subplots in total, the first should show the model with 5 base
learners, the second subplot should show it with 10 base learners, etc. The last subplot should be
the gradient-combination model with 50 base learners. Each subplot should include the scatter of
data, as well as a plot of the true model (basically, the same as the plot provided above but with
your fitted model in place of dt). Comment on your results, what happens as the number of base
learners is increased? You should do this two times (two 5x2 plots), once with the adaptive step
size, and the other with the step-size taken to be α = 0.1 fixed throughout. There is no need to
split into train and test data here. Comment on the differences between your fixed and adaptive
step-size implementations. How does your model perform on the different x-ranges of the data?
What to submit: two 5 x 2 plots, one for adaptive and one for fixed step size, some commentary, and a screen
shot of your code and a copy of your code in your .py file.
Page 5
(d) Repeat the analysis in the previous question but with depth 2 decision trees as base learners in-
stead. Provide the same plots. What do you notice for the adaptive case? What about the non-
adaptive case? What to submit: two 5 x 2 plots, one for adaptive and one for fixed step size, some commen-
tary, and a copy of your code in your .py file.
(e) Now, consider the classification setting where y is taken to be an element of {?1, 1}. We consider
the following classification loss: `(y, y?) = log(1 + e?yy?). For round t of the algorithm, what is the
expression for rt,i? Write down an expression for the optimization problem in step (GC3) that is
specific to this setting (you don’t need to actually solve it).
What to submit: your working out, either typed or handwritten.
(f) Using the same setting as in the previous part, write down an expression for αt using the adaptive
approach in (SS2). Can you solve for αt in closed form? Explain.
What to submit: your working out, either typed or handwritten, and some commentary.
(g) In practice, if you cannot solve for αt exactly, explain how you might implement the algorithm.
Assume that using a constant step-size is not a valid alternative. Be as specific as possible in your
answer. What, if any, are the additional computational costs of your approach relative to using a
constant step size ?
What to submit: some commentary.



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












 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:FT312編程代寫、代做C++,Python程序
  • 下一篇:公式指標代寫 指標股票公式定制開發
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron
    欧美婷婷六月丁香综合色| 精品久久久久久久一区二区蜜臀| 欧美在线|欧美| 久久色在线观看| 亚洲成av人在线观看| 成人美女视频在线观看18| 国产不卡在线播放| 99精品桃花视频在线观看| 日韩精品一区二区三区在线| 一区二区在线观看免费| 国产成人在线看| 欧美变态tickle挠乳网站| 亚洲国产日韩一区二区| 成人一区二区三区中文字幕| 717成人午夜免费福利电影| 亚洲女女做受ⅹxx高潮| 成人亚洲一区二区一| 久久久亚洲高清| 免费成人你懂的| 欧美久久久久中文字幕| 一区二区三区在线视频免费 | 国产成人在线影院 | 亚洲va欧美va国产va天堂影院| 9人人澡人人爽人人精品| 久久久国际精品| 精品无码三级在线观看视频| 欧美电影免费观看高清完整版在线 | 中文字幕亚洲欧美在线不卡| 精品日韩一区二区| 亚洲国产视频在线| 成人av在线播放网址| 精品sm在线观看| 久久国产精品第一页| 欧美顶级少妇做爰| 午夜国产精品一区| 欧美日韩dvd在线观看| 亚洲国产日韩a在线播放| 在线看不卡av| 伊人一区二区三区| 色婷婷精品大在线视频| 亚洲精品免费在线播放| 色综合色狠狠天天综合色| 亚洲免费伊人电影| 91免费看视频| 亚洲精品菠萝久久久久久久| 欧美综合天天夜夜久久| 亚洲国产成人av网| 91精品国产综合久久香蕉的特点 | 一区二区在线观看视频在线观看| 色一情一乱一乱一91av| 一区二区三区不卡视频| 欧美日韩亚洲国产综合| 日韩电影免费一区| 精品美女一区二区| 成人性生交大片免费看中文网站| ww久久中文字幕| 风间由美性色一区二区三区| 1000精品久久久久久久久| 91久久精品网| 婷婷开心激情综合| 日韩欧美国产三级电影视频| 国产一区二区导航在线播放| 国产精品全国免费观看高清 | 国产午夜亚洲精品不卡| 成人av电影观看| 亚洲黄色av一区| 9191精品国产综合久久久久久| 狂野欧美性猛交blacked| 国产亚洲成av人在线观看导航| a美女胸又www黄视频久久| 亚洲国产日韩一级| 精品入口麻豆88视频| 成人a免费在线看| 亚洲一二三专区| 精品久久久久久亚洲综合网| thepron国产精品| 视频一区二区不卡| 久久精品一区二区| 欧美最猛黑人xxxxx猛交| 久久成人av少妇免费| 国产精品久久久久影院老司| 欧美日韩一区二区不卡| 国产乱淫av一区二区三区| 亚洲人成网站在线| 日韩午夜在线影院| 成人高清视频在线| 丝袜美腿成人在线| 国产欧美日韩视频一区二区| 欧美性受xxxx黑人xyx性爽| 国内成+人亚洲+欧美+综合在线| 亚洲视频你懂的| 日韩午夜在线观看视频| 成人网男人的天堂| 亚洲精品成人精品456| 日韩免费高清视频| caoporm超碰国产精品| 日韩av中文在线观看| 中文无字幕一区二区三区| 一本久久a久久免费精品不卡| 午夜激情久久久| 国产精品久久久久天堂| 欧美色倩网站大全免费| 国产成人av电影在线| 亚洲第一会所有码转帖| 国产欧美一区二区三区鸳鸯浴| 欧美日本一道本| 国产黄人亚洲片| 天堂av在线一区| 国产精品久久久久久久久动漫 | 一色屋精品亚洲香蕉网站| 欧美理论片在线| 粉嫩aⅴ一区二区三区四区五区| 亚洲最大成人网4388xx| 久久综合九色综合97婷婷女人| 99久久夜色精品国产网站| 久久精品国产**网站演员| 1000精品久久久久久久久| 久久综合中文字幕| 在线观看日韩av先锋影音电影院| 国产一区二区三区不卡在线观看| 亚洲成人动漫精品| 亚洲国产成人午夜在线一区| 7777精品伊人久久久大香线蕉超级流畅 | 婷婷综合在线观看| 国产日韩欧美综合一区| 欧美男人的天堂一二区| 成人网页在线观看| 六月丁香综合在线视频| 午夜精彩视频在线观看不卡| 国产精品国产精品国产专区不片 | 亚洲一级二级在线| 亚洲国产精华液网站w| 日韩一区二区三| 在线精品视频一区二区三四| 国产a级毛片一区| 另类中文字幕网| 午夜视频在线观看一区二区| 亚洲黄一区二区三区| 日本一区二区免费在线观看视频| 91精品国产麻豆国产自产在线 | 99视频在线精品| 国产尤物一区二区| 蜜臀va亚洲va欧美va天堂| 亚洲一区二区三区小说| 国产精品乱码久久久久久| 精品日韩一区二区三区免费视频| 欧美日韩情趣电影| 99re8在线精品视频免费播放| 国产精品一二三四区| 美女脱光内衣内裤视频久久网站| 午夜国产不卡在线观看视频| 夜夜亚洲天天久久| 亚洲欧美一区二区三区极速播放| 中文字幕第一页久久| 久久香蕉国产线看观看99| 日韩一区二区三区视频在线| 欧美综合一区二区三区| 在线观看国产一区二区| 99精品久久免费看蜜臀剧情介绍| 高清不卡一区二区在线| 国产精品亚洲第一区在线暖暖韩国| 久久精工是国产品牌吗| 视频一区二区不卡| 亚洲一区二区三区四区不卡| 一区二区三区 在线观看视频| 国产精品久久99| 欧美国产欧美综合| 国产日韩影视精品| 国产午夜精品一区二区| 久久―日本道色综合久久| 欧美mv日韩mv国产网站app| 日韩一级大片在线观看| 日韩欧美一级特黄在线播放| 欧美二区乱c少妇| 欧美精品久久99久久在免费线| 欧美性大战久久| 欧美影院精品一区| 欧美视频一区二区在线观看| 欧美日韩国产一级二级| 欧美亚洲免费在线一区| 精品视频123区在线观看| 欧美视频在线一区二区三区| 欧美日韩午夜精品| 欧美日韩高清影院| 欧美一区二区免费视频| 欧美一级日韩免费不卡| 日韩欧美色电影| 精品久久人人做人人爽| 欧美精品一区二区久久婷婷| 久久综合九色欧美综合狠狠| 国产欧美一区二区在线| 亚洲男同性恋视频| 亚洲国产精品自拍| 五月天激情综合网| 蜜臀精品久久久久久蜜臀| 国产在线国偷精品产拍免费yy| 国产福利不卡视频| 色呦呦国产精品| 欧美日韩国产免费一区二区| 日韩一区二区在线播放|