合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        BUSS6002代做、代寫Python語(yǔ)言編程
        BUSS6002代做、代寫Python語(yǔ)言編程

        時(shí)間:2025-06-04  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



        BUSS6002 Assignment
        Semester 1, 2025
        Instructions
        • Due: at 23:59 on Friday, May 23, 2025 (end of week 12).
        • You must submit a written report (in PDF) with the following filename format, replacing
        STUDENTID with your own student ID: BUSS6002 STUDENTID.pdf.
        • You must also submit a Jupyter Notebook (.ipynb) file with the following filename format,
        replacing STUDENTID with your own student ID: BUSS6002 STUDENTID.ipynb.
        • There is a limit of 6 A4-pages for your report (including equations, tables, and captions).
        • Your report should have an appropriate title (of your own choice).
        • Do not include a cover page.
        • All plots, computational tasks, and results must be completed using Python.
        • Each section of your report must be clearly labelled with a heading.
        • Do not include any Python code as part of your report.
        • All figures must be appropriately sized and have readable axis labels and legends (where
        applicable).
        • The submitted .ipynb file must contain all the code used in the development of your report.
        • The submitted .ipynb file must be free of any errors, and the results must be reproducible.
        • You may submit multiple times but only your last submission will be marked.
        • A late penalty applies if you submit your assignment late without a successful special con sideration (or simple extension). See the Unit Outline for more details.
        • Generative AI tools (such as ChatGPT) may be used for this assignment but you must add a
        statement at the end of your report specifying how generative AI was used. E.g., Generative
        AI was used only used for editing the final report text.
        • Hint! It is highly recommended that you finish the week 10 tutorial before starting this
        assignment.
        1
        Description
        The VIX Index, often called the “fear gauge”, measures the market’s expectations of near-term
        volatility based on S&P 500 option prices. Predicting the VIX index is useful because it helps
        investors anticipate market volatility and manage risk more effectively in their investment strate gies. In this assignment, you are conducting a study that compares the predictive performance
        between four families of basis functions: piece-wise constant, piece-wise linear, radial, and Laplace,
        for a linear basis function (LBF) model designed to predict the VIX index value. The aim is to
        investigate which family of basis functions is most suited for modelling the relationship between
        time and volatility (measured by VIX).
        You are provided with the VIX dataset, which is widely used in financial market research. The
        dataset contains 8,920 observations of daily VIX values (vix) from 1990 to 2025. It also contains
        the year (year) for which the value is observed. A scatter plot of the dataset is shown in Figure 1.
        Figure 1: VIX levels from 1990 to 2025.
        The specific LBF model being considered in your study is given by
        y = ϕ(x)
        ⊤β + ε,
        where y is the VIX value, x is year, and ε is a random noise; ϕ(x) denotes the vector of basis
        function values; the parameter vector to be estimated is β. Four families of basis functions are
        considered for computing ϕ(x); the first family is the set of piece-wise constant basis functions
        ϕ(x) := [1, γ1(x), . . . , γk(x)]⊤, with
        γi(x) := I(x > ti),
        where I(x > ti) is an indicator function defined by
        I(x > ti) := ( 1 if x > ti
        0 if x ≤ ti
        .
        The break points {ti}
        k
        i=1 are calculated according to
        ti
        := xmin +
        i(xmax − xmin)
        k + 1
        , (1)
        2
        where xmin and xmax denote the smallest and largest observed values of x, respectively. The second
        family is the set of piece-wise linear basis functions ϕ(x) := [1, x, λ1(x), . . . , λk(x)]⊤, with
        λi(x) := (x − ti)I(x > ti),
        where ti
        is given by Equation (1). The third family is the set of radial basis functions ϕ(x) :=
        [1, ρ1(x), . . . , ρk(x)]⊤, with
        ρi(x) := exp  −
        (x −
        8
        ti)
        2
        ,
        where ti
        is given by Equation (1). The final family is the set of Laplace basis functions ϕ(x) :=
        [1, τ1(x), . . . , τk(x)]⊤, with
        τi(x) := exp  −
        |x −
        8
        ti
        |
        
        ,
        where ti
        is given by Equation (1).
        Before comparing the four basis function families, you must set the number of components k
        for all models. This hyperparameter value for each basis function family should be selected using
        a validation set, by minimising the validation mean squared error (MSE).
        You should select the optimal values of k by exhaustively searching through an equally-spaced
        grid from 1 to 30, with a spacing of 1:
        K := {1, 2, . . . , 30}.
        Once the optimal values of the hyperparameters are chosen for all basis function families, you will
        be able to compare the predictive performance between the four using a test set (i.e., by comparing
        the test MSE between the four optimally selected models).
        3
        Report Structure
        Your report must contain the following four sections:
        Report Title
        1 Introduction (0.5 pages)
        – Provide a brief project background so that the reader of your report can understand
        the general problem that you are solving.
        – Motivate your research question.
        – State the aim of your project.
        – Provide a short summary of each of the rest of the sections in your report (e.g., “The
        report proceeds as follows: Section 2 presents . . . ”).
        2 Methodology (2 pages)
        – Define and describe the LBF model.
        – Define and describe the four choices of basis function families being investigated.
        – Describe how the parameter vector β is estimated given the value of the hyperparameter
        k. Discuss any potential numerical issues associated with the estimation procedure.
        – Describe how the hyperparameter value can be determined automatically from data (as
        opposed to manually setting the hyperparameter to an arbitrary value).
        – Describe how the performance of the four families of basis functions is compared given
        the optimal hyperparameter value.
        3 Empirical Study (2.5 pages)
        – Describe the datasets used in your study.
        – Present (in a table) the selected hyperparameter value for each basis function family.
        – Describe and discuss the table of selected hyperparameters.
        – Visually present (using plots) the predicted response values for each basis function
        family in the test set.
        – Describe and discuss the plots of predicted values.
        – Present (in a table) the test MSE values for each basis function family.
        – Describe and discuss the table of test MSE values.
        – Report the VIX forecasts of 2026, 2027, and 2028, given by the model with the smallest
        test MSE. Include a brief description of how these forecasts are obtained.
        4 Conclusion (0.5 pages)
        – Discuss your overall findings / insights.
        – Discuss any limitations of your study.
        – Suggest potential directions of extending your study.
        4
        Rubric
        This assignment is worth 30% of the unit’s marks. The assessment is designed to test your compu tational skills in implementing algorithms and conducting empirical experiments, as well as your
        communication skills in writing a concise and coherent report presenting your approach and results.
        The mark allocation across assessment items is given in Table 1.
        Assessment Item Goal Marks
        Section 1 Introduction 4
        Section 2 Methodology 10
        Section 3 Empirical Study 16
        Section 4 Conclusion 3
        Overall Presentation Clear, concise, coherent, and correct 5
        Jupyter Notebook Reproducable results 2
        Total 40
        Table 1: Assessment Items and Mark Allocation
        5

        請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

        掃一掃在手機(jī)打開當(dāng)前頁(yè)
      1. 上一篇:FIT2004代寫、代做FIT2004語(yǔ)言編程
      2. 下一篇:HydroGroove回歸:2025年6月AquaPlanet波浪池DJ陣容
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評(píng) 開團(tuán)工具
        出評(píng) 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) deepseek 幣安下載 AI生圖 AI寫作 aippt AI生成PPT

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號(hào)-3 公安備 42010502001045

        国内精品自在自线视频| 久久精品国产亚洲av高清漫画| 日韩精品一区二区午夜成人版| 亚洲精品乱码久久久久蜜桃| 精品无码无人网站免费视频| 国产成人精品无码播放| 国产中文在线亚洲精品官网| 四虎永久在线精品免费一区二区 | 精品亚洲成在人线AV无码| 久久国产精品一区免费下载| 国产精品无码无在线观看| 久久精品中文字幕有码| 500av导航大全精品| 一本一道久久a久久精品综合| 日韩高清国产一区在线| 亚洲AV无码日韩AV无码导航| 依依成人精品视频在线观看 | 日韩av无码中文字幕| 国产手机精品视频| 国产精品天堂avav在线| 国产精品蜜臂在线观看| 成人精品国产亚洲欧洲| 国产精品成人久久久久| 国产成人精品999在线| 国产免费69成人精品视频| 日韩精品人妻av一区二区三区| 国产AV一区二区精品凹凸| 日韩电影久久久被窝网| 国产亚洲日韩一区二区三区| 国产精品亚洲精品日韩已方| 亚洲日韩中文无码久久| 强制高潮18XXXXHD日韩| 免费精品国自产拍在线播放| 一区二区三区免费精品视频| 2022国内精品免费福利视频| 精品国产91久久久久久久a| 久久露脸国产精品| 精品久久久久久久| 99这里只有精品66视频| 精品无码久久久久国产| 精品国产AV一区二区三区|