美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇

代寫DTS101TC、代做Python設計編程

時間:2024-04-23  來源:  作者: 我要糾錯



School of Artificial Intelligence and Advanced Computing
Xi’an Jiaotong-Liverpool University
DTS101TC Introduction to Neural Networks
Coursework
Due: Sunday Apr.21th, 2024 @ 17:00
Weight: 100%
Overview
This coursework is the sole assessment for DTS101TC and aims to evaluate your comprehension of the module. It consists of three sections: 'Short Answer Question', 'Image
Classification Programming', and 'Real-world Application Question'. Each question must be
answered as per the instructions provided in the assignment paper. The programming task
necessitates the use of Python with PyTorch within a Jupyter Notebook environment, with all
output cells saved alongside the code.
Learning Outcomes
A. Develop an understanding of neural networks – their architectures, applications and
limitations.
B. Demonstrate the ability to implement neural networks with a programming language
C. Demonstrate the ability to provide critical analysis on real-world problems and design
suitable solutions based on neural networks.
Policy
Please save your assignment in a PDF document, and package your code as a ZIP file. If there
are any errors in the program, include debugging information. Submit both the answer sheet
and the ZIP code file via Learning Mall Core to the appropriate drop box. Electronic submission
is the only method accepted; no hard copies will be accepted.
You must download your file and check that it is viewable after submission. Documents may
become corrupted during the uploading process (e.g. due to slow internet connections).
However, students themselves are responsible for submitting a functional and correct file for
assessments.
Avoid Plagiarism
• Do NOT submit work from others.
• Do NOT share code/work with others.
• Do NOT copy and paste directly from sources without proper attribution.
• Do NOT use paid services to complete assignments for you.
Q1. Short Answer Questions [40 marks]
The questions test general knowledge and understanding of central concepts in the course. The answers
should be short. Any calculations need to be presented.
1. (a.) Explain the concept of linear separability. [2 marks]
(b.) Consider the following data points from two categories: [3 marks]
X1 : (1, 1) (2, 2) (2, 0);
X2 : (0, 0) (1, 0) (0, 1).
Are they linearly separable? Make a sketch and explain your answer.
2. Derive the gradient descent update rule for a target function represented as
od = w0 + w1x1 + ... + wnxn
Define the squared error function first, considering a provided set of training examples D, where each
training example d ∈ D is associated with the target output td. [5 marks]
3. (a.) Draw a carefully labeled diagram of a 3-layer perceptron with 2 input nodes, 3 hidden nodes, 1
output node and bias nodes. [5 marks]
(b.) Assuming that the activation functions are simple threshold, f(y) = sign(y), write down the inputoutput functional form of the overall network in terms of the input-to-hidden weights, wab, and the
hidden-to-output weights, ˜wbc. [5 marks]
(c.) How many distinct weights need to be trained in this network? [2 marks]
(d.) Show that it is not possible to train this network with backpropagation. Explain what modification
is necessary to allow backpropagation to work. [3 marks]
(e.) After you modified the activation function, using the chain rule, calculate expressions for the following derivatives
(i.) ∂J/∂y / (ii.) ∂J/∂w˜bc
where J is the squared error, and t is the target. [5 marks]
4. (a.) Sketch a simple recurrent network, with input x, output y, and recurrent state h. Give the update
equations for a simple RNN unit in terms of x, y, and h. Assume it uses tanh activation. [5 marks]
(b.) Name one example that can be more naturally modeled with RNNs than with feedforward neural
networks? For a dataset X := (xt, yt)
k
1
, show how information is propagated by drawing a feedforward neural network that corresponds to the RNN from the figure you sketch for k = 3. Recall
that a feedforward neural network does not contain nodes with a persistent state. [5 marks]
Q2. Image Classification Programming [40 marks]
For this question, you will build your own image dataset and implement a neural network by Pytorch. The
question is split in a number of steps. Every step gives you some marks. Answer the questions for each step
and include the screenshot of code outputs in your answer sheet.
- Language and Platform Python (version 3.5 or above) with Pytorch (newest version).You may use
any libraries available on Python platform, such as numpy, scipy, matplotlib, etc. You need to run the code
in the jupyter notebook.
- Code Submission All of your dataset, code (Python files and ipynb files) should be a package in a single
ZIP file, with a PDF of your IPython notebook with output cells. INCLUDE your dataset in the zip
file.
Page 1
1. Dataset Build [10 marks]
Create an image dataset for classification with 120 images (‘.jpg’ format), featuring at least two categories. Resize or crop the images to a uniform size of 128 × 128 pixels. briefly describe the dataset you
constructed.
2. Data Loading [10 marks]
Load your dataset, randomly split the set into training set (80 images), validation set (20 images) and
test set (20 images).
For the training set, use python commands to display the number of data entries, the number of classes,
the number of data entries for each classes, the shape of the image size. Randomly plot 10 images in the
training set with their corresponding labels.
3. Convolutional Network Model Build [5 marks]
// pytorch.network
class Network(nn.Module):
def __init__(self, num_classes=?):
super(Network, self).__init__()
self.conv1 = nn.Conv2d(in_channels=3, out_channels=5, kernel_size=3, padding=1)
self.pool = nn.MaxPool2d(2, 2)
self.conv2 = nn.Conv2d(in_channels=5, out_channels=10, kernel_size=3, padding=1)
self.fc2 = nn.Linear(100, num_classes)
def forward(self, x):
x = self.pool(F.relu(self.conv1(x)))
x = self.pool(F.relu(self.conv2(x)))
x = self.fc1(x)
x = self.fc2(x)
return x
Implement Network, and complete the form below according to the provided Network. Utilize the symbol
‘-’ to represent sections that do not require completion. What is the difference between this model and
AlexNet?
Layer # Filters Kernel Size Stride Padding Size of
Feature Map
Activation
Function
Input
Conv1 ReLU
MaxPool
Conv2 ReLU
FC1 - - - ReLU
FC2 - - -
4. Training [10 marks]
Train the above Network at least 50 epochs. Explain what the lost function is, which optimizer do you
use, and other training parameters, e.g., learning rate, epoch number etc. Plot the training history, e.g.,
produce two graphs (one for training and validation losses, one for training and validation accuracy)
that each contains 2 curves. Have the model converged?
Page 2
self.fc1 = nn.Linear(10 * 32 * 32, 100)
x = x.view(-1, 10 * 32 * 32)
5. Test [5 marks]
Test the trained model on the test set. Show the accuracy and confusion matrix using python commands.
Q3. Real-world Application Questions [20 marks]
Give ONE specific real-world problem that can be solved by neural networks. Answer the questions below
(answer to each question should not exceed 200 words).
1. Detail the issues raised by this real-world problem, and explain how neural networks maybe used to
address these issues. [5 marks]
2. Choose an established neural network to tackle the problem. Specify the chosen network and indicate
the paper in which this model was published. Why you choose it? Explain. [5 marks]
3. How to collect your training data? Do you need labeled data to train the network? If your answer is
yes, specify what kind of label you need. If your answer is no, indicate how you train the network with
unlabeled data. [5 marks]
4. Define the metric(s) to assess the network. Justify why the metric(s) was/were chosen. [5 marks]
The End
Page 3
Marking Criteria
(1). The marks for each step in Q2 are divided into two parts
Rubrics Marking Scheme Marks
Program [60%]
The code works with clear layout and some comments. The outputs make some sense.
60%
The code works and outputs make some sense. 40%
Some of the component parts of the problem can be seen in the
solution, but the program cannot produce any outcome. The code
is difficult to read in places.
20%
The component parts of the program are incorrect or incomplete,
providing a program of limited functionality that meets some of
the given requirements. The code is difficult to read.
0%
Question Answer [40%]
All question are answered correctly, plentiful evidence of clear
understanding of the CNN
40%
Some of the answers not correct, convincing evidence of understanding of the CNN
20%
Answers are incorrect, very little evidence of understanding of the
CNN
0%
(2). Marking scheme for each sub-question in Q3
Marks Scope, quantity and relevance of studied material
Evidence of understanding (through
critical analysis)
5 High quality of originality. Extensive and relevant
literature has been creatively chosen, and outlined
and located in an appropriate context.
There is plentiful evidence of clear understanding of the topic.
4 Shows originality. The major key points and literature have been outlined and put in an adequate context. The major points of those sources are reasonably brought out and related in a way which reveals
some grasp of the topic in question.
There is convincing evidence of understanding
of the topic.
3 Effort has gone into developing a set of original ideas.
Some relevant key points and literature are outlined,
but this outline is patchy, unclear and/or not located
in an adequate context.
There is some evidence of understanding of the
topic.
2 May demonstrate an incomplete grasp of the task
and will show only intermittent signs of originality.
There are some mention of relevant key points, but
this outline is very patchy, unclear, and/or very inadequately placed in context.
There is limited evidence of understanding of
the topic.
1 Shows very limited ability to recognise the issues represented by the brief. There is little mention of relevant key points.
There is very little evidence of understanding
of the topic.
Page 4

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

標簽:

掃一掃在手機打開當前頁
  • 上一篇:COMP282代做、C++設計程序代寫
  • 下一篇:COMP2013代做、代寫Data Structures and Algorithms
  • 無相關信息
    昆明生活資訊

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

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

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

    美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇
    又色又爽又黄18网站| 全程偷拍露脸中年夫妇| 不卡的一区二区| 亚洲国产日韩在线一区| 男生和女生一起差差差视频| 欧美午夜精品一区二区| 久久国产免费视频| 中文在线一区二区三区| 新91视频在线观看| 欧美激情久久久久久久| 日韩欧美国产成人精品免费| 国产乱国产乱老熟300部视频| 95视频在线观看| 人妻熟女aⅴ一区二区三区汇编| 一区二区三区伦理片| 色噜噜噜噜噜噜| 国产波霸爆乳一区二区| 日本在线不卡一区二区| 久久精品—区二区三区舞蹈| 亚洲天堂一级片| 香港三级日本三级| 91成人精品一区二区| 日本一区二区三区在线免费观看| 黑人玩弄人妻一区二区三区| 国产一区二区三区四区五区六区 | 中文精品在线观看| 永久免费观看片现看| 亚洲成人激情小说| 三上悠亚影音先锋| 日韩激情综合网| 亚洲熟妇无码av| 成年人午夜剧场| 一本加勒比北条麻妃| 欧美做爰爽爽爽爽爽爽| 人妻熟女aⅴ一区二区三区汇编| 欧美黑人猛猛猛| 91网站免费入口| 成人一区二区三区仙踪林| 影音先锋制服丝袜| 欧美做受高潮中文字幕| 影音先锋男人资源在线观看| 免费啪视频在线观看| 美国精品一区二区| 久久人人爽人人人人片| 九九精品视频免费| 精品人妻一区二区三区四区| 中文字幕天堂av| 亚洲波多野结衣| 国产小视频自拍| 性色av蜜臀av浪潮av老女人 | 无码国产精品一区二区高潮| 免费视频91蜜桃| 中文字幕一区三区久久女搜查官| 91视频免费在线看| 91无套直看片红桃在线观看| 法国伦理少妇愉情| 无码国产精品一区二区免费式直播 | 国产免费看av| 国产51自产区| 免费看一级大片| 欧美多人猛交狂配| 日本五十肥熟交尾| 五月婷婷综合在线观看| 性农村xxxxx小树林| 欧美一级特黄高清视频| 中文字幕伦理片| 国产三级视频网站| 波多野结衣影院| 在线xxxxx| av漫画在线观看| 校园春色 亚洲| 国产极品国产极品| 日韩三级久久久| 亚洲欧美卡通动漫| x88av在线| 最新中文字幕av| 欧美性猛交xxxx乱| 久久久久亚洲AV成人无在| 色欲AV无码精品一区二区久久| 久久亚洲AV无码专区成人国产| 91国模少妇一区二区三区| 中文字幕在线观看的网站| 久久福利小视频| 91丝袜在线观看| 中文字幕一区二区三区人妻不卡| 人妻无码一区二区三区| 亚洲熟妇无码av| 三区四区在线观看| 午夜国产小视频| 真实国产乱子伦对白在线| 一区二区三区人妻| 95视频在线观看| 爱爱的免费视频| 五月激情四射婷婷| 国产午夜手机精彩视频| 精品国产午夜福利在线观看| www.黄色网| 国产又粗又猛又色| 婷婷丁香综合网| 婷婷久久综合网| 少妇极品熟妇人妻无码| 无码人妻久久一区二区三区蜜桃| 少妇一级淫片免费放播放| 国产又爽又黄无码无遮挡在线观看| 成人免费无遮挡无码黄漫视频| 国产黄色大片免费看| 99自拍偷拍视频| 日韩大尺度视频| 中文字幕一区二区三区人妻不卡| 欧美日韩生活片| 小日子的在线观看免费第8集| 欧美肉大捧一进一出免费视频| www.av欧美| 人人干在线观看| 精品无码av一区二区三区| 成人影视免费观看| www欧美com| 李丽珍裸体午夜理伦片| 精品熟妇无码av免费久久| 手机在线免费看毛片| 男女性杂交内射妇女bbwxz| 强伦人妻一区二区三区| 视频国产一区二区| 人妻激情偷乱频一区二区三区| 人妻一区二区视频| 中文字幕制服丝袜| 欧洲性xxxx| 欧美性生交xxxxx| 亚洲色图27p| www.日本高清| h色网站在线观看| 国产中年熟女高潮大集合| 国产免费久久久久| 丝袜美腿中文字幕| 欧美色图亚洲视频| 精品成人av一区二区三区| 亚洲精品乱码久久久久久9色| 在线视频 日韩| 免费看污片网站| 影音先锋资源av| 亚洲精品国产熟女久久久| 欧美在线视频第一页| 少妇真人直播免费视频| 国产一区二区三区在线视频观看| 久久人人妻人人人人妻性色av| 久久av红桃一区二区禁漫| 中文字幕国产综合| 亚洲精品成人无码毛片| 免费在线观看a级片| 成人精品999| yjizz视频| 少妇丰满尤物大尺度写真| 三级黄色免费观看| 久久美女免费视频| 欧美熟妇精品黑人巨大一二三区| 情侣偷拍对白清晰饥渴难耐| 韩国女同性做爰三级| 99久久人妻精品免费二区| 免费看的av网站| 国产免费嫩草影院| 国内精品卡一卡二卡三| 日本美女黄色一级片| 艳妇乳肉亭妇荡乳av| 香蕉久久久久久av成人| 亚洲aaa视频| 人妻一区二区视频| 日本黄色网址大全| 人体私拍套图hdxxxx| 亚洲精品无码一区二区| 亚洲av无码久久精品色欲| 69夜色精品国产69乱| 在线观看亚洲大片短视频| 这里只有久久精品| 亚洲熟女一区二区| 国产123在线| 影音先锋制服丝袜| 成年人在线免费看片| 我不卡一区二区| 韩国女同性做爰三级| 少妇人妻好深好紧精品无码| 69精品无码成人久久久久久| www..com.cn蕾丝视频在线观看免费版| 给我看免费高清在线观看| 一区二区三区免费在线观看视频 | 东京热无码av男人的天堂| 久久国产柳州莫菁门| 黄色av片三级三级三级免费看| 成年人看的免费视频| 国产精品天天干| 色www亚洲国产阿娇yao| 欧美一级特黄高清视频| 美国黄色小视频| 午夜少妇久久久久久久久| japan高清日本乱xxxxx| 中文字幕第3页| 久久久久久国产精品无码| 欧美日韩中文字幕视频| 一起操在线播放| 国产精品91av| 全黄一级裸体片|