日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

代寫COMP9417、Python程序設計代做

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



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.
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
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













 

掃一掃在手機打開當前頁
  • 上一篇:拿護照去越南怎樣辦理簽證(拿護照申請越南簽證申請流程)
  • 下一篇:代做4CM507、代寫c++,Java程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
  • 短信驗證碼 豆包 幣安下載 目錄網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        韩日视频一区| 亚洲狼人精品一区二区三区| 亚洲国产欧美一区二区三区同亚洲| 在线日韩欧美视频| 一区二区三区免费网站| 黄色亚洲大片免费在线观看| 国产精品久久久爽爽爽麻豆色哟哟| 99re66热这里只有精品4| 亚洲区国产区| 国产一区二区三区最好精华液| 免费视频久久| 国产一区二区你懂的| 亚洲女女做受ⅹxx高潮| 亚洲经典一区| 亚洲精品一区二区三区福利| 国产欧美精品一区二区色综合| 欧美在线啊v| 欧美日韩国产在线| 亚洲一级片在线看| 日韩系列在线| 亚洲日韩欧美视频| 欧美精品一区在线发布| 久久久人成影片一区二区三区| 亚洲日本激情| 亚洲成色最大综合在线| 久久午夜羞羞影院免费观看| 久久蜜桃资源一区二区老牛| 在线欧美不卡| 亚洲综合激情| 欧美日韩三级电影在线| 欧美一区三区二区在线观看| 影音先锋中文字幕一区| 国产精品二区三区四区| 欧美一区2区视频在线观看| 亚洲国产精品电影在线观看| 亚洲精品久久久久久久久| 老牛嫩草一区二区三区日本| 国产欧美高清| 欧美成人一区二区三区片免费| 亚洲一区二区三区影院| 亚洲精品一区二区三区婷婷月| 久久精精品视频| 国产一区二区在线观看免费| 日韩视频精品在线观看| 久久av老司机精品网站导航| 先锋影音国产一区| 亚洲欧美www| 亚洲风情亚aⅴ在线发布| 亚洲制服av| 亚洲女同性videos| 99精品热6080yy久久| 久久婷婷丁香| 免费国产自线拍一欧美视频| 亚洲香蕉伊综合在人在线视看| 亚洲欧美综合网| 国产精品一区二区三区观看| 国内不卡一区二区三区| 欧美一区=区| 久久精品中文字幕一区二区三区| 亚洲尤物在线| 在线视频中文亚洲| 免费一级欧美片在线播放| 性欧美激情精品| 美女露胸一区二区三区| 亚洲高清免费视频| 一区二区三区日韩欧美| 一区二区三区回区在观看免费视频| 久久偷看各类wc女厕嘘嘘偷窃| 另类天堂视频在线观看| 欧美性猛交视频| 久久国产精品一区二区| 国产欧美精品在线观看| 午夜一区不卡| 国产嫩草一区二区三区在线观看| 国产综合色产| 亚洲国产美女久久久久| 136国产福利精品导航网址应用| 中文av一区二区| 欧美成年视频| 欧美另类高清视频在线| 久久综合色天天久久综合图片| 久久久国产精品亚洲一区| 亚洲激情校园春色| 国产最新精品精品你懂的| 另类酷文…触手系列精品集v1小说| 91久久国产自产拍夜夜嗨| 久久精品二区亚洲w码| 黄色av一区| 国产亚洲午夜高清国产拍精品| 国产一区观看| 欧美三区在线视频| 亚洲国产精品电影在线观看| 亚洲一区二区av电影| 免费高清在线一区| 亚洲精品一区二区三区婷婷月| 国内外成人免费激情在线视频网站| 开元免费观看欧美电视剧网站| 国产精品福利在线观看网址| 亚洲开发第一视频在线播放| 国产精品永久免费| 午夜亚洲影视| 久久夜色精品亚洲噜噜国产mv| 欧美日韩在线不卡一区| 国内精品久久久久影院薰衣草| 亚洲伊人观看| 亚洲区免费影片| 欧美在线首页| 在线一区二区日韩| 亚洲欧洲视频在线| 在线视频精品一| 国产欧美欧美| 一本色道精品久久一区二区三区| 久热精品在线| 在线视频欧美一区| 国内一区二区三区| 国产婷婷一区二区| 国产在线乱码一区二区三区| 精品动漫3d一区二区三区免费版| 欧美激情一二区| 欧美69wwwcom| 国产乱码精品一区二区三区忘忧草| 国产偷国产偷精品高清尤物| 免费高清在线一区| 亚洲图片在线| 免费精品99久久国产综合精品| 国产综合亚洲精品一区二| 国产精品成人观看视频免费| 国产伦理精品不卡| 欧美另类在线观看| 欧美成人自拍视频| 国内精品伊人久久久久av一坑| 亚洲精一区二区三区| 亚洲一二三区精品| 夜夜精品视频一区二区| 亚洲亚洲精品在线观看| 国产精品剧情在线亚洲| 久久久夜色精品亚洲| 国产精品日韩欧美一区| 亚洲一区观看| 国产精品日韩高清| 精品91免费| 中文欧美字幕免费| 最新高清无码专区| 蜜桃精品一区二区三区| 国产一区二区三区免费观看| 亚洲欧美另类久久久精品2019| 久久精品日韩欧美| 免费观看亚洲视频大全| 欧美一级免费视频| 亚洲免费在线播放| 黄色国产精品一区二区三区| 亚洲已满18点击进入久久| 欧美国产激情| 国产欧美日韩免费看aⅴ视频| 欧美一区2区三区4区公司二百| 在线欧美不卡| 欧美不卡在线| 日韩亚洲精品视频| 免费久久99精品国产自| 国产精品爽爽ⅴa在线观看| 亚洲视频在线一区| 亚洲欧美资源在线| 欧美国产高潮xxxx1819| 伊人成年综合电影网|