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

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

代做CNSCC.361、代寫MATLAB編程設(shè)計(jì)

時(shí)間:2024-05-14  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



CW Assignment CNSCC.361
AI
CNSCC.361 Artificial Intelligence Coursework
Introduction:
Marking Scheme
20% of the mark for the CNSCC.361 module is based on the coursework.
At the end of this document, there is an Appendix providing suggestions for a well written
report.
Submission
Put your codes in separate folders (“cw_task1” for task1 and “cw_task2” for task2)
and call the overall zipped file “cw_lastname_firstname.zip” (replace lastname and
firstname with your names). Submit your “cw_lastname_firstname.zip” file and your
report on Moodle.
The length of the report should not exceed 5 pages (the format is specified at the
end of this document – two column, minimum font size 10pt). It is important to
note that we do not want separate reports. There has to be one report.
CW Assignment CNSCC.361
AI
Task 1
This task of the assignment requires you to perform pre-processing of the real climate data
set (temperature and wind speed) measured in Manchester, UK for the period 2010–2015
provided in the file “ClimateData.csv”. This data is a subset of publically available (from
http://www.worldweatheronline.com) data about climate at Manchester which contain 938
records and five features (i.e., five dimensional vectors) of data from the Summer and the
Winter seasons of the period from 2010 to 2014. The meaning of each column of data is
listed below:
Temperature, oC Wind speed, mph Wind direction, deg Precipitation, mm Humidity, %
Recall from the Lectures and the Lab sessions, the main pre-processing steps:
i) normalization,
ii) standardization,
iii) anomaly detection.
Explain clearly the work of the algorithms, analyze their advantages and disadvantages,
provide the code that you developed (do not use downloaded code from elsewhere and be
aware about the plagiarism policy of the University) and the results.
From the literature you may find other pre-processing algorithms (e.g. recursive density
estimation, PCA, etc.) which you can also mention in your analysis and/or use. For these
additional (optional) algorithms you can use available code assuming you correctly make a
reference to it; however, demonstrating the understanding of it is necessary. These
additional/optional algorithms are for distinguishing between good, average and excellent
reports.
Task 2
The Traveling Salesman Problem (TSP) is one of the most famous problems in computer
science. Here we describe the problem and you will implement a Genetic Algorithm (GA)
to find a solution, and show and analyse your results. These are to be done in MATLAB.
GA has been introduced and discussed as part of a lecture. There was also a lab about
GA to give you an initial understanding of the GA approach, but this Task will be applying
GA to a different problem than the one in the lab.
TSP consists of attempting to find the shortest complete tour through a series of points
(cities), starting and ending with the same point (see Figure 1). Finding the shortest route
that visits a set of locations is an exponentially difficult problem: finding the shortest path
for 20 cities is much more than twice as hard as 10 cities. An exhaustive search of all
possible paths would be guaranteed to find the shortest, but is computationally intractable
for all but small sets of locations. For larger problems, optimization techniques, such as
GA, are needed to intelligently search the solution space and find near-optimal solutions.
CW Assignment CNSCC.361
AI
Mathematically, traveling salesman problem can be represented as a graph, where the
locations are the nodes and the edges (or arcs) represent direct routes between the nodes.
The weight of each edge is the distance between the nodes. It is a minimization problem
starting and finishing at a specified vertex after having visited each other vertex exactly
once. The goal is to find the path with the shortest sum of weights. Below, we see a simple
five-node graph:
Figure ** Shortest route example: the problem lies in finding a minimal path passing from all vertices once. For
example the path Path1 {A, B, C, D, E, A} and the path Path2 {A, B, C, E, D, A} pass all the vertices but Path1 has a
total length of 24 and Path2 has a total length of 31.
In this task, you will be given the (x,y) location of 100 cities in “xy.mat” file. So, each
population member (chromosome) will have 100 gens.
Finding a solution to the travelling salesman problem requires that you set up a genetic
algorithm in a specialized way. For instance, a valid solution need to represent a route
where every location is included at least once and only once. If a route contain a single
location more than once, or missed a location out completely it would not be valid. To
ensure the genetic algorithm does indeed meet this requirement special types of mutation
and crossover methods are needed. Firstly, the mutation method should only be capable
of shuffling the route, it shouldn't ever add or remove a location from the route, and
otherwise it would risk creating an invalid solution. Question: What type of mutation? For
each selected population member, try three different mutation operators (Swap, Flip and
Slide) to generate three new population members. With swap mutation two location in the
route are selected at random then their positions are simply swapped. For example, if we
apply swap mutation to the following list, [1,2,3,4,5,6,7,8,9] we might end up with,
[1,2,5,4,3,6,7,8,9]. Here, positions 3 and 5 were switched creating a new list with exactly
the same values, just a different order. Because swap mutation is only swapping preexisting values, it will never create a list which has missing or duplicate values when
compared to the original, and that's exactly what we want for the traveling salesman
problem. With Flip mutation two locations in the route are selected at random, and then,
the positions between two locations are simply flipped. For example, given two randomly
selected locations 3 and 7, if we apply swap mutation to the following list [1,2,3,4,5,6,7,8,9],
we end up with [1,2,7,6,5,4,3,8,9]. Moreover, if we apply slide mutation to the list
[1,2,3,4,5,6,7,8,9], we end up with [1,2,4,5,6,7,3,8,9]. You also need to pick a crossover
method which can enforce the same constraint. What type of crossover? Ordered
crossover.
CW Assignment CNSCC.361
AI
Implement Genetic Algorithm
Your main task is to implement with MATLAB a genetic algorithm that attempts to find a
near-optimal solution. You cannot use MATLAB's “ga” function, so you have to implement
something similar to what you did in the lab.
Your algorithm should make use of crossover and mutation as described above. Begin
with an initial population of at least 50 members and then increase to 200 members (start
with 50 members, then try 100, 150 and 200 members). Run your algorithm for at least
1000 generations/iterations and then increase to 10000 (start with 1000 generations, then
try 2000, 4000, 6000, 8000, and 10000 generations/iterations). Choose the best ones.
You will need to make many design decisions on how to implement the algorithm and what
parameter values to use. For example, you could try different selection methods including
roulette-wheel selection, ranking selection and tournament selection to see which one is
better. Submit the best algorithm. Your mark will depend not only on the code that you
write but also on how well you document your design decisions. In your report, you should
also answer the following questions:
What was the fitness score of the most-fit individual in the first generation? What was
the fitness score of the most-fit individual in the last generation? Plot the fitness score of
the most-fit individual in each generation.
What path did the most-fit individual in the final generation take through the cities? Run the
following code to visualize the path of the most-fit individual in the last generation.
figure('Name','TSP_GA | Results','Numbertitle','off');
subplot(2,2,1);
pclr = ~get(0,'DefaultAxesColor');
plot(xy(:,1),xy(:,2),'.','Color',pclr);
title('City Locations'); subplot(2,2,2);
rte = optRoute([1:100 1]);
plot(xy(rte,1),xy(rte,2),'r.-');
title(sprintf('Total Distance = %1.4f',minDist));
Note that “xy” variable is a 100 × 2 matrix consisting of the (x,y) location of 100 cities
and optRoute variable (integer array) is the best route found by the algorithm (i.e., the
most-fit individual in the final generation). optRoute is 1 × 100 vector. This code will show
a figure as shown below but the connections between cities and total distance might be
different.
CW Assignment CNSCC.361
AI
What was the string of 100 digits of the most-fit individual in the final generation?
Run the algorithm 10 times. Does the fitness score of the most-fit individual in the last
generation change? If so, why?
Run the algorithm using tournament selection, without cross-over operator and using all
three mutation operators (swap, flip and slide) with population of 100 members. Run your
algorithm for 10000 generations/iterations. What was the fitness score of the most-fit
individual in the last generation? Run the above mentioned code to visualize the path of
the most-fit individual in the last generation.
The coursework will be marked based on:
• Code efficiency
• Code commenting and writing style
• Presentation and writing of the report
• Critical Understanding
• Research and Results
• Use of Literature
• Conclusion and Analysis
CW Assignment CNSCC.361
AI
Appendix
Requirements for a Well Written Report
The report should contain:
1. Title, name, student number, course, etc., followed by an abstract.
2. Main part: Introduction, review of the state of the art. The description of the
algorithm and how it performs, including showing results with images. For instance:
“This report describes development and application of the k-means clustering
algorithm to image processing data…” Give the software code that you used to
obtain the results in an Appendix. A very important part of your report is the
analysis of the results. For instance, what are the advantages and limitations of the
algorithms that you used? How can you characterize the results? Are they
accurate?)
3. Conclusions: should describe briefly what has been done, with a summary of
the main results and outline of the possible future work.
The objective of the assignment is to conduct data analysis on a set of data, and present
conclusions on the results.

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



 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代寫CPT206、代做Java編程設(shè)計(jì)
  • 下一篇:COMP3013代做、代寫Python設(shè)計(jì)編程
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(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)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(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

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

          9000px;">

                日韩一级二级三级精品视频| 经典三级一区二区| 粉嫩欧美一区二区三区高清影视 | 色婷婷久久久久swag精品| 日韩av一区二区三区| 国产精品美女视频| 日韩欧美一区中文| 91视视频在线直接观看在线看网页在线看 | 岛国精品在线观看| 午夜精品福利一区二区三区蜜桃| 久久精品一区二区三区不卡牛牛 | 欧美性猛片aaaaaaa做受| 麻豆免费精品视频| 亚洲免费在线视频| 日韩欧美国产系列| 91精品国产综合久久久久久| 欧美网站大全在线观看| 99国产精品99久久久久久| 国产精品996| 国精品**一区二区三区在线蜜桃| 日韩高清国产一区在线| 一区二区国产盗摄色噜噜| 国产精品国产三级国产aⅴ原创| 久久这里只精品最新地址| 欧美xxxx在线观看| 6080午夜不卡| 制服丝袜av成人在线看| 欧美一区二区三区四区高清| 欧美一区三区四区| 欧美成人vps| 在线亚洲免费视频| 在线免费精品视频| 欧美日韩成人激情| 日韩午夜av电影| 日韩免费观看2025年上映的电影| 欧美乱妇15p| 欧美日韩国产a| 欧美精品自拍偷拍| 日韩欧美美女一区二区三区| 日韩精品一区二区三区在线 | 久久99热这里只有精品| 蜜桃一区二区三区在线观看| 精品一区二区三区久久| 高清免费成人av| 97成人超碰视| 欧美日高清视频| 精品三级av在线| 91精品欧美一区二区三区综合在| 欧美一级在线视频| www成人在线观看| 精品理论电影在线| 久久久电影一区二区三区| 中文字幕一区二区日韩精品绯色| 亚洲欧美激情插| 视频在线观看一区| 国产精品一卡二卡在线观看| 91色在线porny| 欧美一卡2卡3卡4卡| 中国色在线观看另类| 亚洲在线视频免费观看| 青青草一区二区三区| 成人亚洲精品久久久久软件| av在线不卡观看免费观看| 欧美无砖砖区免费| 国产日韩欧美高清在线| 天使萌一区二区三区免费观看| 亚洲观看高清完整版在线观看| 国产一区二区福利| 91老司机福利 在线| 日韩久久久精品| 中文字幕在线播放不卡一区| 午夜久久久久久久久| 国产不卡在线播放| 欧美日韩黄色一区二区| 国产女同性恋一区二区| 日韩中文字幕亚洲一区二区va在线 | 免费在线一区观看| 国产成人啪午夜精品网站男同| 在线观看免费成人| 欧美国产乱子伦| 久久91精品久久久久久秒播| 紧缚奴在线一区二区三区| 大胆亚洲人体视频| 精品毛片乱码1区2区3区| 亚洲成a天堂v人片| 色综合天天综合狠狠| 久久综合五月天婷婷伊人| 日日摸夜夜添夜夜添精品视频| 色综合视频在线观看| 国产日产欧美一区| 精品一区二区三区欧美| 欧美另类一区二区三区| 综合精品久久久| 成人av在线观| 91精品国产麻豆国产自产在线| 亚洲欧美激情插| 99麻豆久久久国产精品免费优播| 国产日本欧美一区二区| 激情五月播播久久久精品| 一本色道亚洲精品aⅴ| 国产精品成人免费精品自在线观看| 久久激情综合网| 欧美一二三四区在线| 日韩av一二三| 欧美一区日韩一区| 男女男精品网站| 欧美大片国产精品| 黑人巨大精品欧美一区| 久久综合资源网| 国产精品一区免费在线观看| 精品国产一区二区三区久久影院 | 99热这里都是精品| 亚洲bt欧美bt精品| 久久久久国产精品麻豆ai换脸| 色综合久久久久综合体桃花网| 午夜国产不卡在线观看视频| 国产午夜亚洲精品羞羞网站| 日本二三区不卡| 久久99蜜桃精品| 亚洲美女在线一区| 91精品国产品国语在线不卡| 国产iv一区二区三区| 午夜欧美电影在线观看| 欧美激情一区二区三区在线| 在线观看av一区二区| 国产成+人+日韩+欧美+亚洲| 亚洲不卡一区二区三区| 国产精品电影一区二区三区| 日韩亚洲电影在线| 91在线视频免费观看| 蜜臀av性久久久久蜜臀aⅴ四虎 | 亚洲国产综合91精品麻豆| 欧美tickle裸体挠脚心vk| 欧美性xxxxxxxx| 成人国产精品免费观看动漫| 裸体在线国模精品偷拍| 亚洲一区在线看| 亚洲视频一区二区在线观看| 欧美精品一区二区久久婷婷| 欧美日韩日本视频| 91麻豆精品秘密| 成人免费福利片| 精品一区二区成人精品| 热久久久久久久| 石原莉奈一区二区三区在线观看| 一区二区三区国产| 中文字幕一区不卡| 国产精品久久久久婷婷| 久久久99精品久久| 2022国产精品视频| 精品1区2区在线观看| 日韩欧美你懂的| 日韩一区二区三区免费观看| 欧美猛男超大videosgay| 欧美亚洲愉拍一区二区| 色综合色狠狠天天综合色| 91小宝寻花一区二区三区| 99久久er热在这里只有精品66| 丁香啪啪综合成人亚洲小说| 国产传媒一区在线| 成人h版在线观看| 成人国产精品免费网站| 成人高清视频免费观看| 成人黄动漫网站免费app| 成人免费视频一区二区| 成人av网址在线观看| 99久久久久久99| 色94色欧美sute亚洲线路一ni| 欧美在线播放高清精品| 欧美日本在线播放| 91精品国产日韩91久久久久久| 精品日韩一区二区三区 | 中文字幕一区二区三中文字幕| 国产精品日韩成人| 日韩美女啊v在线免费观看| 亚洲视频你懂的| 亚洲一二三四区不卡| 丝袜亚洲另类欧美综合| 九色|91porny| 91亚洲资源网| 精品视频在线免费看| 欧美变态tickling挠脚心| 亚洲国产高清在线观看视频| 亚洲精品一卡二卡| 婷婷综合五月天| 国产在线日韩欧美| 色妹子一区二区| 日韩欧美激情四射| 国产精品免费aⅴ片在线观看| 亚洲精品成人天堂一二三| 久久爱www久久做| 99久久er热在这里只有精品66| 欧美日韩亚洲综合一区 | 一道本成人在线| 欧美一级理论片| 国产精品成人午夜| 日本人妖一区二区| 福利一区福利二区| 欧美一级二级三级蜜桃| 中文字幕一区二区三区不卡|