CM3020编程代写、代做Python语言程序
CM3020 Artificial Intelligence Mid-term course work specification
Introduction
This document contains information about the mid-term coursework. You need
to complete Part A and Part B. Part A is worth 30%. Part B is worth 70%.
Part A
Write an essay about game playing AI. Your essay should answer the following
questions. I recommend starting with these as section headings, but you might
want to re-structure it later as you see fit.
1) Why do researchers create AI systems that play games?
To answer this question, explain how researchers justify the development of AIs
that play games.
2) What are THREE possible application areas for AI systems that play
games?
To answer this question, describe three possible application areas for game playing AI systems.
3) What do researchers think are the ethical problems with game-playing
AIs?
To answer this question, discuss the ethical aspects presented by researchers
about game playing AIs.
4) Are neural networks the best game players?
Based on what you have read, discuss this question, using evidence from the
literature.
5) How reliable are my references?
Choose three of the references you used and evaluate the reliability of the
reference.
You should answer each of the questions using information that you have found
in the literature. To find relevant papers, you can start with the list provided
in the AI game-player case study. To dig deeper you can search for your own
references and/ or you can follow up the references at the end of other papers.
Provide direct quotes from the research papers you have read to show how the
researchers answer those questions and add your own commentary.
For example, ‘Smith et al. evaluated game playing AIs based on their ability
to consume pizza at 5am after staying up all night. They found that current
generation systems in 2021 were not human-competitive. They said: “since
1
the removal of CD-ROM drives from tower systems, the computers just have
nowhere to put the pizza’ ’ [6]. I find that the pizza eating metric is flawed as it
does not account for people who are lactose intolerant and computers do not eat
pizza.’
Add an appropriately formatted list of references at the end of your essay.
Part A Deliverables:
• Essay in PDF format up to 1,500 words.
Part A Marking criteria
Part A is worth 30% of your final mark.
• All questions answered
• Clear and logical writing using evidence from the literature
• Proper citations and quotes
• Reference list at the end of the essay
2
Part B
Introduction
This section describes what you have to do and what you have to deliver for
Part B of the mid-term CM3020 AI coursework.
For this part of the coursework, you need to build on top of the codebase from
the Genetic Algorithm/ Creatures case study. Your objective is to adapt the
evolutionary algorithm so that the creatures evolve to complete a new task.
The new task involves climbing a mountain. We have created a special new
environment for the creatures to operate in. You need to integrate the genetic
algorithm code to that new environment such that it evolves creatures that can
climb the mountain.
The following image illustrates the new environment:
Figure 1: Mountain climbing environment
You can see that there is a kind of sandbox with a mountain in the middle.
The idea is for the creature to get as high as possible up the mountain, without
cheating and flying into the air. Your job is to integrate that new environment
into the simulation code and to adapt the fitness function so it measures maximum
closeness to the top of the mountain.
How to complete the coursework
Download the code for the new environment, linked below. You will see that I
have included the code as it stood at the end of my development work. There
are also some new scripts in there:
3
• cw-envt.py: run this to see the environment in action. You can see that a
random creature is generated and dropped into the arena.
• prepare_shapes.py: This is the script I used to generate the mountain.
You will need to experiment with this script to generate some different
shapes of mountains.
Step-by-step process you should follow to complete the basic part of the course work:
• Download the example code
• Set up a virtual environment with the appropriate packages to run the
code in cw-envt.py
• Verify that you can run cw-envt.py and that you see the image shown
above
• Make a copy of cw-envt.py and integrate the full genetic algorithm system
you should have developed during the course so that the simulation loads
up the sandbox + mountain environment and tests the creatures in there
• Change the fitness function so that fitness is based on ability to climb the
mountain. It is up to you how to do this
• Carry out a series of experiments where you test different GA and genome
settings, e.g. different population size and other high-level settings
• Produce graphs and tables describing how the different settings you tried
affect the mountain climbing
Advanced coursework steps: experimenting with the encod ing scheme
Once you have succeeded in integrating the new environment into your genetic
algorithm, you have defined a new fitness function and you have tested it out
with various settings, you are ready for the advanced part of the coursework.
The advanced part involves experimenting with the genetic decoding scheme
in order to explore a different space of possible creatures. Things you can
experiment with are as follows:
• the motor controls
• the shape of the parts of the robot
• having different parts of the robot be evolvable, e.g. you do not evolve
every part of the robot, just some of it
There are lots of things you can try out here, for example, can you start with a
fixed design robot, and just evolve the motor control parameters? Can you fix
some parts of the robot so they cannot evolve, and other parts do, e.g. evolving
just leg designs? Can you try some different shapes and connection settings?
You should carry out further experiments wherein you try out your ideas and
summarise them in graphs and tables.
4
How to achieve an exceptional grade (>80%)
There are many possible extensions you can work on to achieve an exceptional
grade. Here are some ideas to get you started:
• Experiment with different landscapes: have a look at prepare_shapes.py.
Can you use the code there to generate some different landscapes and
experiment with those?
• Experiment with sensory input: the creatures cannot receive information
about their environment at the moment. Can you have some sort of motor
control that responds to a stimulus from the outside world? E.g. can the
robot have motors that only turn on or off when it is facing the top of the
mountain?
The suggestions above are only some possible things you can do here. It is up to
you to choose an area to explore here.
Preparing your code
You need to follow these instructions to prepare and submit your code:
• Concatenate all the code for your project into a single file (e.g. on ma cos/linux cat *.py > mycode.txt)
• Load the code file into a word processor and add clear colour highlights
showing the main blocks of code that you wrote on your own without
assistance
• Convert to a PDF and submit
Preparing a video demo
Please make a 5 minute video wherein you present examples of the creatures you
were able to evolve. A really good video will contain slides explaining clearly
what we are looking at. e.g. state what the experiment was that led to a given
creature. If you completed the advanced criteria, make a section in the video
for this. If you completed the exceptional criteria, make a section for this. The
video should not just be a montage of creatures - there should be explanation
and narrative there too.
Part B Deliverables
• Report: 1,500 - 2,000 words long, PDF format
• All code in PDF format as specified above
• Video: around 5 minutes long, MP4 format
• Why my work is exceptional' statement, if you have completed
all other other requirements and attempted extensions
5
Part B Marking criteria
Part B is worth 70% of your mark.
Report:
• Clearly explains the basic experiments you carried out
• Presents the important results of your experiments in the form of graphs
and tables
• Has a section explaining the experiments you did with the encoding scheme
• Presents the important results of your experiments with the encoding
scheme in the form of graphs and tables
• If you attempted the exceptional criteria, explain and present results of
what you did
• You can include code fragments in the report if it helps you to explain
what the experiment was
• the report should be 1,500 - 2,000 words long. Please state the word count
on the first page
• Is PDF format
Code
• Code is presented as a single file in PDF format with clearly highlighted
sections indicating the code you personally wrote without assistance
• Code complexity and quality, beyond the template code provided
• Code quality: formatting, comments
Video
• Video is in MP4 format
• Video is around 5 minutes long
• Video is structured, with appropriate information given about what we are
seeing
• Video shows examples of the creatures that evolved under different condi tions
6

热门主题

课程名

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
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图