代做UFCXR-15-3 Autonomous Agents and Multiagent Systems 2024-2025代做留学生Python程序

UFCXR-15-3

Autonomous Agents and Multiagent Systems

2024-2025

Section 1: Overview

In short, you need to develop a Multi-agent system using a simulation environment. You need to submit diagrams, code, slides and video.

See Assessment Specification for more details.

Module learning outcomes assessed:

1. Apply agent-based analysis and design skills and techniques, appropriate to solving complex AI problems.

2.  Identify situations where agent-based problem analysis, system design and programming paradigms are applicable and to create software that exploits them.

3. Appraise the concepts of multi-agent systems including cooperation, competition, learning and develop multi agent systems to solve complex problems.

Submission Rules

This assessed work must be submitted as follows:

1)  Submission of Activities 1 to 4:

•  Commit and push the solution to YOUR OWN INDIVIDUAL GITHUB REPOSITORY THAT IS CREATED ONCE YOU ACCEPT THE ASSIGNMENT. There will be one Github assignment for each submission point and NO OTHER GITHUB REPOSITORIES WILL BE ACCEPTED.

•  Make sure your GitHub username is linked to your student username and ID.

•  For each submission you will create a file named solution.md in the root of your repository with a brief description of the steps needed to run your solution.  Likewise you should include links to the solution of each activity included in the submission. No word count limit here, but this is expected to be brief but enough to run your solution and appreciate the work you have completed.

•  Python code should be organised within the src folder and should include a requirements .txt file indicating clearly the libraries used and the version.

•  For all programming activities, the code should be documented thoroughly. Implementation should be aligned to the design.

•  Every file that you use in your solution should be copied in the repository. No links to partial solutions copied or uploaded to external repos or sites.

2)  Submission of Activity 5:

•  Uploading file via Blackboard submission point. See Deliverables expected for each activity.

Section 2: Assignment Specification

Robot-Assisted Farming

In the last few years, robots have been used in agriculture.  These are useful to improve efficiency in farming operations as robots can work tirelessly at different weather and terrain conditions.  A recent example from A California Farm shows how picker robots are introduced to pick strawberries. While these robots have the ability to make some decisions a human operator is still required.

For this coursework, assume the hardware for two types of next generation farming robots has been built with the following characteristics:

Amphibious Picker Robots

These are basic robots that are able to operate fully autonomously. These robots have an arm with ability to cut strawberries from trees as well as store and carry them.  Once the robot’s storage is full they need to return to the base. These robots are able to move in rough farm terrain and also across watery surfaces (e.g. rivers) without compromising the payload. However, the speed of these robots gets limited when these are moving through water. Moreover, these robots can not move through trees so need to use existing lanes.

Explorer Drones

These are drones that are able to explore autonomously and send signals to other robots (e.g. to picker robots) about the location of the crops that need to be picked. These robots move in 6 directions: front, back, left, right, up and down. These drones fly over trees taking pictures of the crops, then computer vision algorithms are used to calculate the urgency for collection of the crops in a given area.

Operation Modes Basic Mode

•  Exploring and movement around the farm according to each type of robot capabilities.

•  Drones locate crops to be collected and wait for the picker robots, once they get there, the drones continue exploring.

• Amphibious picker robots move randomly to locate the crops to be collected, pick the crops until their storage is full, in that case they return to the base station to unload the crops collected and continue picking.

•  Robots have a battery whose energy is consumed as time progresses.

Extended Operation

•  Communication of drone and picker robots to avoid random movement of picker robots:  picker robots only leave the station once the drone send a signal with coordinates of where the crops need to be collected. Drone can send messages to individual robots or broadcast location of the crops to all the robots.

•  Crops age and grow as simulation progresses.  Once an area has been fully picked new seeds are  grown, re-starting the ageing cycle. Environment handles the ageing and re-growing of strawberries.

Environment

• The configuration of the environment, including the location of robots and all elements in the environment, can be random, in other words, robots are intended to work with any configuration of the same group of elements.

• The number of robots of each type to be deployed for a particular mission can be pre-defined by operators.

Assume you have been hired to develop the software for the next-generation of these robots.  You are asked to complete the following activities:

Activity 1: Agent System Development - Release 1.0 (up to 25% assignment marks)

For this activity you will develop a multi-agent system that will operate in a simulated environment. In your system the robots work according to the basic mode of operation.  Your simulation environment should look as presented below. While the environment representation might not be exactly the same of the figure, y our e nvironment m ust i nclude t he e lements p resent i n t his figure.

As part of your development you need to identify the actions, states and transitions of the autonomous agents that will control the robots considering the available hardware features. Your design will define the way robots make decisions to trigger the required actions and then the implementation should follow this design. Testing should cover the unit tests of environment creation and key functions implemented for each agent.

Figure 1: Environment Model

Activity 2: Robot Farming Games (up to 10% assignment marks)

You need to propose a game where 2 farming robots as the ones described in this specification are  interacting and analyse their interactions using a reference game. Pick one of the common games studied in game theory (See list here ) and use it as reference to define a s ituation w here o nly t wo farming robots need to compete or cooperate.  For example, a basic situation would be that the two robots are facing each  other aiming to move in opposite directions, similar to the game  of  chicken discussed in the lectures. Your game should contain all the elements of a game as described in the course lectures.

Activity 3: Agent System Development - Release 2.0 (up to 20% assignment marks)

On top of your development of your Release 1.0 submission, you need to implement the extended mode of operation as specified a b ove. Y our s olution s hould i nclude a s witch f or t he u ser t o c hange b etween modes of operation. Likewise, you will need to evaluate the performance of the simulated environment with at least two relevant KPI (Key Performance Indicators) of your choice.

Activity 4: Agent System Development - Release 2.1 (up to 20% assignment marks)

On top of your development of your Release 2.0, you need to propose and implement the a novel mode of operation. Your solution should include a switch for the user to change between the previously implemented modes of operation and the novel model.

The novel mode should be a new feature to add to your agent system on top of the functionality already  implemented.  The focus should be on the novelty and complexity of the new feature rather than on  the quantity. The feature should be substantially different t o t hose a lready i mplemented a nd include application of concepts covered in the module sessions or researched.  Examples of potentially new features  are:

• Agent learning, for example, agents using reinforcement learning or other form of learning to achieve environment goals.

•  New cooperation/competition approach among agents, for example based on the game proposed in Activity 2

•  New decision model for a agents

•  New exploration approach for an agent

•  New type of agent relevant to the simulation with a distinct behaviour that need to interact with existing agents.

Activity 5: Explanatory Video (25% assignment marks)

Create a explanatory video of your solutions covering system’s functional aspects, evaluation of performance of robots and details of how you have designed and implemented your system, with emphasis to the features you found more challenging to implement. The rules for the video are as follow:

• The length of the video should be MAX 10 min.  At this point, the video will be stopped and additional contents, if any, will not be considered as part of the solution.

• You are expected to use materials (diagrams, code, software and slides) developed in the previous activities.

•  If your solution includes concepts or approaches not covered in modules sessions you should give a  brief introduction to those concepts/approaches before discussing how you have implemented those.



热门主题

课程名

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
站长地图