99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

代做 MPHY0041、代寫 C++設計編程
代做 MPHY0041、代寫 C++設計編程

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



 UCL DEPARTMANT OF MEDICAL PHYSICS AND
BIOMEDICAL ENGINEERING
Module Code: Module Title : Coursework Title : Lecturer:
Date Handed out: Student ID (Not Name)
MPHY0041
Machine Learning in Medical Imaging Assessed Coursework
Dr. Andre Altmann
Friday, October 25th 2024
Undergraduate / Postgraduate Assessed Coursework Tracking Sheet
              Submission Instruction: Before the submission deadline, you should digitally submit your source code and generated figures (a single jupyter notebook file including your written answers). In case you submit multiple files, all files need to be combined in one single zip file and submitted on the module page at UCL Moodle.
Coursework Deadline: Friday, November 29th 2024 at 16:00 at UCL Moodle submission section
Date Received
Date Returned to Student:
The Department of Medical Physics and Biomedical Engineering follows the UCL Academic Manual with regards to plagiarism and coursework late submission. UCL Policy on Plagiarism
UCL Policy on Late Submission of Coursework
If you are unable to submit on-time due to extenuating circumstances (EC), please refer to the UCL Policy on Extenuating Circumstances and contact our EC Secretary at medphys.teaching@ucl.ac.uk as soon as possible.
UCL Policy on Extenuating Circumstances
Please indicate what areas of your coursework you particularly would like feedback on:
Mark (%):
Please note that the mark is provisional and could be changed when the exam boards meet to moderate marks.
                
Please note: This is an AI Category 1 coursework (i.e., AI technologies cannot be used to solve the questions): https://www.ucl.ac.uk/teaching-learning/generative-ai-hub/using- ai-tools-assessment.
Please submit a single jupyter notebook file for Exercises 1, 2, and 3. The file should contain code, plots and comments that help the understanding of your answers. You can give your written answers as a Markdown within the jupyter notebook.
The provided jupyter notebook Notebook_MPHY0041_2425_CW1.ipynb contains the individual gap codes/functions for Exercise 2 and the functions provided for Exercise 3. Please use this notebook as the basis for your submission.
1. Load the dataset ‘Dementia_train.csv’ it contains diagnosis (DX), a cognitive score (ADAS13) and two cerebrospinal fluid (CSF) measurements for two proteins: amyloid and tau. There are three diagnostic labels: CN, MCI, and Dementia.
a) Remove MCI subjects from the dataset. Compute means for each of the three
measurements (ADAS13, ABETA, TAU) for the ‘CN’ (𝜇!") and the ‘Dementia’ (𝜇#$)
groups. In addition, compute the standard deviation (ҵ**;) for these three measures
across the diagnostic groups. Assume that the data follow a Gaussian distribution:
   1 %&( *%+ -! 𝑓(w**9;)= ҵ**;√2𝜋Ү**; ' ,
,
with the means and standard deviation as computed above. Compute the decision boundary between the two disease groups for each of the three features (with the prior probabilities 𝜋.! = 𝜋#$ = 0.5).
Load the dataset ‘Dementia_test.csv’ that contains the same information for another 400 participants. After removing people with MCI, use the decision boundaries from above to compute accuracy, sensitivity and specificity for separating CN from Dementia for each of the three features. [8]
b) Using sklearn functions, train a LinearRegression to separate CN from Dementia subjects using ABETA and TAU values as inputs. Generate a scatter plot for ABETA and TAU using different colours for the two diagnostic groups. Compute the decision boundary based on the linear regression and add it to the plot. What is the accuracy, sensitivity and specificity of your model on the test data for separating CN from Dementia? [7]
c) The previous analyses ignored the subjects with MCI. Going back to the full dataset, compute means for all three groups for ABETA and TAU as well as the joint variance-covariance matrix Σ. Use these to compute linear decision boundaries between all pairs of classes (with the prior probabilities 𝜋.! = 𝜋/!0 =
𝜋#$ = 0.33) without using any models implemented in sklearn. Generate a new scatterplot and add the three decision boundaries. What is the accuracy, sensitivity and specificity for separating CN from Dementia with this method?
[10]

2. Here we complete implementations for different machine learning algorithms. The code with gaps can be found in the notebook Notebook_MPHY0041_2425_CW1.ipynb.
a) The function fit_LogReg_IWLS contains a few gaps that need to be filled for the function to work. This function implements Logistic Regression using iterative weighted least squares (IWLS) as introduced in the lectures. Use your function to train a model that separates Healthy controls from PD subjects in the LogReg_data.csv dataset (DX column indicates PD status, remaining columns are the features). Use the LogisticRegression implemented in sklearn to train a model on the same data. Make a scatter plot between the coefficients obtained from your implementation and the sklearn model. Comment on the
result.
(Hint: The operator @ can be used for matrix multiplications; the function np.linalg.pinv() computes the pseudo-inverse of the matrix: X-1). [7]
b) The function fit_LogReg_GRAD aims to implement Logistic Regression using gradient descent. However, there are still a few gaps in the code. Complete the computation of the cost (J(β)) as well as the update of the beta coefficients. (Hint: gradient descent aims to minimise the cost; however, Logistic Regression is fitted by maximising the log likelihood). Use your function to train a model that separates Healthy controls from PD subjects in the LogReg_data.csv dataset.
Run the training for 3000 iterations with 𝛼 = 0.1. Compare the obtained coefficients to the ones obtained from the IWLS implementation in part a). Comment on the result. [7]
c) The function fit_LogReg_GRAD_momentum aims to implement Logistic Regression using gradient descent with momentum. Extend your solution from (b) and add momentum to the optimization as introduced in the lectures. Use the parameter gamma as the trade-off between momentum and gradient. Train your model on the dataset Syn_Momentum.csv (two inputs X1, X2, and one target y). Run the gradient descent for 100 iterations and compare to the standard gradient descent from (b) also run for 100 iterations (both with 𝛼 = 0.001). How does the Loss evolve over the iterations? Explain your observation. [7]
d) When working with medical data we often encounter biases. This could mean that our target variable (𝑦) is accidentally correlated to another variable (𝑦'). We would like to estimate the model to predict 𝑦, while ignoring the effects introduced by 𝑦'. The trade-off between the objectives can be modified using the parameter 𝛿. Provide a Loss function for this scenario (where both 𝑦 and 𝑦'are fitted using a Logistic Regression). Complete the function fit_LogReg_GRAD_competing, which should implement these logistic regressions with gradient descent. Use the variable delta to implement the trade-off. Load the dataset sim_competitive.csv, it contains two input features (x1, x2) and two output features (y1, y2). Apply your function with different values for 𝛿 (0, 0.5, 0.75, 1.0). Make a scatter plot of the data and add the decision boundaries produced by the four models. [9]

3. This exercise uses T2-weighted MR images of the prostate and surrounding tissue (information here). The task to be solved is to automatically segment the prostate in these images. The input images are gray-scale images with 128x128 pixels (below left) and the output should be a binary matrix of size 128x128, where a 1 indicates the prostate (below right).
The promise1215.zip archive contains three sets of images: training, validation, test. For training, there are 30 MR images paired with their ground truth (i.e., masks). For instance, train/img_02_15.png is the MRI and train/lab_02_15.png is the corresponding ground truth. The function preprocess_img computes a series of filters (raw, sobel, gabor, difference of gaussians, etc.) to be used for the machine learning algorithm. For instance, application to the above image results in the following channels (Figure 1). Use the function provided in create_training_set to randomly sample 1000 patches of size 21x21 from the 30 training images to generate an initial dataset. The resulting dataset is heavily imbalanced (more background patches than target), the function sub_sample is used to generate a random subset of 1000 patches from the entire training data with an approximate 50-50 distribution.
a) Using sklearn, train an SVC model to segment the prostate. Optimize kernel choice (e.g., RBF or polynomial with degree 3) and the cost parameter (e.g., C in the range 0.1 to 1000) using an appropriate variant of cross-validation. Measure performance using the Area Under the ROC Curve (roc_auc) and plot the performance of the kernels depending on the C parameter. (Hint: when SVC seems to take an endless time to train, then change your choice of C parameters; large C parameters ® little regularization ® long training time. E.g., in Colab this took about 30 minutes). [10]
b) Based on your result from a) select the best model parameters and make predictions of the 10 images in the validation dataset. Compute the DICE coefficient and roc_auc for each image. Display the original image, the ground truth, and your segmentations for any 5 images in your validation set. Provide the average DICE coefficient and roc_auc for the entire validation dataset. (Hint: this can take a few minutes per image.) [8]
    
 Figure 1: Feature channels. Numbered from top left to bottom right. (1) raw input image (2) Scharr filter, (3-6) Gabor filter with frequency 0.2 in four directions (7-10) Gabor filter with frequency 0.4 in four directions (1**14) Gabor filter with frequency 0.6 in four directions (15-18) Gabor filter with frequency 0.8 in four directions (19) Local Binary Pattern (LBP) features, and (20) difference of gaussians.
c) Instead of the SVC, train a tree-based ensemble classifier and make predictions for the validation images. Report the average roc_auc and DICE coefficient for the entire validation set. What performs better: the SVC or the tree ensemble? Are tree ensembles or the SVC faster to train and apply? Explain why this is the case.
[7]
d) Use the tree-based ensemble method and explore how the amount of training data (i.e., sub sample size: 500, 1000, 2500, 5000), the patch dimensions (11x11, 17x17, 21x21, 27x27, 31x31) affects the performance on the validation set. [10]
e) As shown in the lectures, post-process your prediction using morphological operations and filters to achieve a better segmentation result. (Hint: some morphological operations are implemented in skimage.morphology; link). Report how your post-processing influences your DICE score on the validation
data. [5]
f) Using your best combination of training data size and patch dimension (from d) and post processing methods (from e), estimate the performance on unseen samples from the test set. Display the original image, the ground truth, and your segmentations for any 5 images in your test set. Provide average DICE coefficient for the entire test set. [5]

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







 

掃一掃在手機打開當前頁
  • 上一篇:代寫 CE235、代做 Python 語言編程
  • 下一篇:COMP3173 代做、代寫 Java/c++編程
  • 無相關信息
    合肥生活資訊

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

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          18成人免费观看视频| 欧美日韩高清在线一区| 国产精品sss| 亚洲精品中文字幕女同| 久久天天狠狠| 伊人久久大香线| 欧美专区在线| 国产日韩综合一区二区性色av| 一本一本久久a久久精品综合妖精 一本一本久久a久久精品综合麻豆 | 亚洲一区二区三区久久| 欧美成人综合一区| 在线播放视频一区| 久久婷婷麻豆| 好看的亚洲午夜视频在线| 欧美一区二区免费观在线| 国产伦精品一区二区三区视频孕妇| 99国产精品久久久久久久久久| 欧美电影在线观看| 亚洲久久在线| 欧美视频在线观看 亚洲欧| 亚洲人午夜精品| 欧美区在线播放| aa成人免费视频| 欧美色欧美亚洲另类七区| 亚洲免费福利视频| 欧美精品一区二区三区蜜桃| 亚洲精品视频在线观看免费| 欧美日韩另类一区| 亚洲一区二区免费看| 国产精品男gay被猛男狂揉视频| 亚洲一区日韩在线| 国产精品婷婷| 欧美在线日韩精品| 亚洲国产裸拍裸体视频在线观看乱了中文 | 亚洲国产小视频| 欧美黄污视频| 在线亚洲一区观看| 国产美女高潮久久白浆| 久久久久免费| 亚洲精品中文字| 国产精品日韩精品| 久久综合九色欧美综合狠狠| 亚洲久久在线| 国产精品久久久久影院色老大 | 亚洲国产91| 欧美日韩直播| 久久精品国产欧美亚洲人人爽| 在线播放精品| 欧美性猛交xxxx免费看久久久 | 国产女优一区| 免费成人av在线| 99精品欧美一区| 国产亚洲综合精品| 欧美片第一页| 亚洲无线视频| 在线精品国产成人综合| 欧美日韩一区二区三区视频| 久久精品国产清高在天天线 | 国产日韩欧美在线一区| 免费人成精品欧美精品| 亚洲伊人第一页| 亚洲高清123| 国产精品久久久久久久久久直播| 久久久久国产精品午夜一区| 在线视频精品一区| 亚洲国产天堂久久国产91| 国产欧美一区二区色老头| 欧美精品自拍偷拍动漫精品| 久久精品在这里| 亚洲图片你懂的| 亚洲精华国产欧美| 国产一区二区三区在线观看视频| 欧美日韩精品久久久| 蜜桃av一区| 欧美一区亚洲二区| 亚洲一区二区免费视频| 亚洲国产精品久久久久| 国语精品一区| 国产欧美日韩免费| 国产精品久久久久aaaa| 欧美电影免费观看网站| 久久久夜精品| 久久婷婷丁香| 久久精品国产亚洲高清剧情介绍| 亚洲一区二区在线播放| 一本色道久久综合亚洲91| 亚洲国产一区二区三区高清| 激情一区二区三区| 国产中文一区二区| 国产视频综合在线| 国产香蕉97碰碰久久人人| 国产精品日韩在线| 国产精品免费一区二区三区在线观看| 欧美女人交a| 欧美精品1区2区| 欧美成人69| 欧美激情精品久久久久| 欧美精品在线一区| 欧美人在线视频| 欧美色网在线| 欧美午夜精品久久久久久久 | 久久综合九色综合久99| 久久久久久久久久久成人| 久久久久国产成人精品亚洲午夜| 欧美一级久久久久久久大片| 性色av一区二区三区在线观看| 亚洲在线免费| 久久精品视频在线免费观看| 久久免费视频一区| 麻豆精品视频在线观看视频| 欧美激情一区二区三区四区| 欧美日本韩国一区二区三区| 欧美日韩视频第一区| 国产精品你懂的在线欣赏| 国产欧美 在线欧美| 国内精品久久久久久久影视蜜臀| 影音先锋中文字幕一区| 亚洲精品午夜| 亚洲一区二区三区在线看| 欧美一区二区久久久| 久久伊人精品天天| 欧美精品在线免费观看| 国产精品最新自拍| 亚洲电影第1页| 一区二区三区四区国产| 亚洲自拍三区| 欧美成人免费小视频| 欧美日韩免费| 国内成人精品2018免费看 | 久久综合电影| 欧美日韩精品一区二区在线播放| 国产精品久久久久久久久免费| 国产亚洲精品7777| 亚洲精品乱码久久久久久蜜桃91| 亚洲午夜性刺激影院| 久热爱精品视频线路一| 国产精品任我爽爆在线播放 | 欧美日韩一区二区三区高清| 国产一区二区毛片| 亚洲激情一区| 久久不射电影网| 欧美日韩精品三区| 国内不卡一区二区三区| 亚洲无吗在线| 欧美高清你懂得| 国产私拍一区| 亚洲天堂黄色| 欧美国产精品中文字幕| 国产欧美精品va在线观看| 日韩亚洲成人av在线| 久久久久久久久伊人| 国产精品久久国产愉拍| 亚洲人体偷拍| 久久综合狠狠| 国产欧美视频一区二区| 亚洲少妇在线| 欧美激情在线狂野欧美精品| 国模精品娜娜一二三区| 亚洲欧美日韩国产综合在线| 欧美日本韩国在线| 亚洲黄页视频免费观看| 久久se精品一区二区| 国产精品一区二区三区四区五区| 亚洲人成高清| 欧美成人免费小视频| 狠狠色丁香婷综合久久| 欧美一区二区网站| 国产精品美女久久久| 在线综合亚洲| 欧美日韩视频专区在线播放 | 免费观看久久久4p| 国产在线观看91精品一区| 欧美亚洲一区| 国产欧美大片| 欧美一级久久久久久久大片| 国产精品美女视频网站| 亚洲一区免费网站| 国产精品久久久久永久免费观看| 亚洲另类在线一区| 欧美精品免费在线观看| 日韩亚洲欧美在线观看| 欧美日产国产成人免费图片| 亚洲国内在线| 欧美日韩一区二区视频在线| 一区二区三区国产精华| 欧美色欧美亚洲高清在线视频| 一本久久a久久免费精品不卡| 欧美日韩在线精品| 亚洲一级黄色片| 国产伦精品一区二区三区免费迷| 欧美一区二区三区免费观看| 国产精品视频午夜| 欧美在线观看视频| 伊人久久综合| 欧美激情1区2区3区| 亚洲美女中出| 国产精品网站视频| 久久精品国产91精品亚洲| 亚洲第一综合天堂另类专| 欧美黄色成人网|