首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
COMP5511代做、c/c++,Java编程代写
项目预算:
开发周期:
发布时间:
要求地区:
COMP5511 Artificial Intelligence Concepts
- Assignment 1 -
Important Notes
1. Write your report using the given word template (maximum 15 pages). On top of the first
page, provide your name and matriculation number.
2. Students can modify the Matlab file provided or geatpy (https://github.com/geatpydev/geatpy) or use other programming languages to solve the problem given.
3. The solution and report should be the results of each individual work.
4. You must write the readme file to explain how the code works. (e.g., the code is
implemented in Matlab language. The code is run on the Matlab R2020 version. The code
requires the GA toolbox/package…)
5. Please follow academic integrity.
6. The report together with the codes and readme should be submitted in a zip file
(MatricNumber.zip) to LEARN@PolyU (https://learn.polyu.edu.hk/ultra/course) under
“COMP5511-> Assessments->Assignment 1” before the due date of 11:59 PM on 2
November 2022 (Thursday). No late submission will be accepted.
Report Structure
1. Introduction: Give a brief introduction about TSP, GA, etc.
2. Methodology: Include five subsections regarding the five tasks. In each subsection, you
should give a detailed description of the designed algorithm, including the overall
framework, crossover and mutation operators, selection operator, and other
components.
3. Experimental results: Include five subsections regarding the five tasks. In each
subsection, you should provide the experimental results and carry out sensitive studies
with the various parameters, e.g., the population size, and discuss the effects of changing
these parameters. You need to show the results in various formats, such as tables, figures,
etc.
4. Conclusion: You should summarize what you have learned and your findings.
Instruction: How to submit it online on LEARN@PolyU
1. Find and click COMP5511 on your course menu (https://learn.polyu.edu.hk/ultra/course).
2. Find and click Assessments and Assignment 1
3. Attach your zip file and submit it
Assignment Description
Abstract: Traveling Salesman Problem (TSP) is a classical combinatorial problem that is
deceptively simple. This problem is about a salesman who wantsto visit n customers cyclically.
In one tour, the salesman must visit each customer just once and should finish up where he
started. Since each customer is situated in different locations, the distance between every
customer will be different. The objective is to find the shortest round-trip route that visits
each customer once and then returns to the starting customer. The dataset with 100
customers is provided in the zip file (‘TSPTW_dataset.txt’).
In this assignment, students are required to finish the following five tasks:
(1) Classical TSP
A genetic algorithm is used to find the shortest round-trip route of these 100 customers. The
locations of customers are given in TSPTW_dataset.txt. Students should visualize the roundtrip route and provide the total distance.
(2) Dynamic optimization problem
In the real-world TSP, the location and number of customers may vary with time, such a TSP
problem can be considered a dynamic optimization problem. Considering such a scenario:
For each environment = 0, … ,5, the first 50 + 10 customers are allowed to be visited.
Besides, the location of a customer varies with the environment ,
!"# = + 2 ⋅ cos /
2 1,
!"# = + 2 ⋅ sin /
2 1,
where !"# and !"# are the new X coordinate and Y coordinate at environment ,
respectively. and are the X coordinate and Y coordinate provided in the
TSPTW_dataset.txt. Assuming that the environmental variable is changed every 100
generations, students should try to design a genetic algorithm to track the shortest roundtrip route for each environment by reusing the solutions from the last environment to
accelerate the search in the new environment and then compare the results from the genetic
algorithm without reusing the solutions from the last environment.
(3) Large-scale optimization problem
By adding 100 to the X coordinate for each customer in the TSPTW_dataset.txt, additional
100 customers can be formed. Regarding the newly formed 100 customers and the original
100 customers as a whole, the new problem can be regarded as a large-scale problem. For
this large-scale problem, the customers can be divided into several small-scale regions by
using clustering techniques, e.g., K-means. The salesman must finish visiting all the customers
within the region before visiting any other customers in other regions. In this task, students
are required to combine the clustering technique with a genetic algorithm to handle the largescale optimization problem.
(4) Multi-objective optimization problem
The salesman may consider more than one objective. For example, the salesman not only
wants to minimize the travel distance of the round-trip route but also maximize the sales
profit. Assume that the sales profit of each customer can be randomly generated between
[1,50], the two objective functions, (i.e., total travel distance $ and total sales profit %) may
be conflicting, that is, a solution cannot satisfy the maximal sales profit and minimal travel
distance at the same time. The multi-objective optimization problem can be formulated as
< min $ , max % >. An alternative approach is to change the multi-objective optimization
problem to a single-objective optimization problem by weighting the two objective functions,
min ( $ − %),
where ( > 0) is the weight on %. Students can specify the value to get the optimal
solution.
In addition to the weighting objective functions-based method, students should develop a
Pareto dominance selection-based evolutionary algorithm to handle the multi-objective
optimization problem and discuss the advantages and disadvantages of the weighting
objective functions-based method and Pareto dominance selection-based method.
(5) Time window constraint problem
The salesman is required to visit a certain customer within a certain time window, i.e., the
salesman should visit the customer between “READY TIME” and “DUE TIME”, and the time
window for each customer is given in TSPTW_dataset.txt. The travel time between customers
is computed by the Euclidean distance between customers. Considering the time window as
an additional objective, students are required to develop a Pareto dominance selection-based
evolutionary algorithm to solve the problem by optimizing the following three objectives:
minimize total travel distance, maximize total sales profit, and minimize the total violation
value of the time window, where the total violation value of the time window is the
summation of the violation value of the time window for each customer. For example, “READY
TIME” and “DUE TIME” of the “CUST NO 3” are 2 and 61, respectively. If the salesman visits
the “CUST NO 3” at time 63, the violation value of the time window is 63-61=2. If the salesman
visits the “CUST NO 3” at time 1, the violation value of the time window is 2-1=1.
Discussion and analysis:
Students must give the details of the designed algorithms and perform sensitive studies for
the above tasks with the various parameters, for example, the crossover and mutation rates,
the population size, and the number of generations, and discuss the effects of changing these
parameters. Students need to show their results in various formats, such as tables, figures,
etc.
References
[1] http://comopt.ifi.uni-heidelberg.de/software/TSPLIB95/
[2] http://myweb.uiowa.edu/bthoa/TSPTWBenchmarkDataSets.htm
[3] https://github.com/geatpy-dev/geatpy
[4] Deb, Kalyanmoy, et al. "A fast and elitist multiobjective genetic algorithm: NSGA-II." IEEE
Transactions on Evolutionary Computation, 2002.
[5] Yang, Jin-Qiu, et al. "Solving large-scale TSP using adaptive clustering method." IEEE International
Symposium on Computational Intelligence and Design, 2009.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!