日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

代寫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)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

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

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              9000px;">

                        懂色av噜噜一区二区三区av| 日本道在线观看一区二区| 99免费精品在线观看| 欧美国产视频在线| 色综合久久综合网| 亚洲在线观看免费视频| 欧美三级中文字幕在线观看| 亚洲成精国产精品女| 欧美久久久久久久久| 久久av中文字幕片| 国产精品乱码人人做人人爱| 99国内精品久久| 首页综合国产亚洲丝袜| 国产亚洲一区二区三区在线观看| jlzzjlzz亚洲日本少妇| 日韩经典中文字幕一区| 久久精品一区二区三区不卡 | 91小宝寻花一区二区三区| 一区二区三区中文字幕电影 | 国产中文字幕精品| 一区免费观看视频| 欧美大片在线观看| 色婷婷综合五月| 国产综合色视频| 一区二区三区日本| 国产欧美一二三区| 91精品国产91久久久久久一区二区 | 国产亚洲精久久久久久| 欧美性猛交xxxx乱大交退制版| 蜜桃传媒麻豆第一区在线观看| 国产精品免费视频观看| 日韩手机在线导航| 在线观看视频91| 成人亚洲一区二区一| 精久久久久久久久久久| 亚洲成人免费影院| 亚洲丝袜另类动漫二区| 久久亚洲综合色| 日韩美一区二区三区| 在线不卡一区二区| 色伊人久久综合中文字幕| 国产一区二区三区美女| 日韩国产欧美三级| 亚洲国产另类精品专区| 亚洲欧美另类久久久精品2019| 久久久精品黄色| www国产成人| 日韩三级高清在线| 在线成人高清不卡| 欧美一区二区三区影视| 色94色欧美sute亚洲线路一ni | 日韩一区国产二区欧美三区| 大桥未久av一区二区三区中文| 韩国毛片一区二区三区| 蜜臀久久99精品久久久画质超高清| 亚洲电影在线免费观看| 亚洲人123区| 亚洲黄色在线视频| 久久你懂得1024| 欧美精品第一页| 91丨porny丨最新| 成人午夜在线免费| 久久精品99久久久| 肉丝袜脚交视频一区二区| 亚洲品质自拍视频| 18欧美乱大交hd1984| 国产精品高潮呻吟| 国产精品你懂的在线欣赏| 欧美成人video| 8x福利精品第一导航| 911精品产国品一二三产区| 91精品国产福利| 91精品在线免费观看| 欧美国产日韩a欧美在线观看| 成人ar影院免费观看视频| 日本亚洲电影天堂| 成人欧美一区二区三区黑人麻豆| 91亚洲精品久久久蜜桃网站| 国产一区二区三区在线观看精品| 色成年激情久久综合| 亚洲一二三区视频在线观看| 色一情一乱一乱一91av| www.视频一区| 91网站视频在线观看| 欧美日韩三级在线| 亚洲精品一区二区三区99| 国产精品久久99| 亚洲国产综合色| 国产一区二区三区免费看| 丰满放荡岳乱妇91ww| 亚洲欧美韩国综合色| 亚洲国产欧美在线| 欧美精品一区二区三区在线| 久久99精品国产.久久久久| 亚洲成人久久影院| 国产在线不卡一卡二卡三卡四卡| 国产亚洲成年网址在线观看| 亚洲欧美日韩国产手机在线| 日韩精品久久理论片| 国内成人免费视频| 久久久久久免费毛片精品| 中文字幕一区二区三区乱码在线 | 日韩精品电影在线| 国产成人鲁色资源国产91色综| aaa欧美大片| 欧美区在线观看| 国产女同互慰高潮91漫画| 亚洲永久免费av| 国产+成+人+亚洲欧洲自线| 99久久精品免费| 欧美美女视频在线观看| 日本一区二区成人在线| 亚洲成av人在线观看| 国产mv日韩mv欧美| 精品国产99国产精品| 国产精品女主播在线观看| 亚洲不卡在线观看| 色老汉av一区二区三区| 欧美激情中文字幕一区二区| 蜜桃在线一区二区三区| 欧美日韩综合在线| 一区2区3区在线看| www.日韩在线| 久久九九99视频| 久久疯狂做爰流白浆xx| 欧美精品自拍偷拍动漫精品| 色狠狠桃花综合| 久久国产精品第一页| 99国产一区二区三精品乱码| 一本大道久久a久久精二百| 国产亚洲综合色| 久久99最新地址| 日韩欧美一区二区不卡| 丝袜美腿成人在线| 欧美日韩国产欧美日美国产精品| 91农村精品一区二区在线| 综合久久一区二区三区| 日韩高清电影一区| 国产一区二区在线观看视频| 精品视频在线免费看| 在线观看三级视频欧美| 亚洲另类中文字| 99久久伊人精品| 日韩美女久久久| www.成人在线| 亚洲精选一二三| 在线日韩一区二区| 婷婷一区二区三区| 日韩欧美一级特黄在线播放| 国产在线不卡一区| 99麻豆久久久国产精品免费 | 日韩一区二区三区高清免费看看| 青青草原综合久久大伊人精品优势 | 婷婷中文字幕一区三区| 欧美电影一区二区三区| 久久国产三级精品| 成人欧美一区二区三区小说| 精品视频在线免费观看| 麻豆久久久久久| 亚洲国产高清在线观看视频| 日本高清不卡视频| 免费久久精品视频| 国产精品国产三级国产aⅴ中文 | 国产99精品国产| 亚洲精品久久久蜜桃| 欧美一区二区三区在| 国产九色精品成人porny| 国产精品伦一区| 欧美亚洲综合久久| 九一九一国产精品| 亚洲欧美乱综合| 精品国产成人在线影院| 一本到不卡精品视频在线观看 | 亚洲国产一二三| 欧美成人性战久久| 一本到一区二区三区| 青青草成人在线观看| 国产精品理论片在线观看| 欧美日韩国产另类不卡| k8久久久一区二区三区 | 性做久久久久久久久| 久久综合一区二区| 在线观看日韩精品| 波多野结衣的一区二区三区| 一区二区欧美在线观看| 久久午夜羞羞影院免费观看| 在线看国产一区二区| 风间由美性色一区二区三区| 热久久一区二区| 亚洲综合精品久久| 亚洲欧洲av一区二区三区久久| 亚洲精品一线二线三线| 色网站国产精品| 成人激情小说乱人伦| 蜜臀av性久久久久av蜜臀妖精| 亚洲精品国产一区二区精华液| 91社区在线播放| 不卡视频免费播放| 国产成人精品亚洲日本在线桃色| 日韩成人午夜电影|