国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代做6CCS3AIN MDP-solver

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



1 Introduction

Coursework
This coursework exercise asks you to write code to create an MDP-solver to work in the Pacman environment that we used for the practical exercises.
Read all these instructions before starting. This exercise will be assessed.
2 Getting started
You should download the file pacman-cw.zip from KEATS. This contains a familiar set of files that implement Pacman, and version 6 of api.py which defines the observability of the environment that you will have to deal with, and the same non-deterministic motion model that the practicals used.
Version 6 of api.py, further extends what Pacman can know about the world. In addition to knowing the location of all the objects in the world (walls, food, capsules, ghosts), Pacman can now see what state the ghosts are in, and so can decide whether they have to be avoided or not.
3 What you need to do 3.1 Write code
This coursework requires you to write code to control Pacman and win games using an MDP-solver. For each move, you will need to have the model of Pacman’s world, which consists of all the elements of a Markov Decision Process, namely:
• A finite set of states S;
• A finite set of actions A;
• A state-transition function P (s′ |s, a); • A reward function R;
• A discount factor γ ∈ [0, 1];
Following this you can then compute the action to take, either via Value Iteration, Policy Iteration or Modified Policy Iteration. It is expected that you will correctly implement such a solver and optimize the choice of the parameters. There is a (rather familiar) skeleton piece of code to take as your starting point in the file mdpAgents.py. This code defines the class MDPAgent.
There are two main aims for your code:
 1 Mallmann-Trenn / McBurney / 6ccs3ain-cw

(a) Win hard in smallGrid
(b) Win hard in mediumClassic
To win games, Pacman has to be able to eat all the food. In this coursework, for these objectives, “winning” just means getting the environment to report a win. Score is irrelevant.
3.1.1 Getting Excellence points
There is a difference between winning a lot and winning well. This is why completing aim (a) and (b) from previous section allows you to collect up to 80 points in the Coursework. The remaining 20 points are obtained by having a high Excellence Score Difference in the mediumClassic layout, a metric that directly comes from having a high average winning score. This can be done through different strategies, for example through chasing eatable ghosts.
A couple of things to be noted. Let W be the set of games won, i.e., |W | ∈ [0, 25]. For any won game i ∈ W define sw(i) to be the score obtained in game/run i.
• ∆Se in the marksheet is the Excellence Score Difference. You can use the following formula to calculate it when you test your code and compare the result against the values in Table 3
∆Se = 􏰀(sw(i) − 1500) (1) i∈W
Losses count as 0 score and are not considered. If ∆Se < 0, we set it to 0 (you cannot have a negative excellence score difference).
• Because smallGrid does not have room for score improvement, we will only look at the mediumClassic layout
• You can still get excellence points if your code performs poorly in the number of wins; marking points are assigned independently in the two sections
• Note however that marking points are assigned such that it is not convenient for you to directly aim for a higher average winning score without securing previous sections’s aims (a) and (b) first
• We will use the same runs in mediumClassic to derive the marks for Table 2 and Table 3.
3.2 Things to bear in mind
Some things that you may find helpful:
(a) We will evaluate whether your code can win games in smallGrid by running: python pacman.py -q -n 25 -p MDPAgent -l smallGrid
-l is shorthand for -layout. -p is shorthand for -pacman. -q runs the game without the interface (making it faster).
(b) We will evaluate whether your code can win games in mediumClassic by running: python pacman.py -q -n 25 -p MDPAgent -l mediumClassic
The -n 25 runs 25 games in a row.
 2 Mallmann-Trenn / McBurney / 6ccs3ain-cw

(c) The time limit for evlauation is 25 minute for mediumClassic and 5 minutes for small grid. It will run on a high performance computer with 26 cores and 192 Gb of RAM. The time constraints are chosen after repeated practical experience and reflect a fair time bound.
(d) When using the -n option to run multiple games, the same agent (the same instance of MDPAgent.py) is run in all the games.
That means you might need to change the values of some of the state variables that control Pacman’s behaviour in between games. You can do that using the final() function.
(e) There is no requirement to use any of the methods described in the practicals, though you can use these if you wish.
(f) If you wish to use the map code I provided in MapAgent, you may do this, but you need to include comments that explain what you used and where it came from (just as you would for any code that you make use of but don’t write yourself).
(g) You can only use libraries that are part of a the standard Python 2.7 distribution. This ensures that (a) everyone has access to the same libraries (since only the standard distribution is available on the lab machines) and (b) we don’t have trouble running your code due to some library incompatibilities.
(h) You should comment your code and have a consistent style all over the file.
3.3 Limitations
There are some limitations on what you can submit.
(a) Your code must be in Python 2.7. Code written in a language other than Python will not be marked.
Code written in Python 3.X is unlikely to run with the clean copy of pacman-cw that we will test it against. If is doesn’t run, you will lose marks.
Code using libraries that are not in the standard Python 2.7 distribution will not run (in particular, NumPy is not allowed). If you choose to use such libraries and your code does not run as a result, you will lose marks.
(b) Your code must only interact with the Pacman environment by making calls through func- tions in Version 6 of api.py. Code that finds other ways to access information about the environment will lose marks.
The idea here is to have everyone solve the same task, and have that task explore issues with non-deterministic actions.
(c) You are not allowed to modify any of the files in pacman-cw.zip except mdpAgents.py.
Similar to the previous point, the idea is that everyone solves the same problem — you can’t change the problem by modifying the base code that runs the Pacman environment. Therefore, you are not allowed to modify the api.py file.
(d) You are not allowed to copy, without credit, code that you might get from other students or find lying around on the Internet. We will be checking.
This is the usual plagiarism statement. When you submit work to be marked, you should only seek to get credit for work you have done yourself. When the work you are submitting is code,
 3 Mallmann-Trenn / McBurney / 6ccs3ain-cw

(e) (f) (g)
4
you can use code that other people wrote, but you have to say clearly that the other person wrote it — you do that by putting in a comment that says who wrote it. That way we can adjust your mark to take account of the work that you didn’t do.
Your code must be based on solving the Pacman environment as an MDP. If you don’t submit a program that contains a recognisable MDP solver, you will lose marks.
The only MDP solvers we will allow are the ones presented in the lecture, i.e., Value iteration, Policy iteration and Modified policy iteration. In particular, Q-Learning is unacceptable.
Your code must only use the results of the MDP solver to decide what to do. If you submit code which makes decisions about what to do that uses other information in addition to what the MDP-solver generates (like ad-hoc ghost avoiding code, for example), you will lose marks.
This is to ensure that your MDP-solver is the thing that can win enough games to pass the functionality test.
What you have to hand in
Your submission should consist of a single ZIP file. (KEATS will be configured to only accept a single file.) This ZIP file must include a single Python .py file (your code).
The ZIP file must be named:
cw <lastname> <firstname>.zip
so my ZIP file would be named cw mallmann-trenn frederik.zip.
Remember that we are going to evaluate your code by running your code by using variations on
     python pacman.py -p MDPAgent
(see Section 5 for the exact commands we will use) and we will do this in a vanilla copy of the pacman-cw folder, so the base class for your MDP-solving agent must be called MDPAgent.
To streamline the marking of the coursework, you must put all your code in one file, and this file must be called mdpAgents.py,
Do not just include the whole pacman-cw folder. You should only include the one file that includes the code you have written.
Submissions that do not follow these instructions will lose marks. That includes submissions which are RAR files. RAR is not ZIP.
5 How your work will be marked
See cw-marksheet.pdf for more information about the marking. There will be six components of the mark for your work:
(a) Functionality
We will test your code by running your .py file against a clean copy of pacman-cw.
As discussed above, the number of games you win determines the number of marks you get. Since we will check it this way, you may want to reset any internal state in your agent using
 4 Mallmann-Trenn / McBurney / 6ccs3ain-cw

final() (see Section 3.2). For the excellence marks, we will look at the winning scores for the mediumClassic layout.
Since we have a lot of coursework to mark, we will limit how long your code has to demonstrate that it can win. We will terminate the run of the 25smallGrid games after 5 minutes, and will terminate the run of the 25 mediumClassic games after 25 minutes. If your code has failed to win enough games within these times, we will mark it as if it lost. Note that we will use the -q command, which runs Pacman without the interface, to speed things up.
Code not written in Python will not be marked.
(b) Style There are no particular requirements on the way that your code is structured, but it should follow standard good practice in software development and will be marked accordingly.
Remember that your code is only allowed to interact with the Pacman environment through version 6 of api.py. Code that does not follow this rule will lose marks.
(c) Documentation
All good code is well documented, and your work will be partly assessed by the comments you provide in your code. If we cannot understand from the comments what your code does, then you will lose marks. At the same time, comments are not intended to be paragraph-long, but brief sentences. Good code should explain itself for the most part.
A copy of the marksheet, which shows the distribution of marks across the different elements of the coursework, will be available from KEATS.
 5 Mallmann-Trenn / McBurney / 6ccs3ain-cw
請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代做CSc 360、代寫(xiě)A Simple File程序
  • 下一篇:&#160;代做EEE226、java,c++編程代寫(xiě)
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久艳妇乳肉豪妇荡乳av| 一道精品一区二区三区| 国产不卡一区二区在线播放| 久久综合久久久久| 中国成人亚色综合网站| 国产欧美日韩免费看aⅴ视频| 久久综合久久综合这里只有精品| 亚洲精品欧洲精品| 91精品国产九九九久久久亚洲| 久久不射电影网| 成人精品久久一区二区三区| 一本色道久久综合亚洲二区三区| 国产欧亚日韩视频| 少妇性饥渴无码a区免费| 国产精品情侣自拍| 精品视频一区二区| 久久久人人爽| 日日橹狠狠爱欧美超碰| 久久久久久久爱| 久久久久久av无码免费网站下载| 91免费福利视频| 午夜肉伦伦影院| 亚洲色精品三区二区一区| 91麻豆精品秘密入口| 美女999久久久精品视频| 国产三级精品网站| 精品国产免费一区二区三区| 国产婷婷一区二区三区| 九九久久久久久久久激情| 美女主播视频一区| 国产日韩欧美二区| 一区二区三区免费看| 久久久久久久久91| 国产精品色午夜在线观看| 国产高清精品软男同| 成人免费aaa| 蜜桃麻豆www久久国产精品| 国产亚洲欧美一区二区| 九九九热精品免费视频观看网站| av动漫免费看| 日本一区二区在线视频| 久久精品视频亚洲| 国产日韩视频在线观看| 国产资源在线视频| 国产精品日韩在线一区| 国产一区玩具在线观看| 91久久久久久| 欧洲熟妇精品视频| 国产精品成人久久电影| 91久久久在线| 国内精品久久久久久| 亚洲最大的av网站| 国产成人免费91av在线| 高清欧美性猛交| 欧美日韩国产高清视频| 欧美激情视频在线观看| 久久久久久久中文| av在线不卡一区| 黄网站欧美内射| 性亚洲最疯狂xxxx高清| 精品国产乱码久久久久久郑州公司| 高清国产一区| 激情视频一区二区| 欧洲日本亚洲国产区| 午夜精品一区二区在线观看 | 久久这里有精品视频| 日本成人黄色| 精品视频免费观看| 成人毛片网站| 91|九色|视频| 精品国产一区二区三区在线| 91免费黄视频| 精品乱色一区二区中文字幕| 国产精品自拍合集| 日韩欧美在线免费观看视频| 久久久999国产精品| 国产日韩欧美影视| 日本午夜人人精品| 欧美伦理91i| 91av网站在线播放| 国产四区在线观看| 日韩免费观看视频| 久久久久国产精品免费| 国产精品伦子伦免费视频| 欧美高清性xxxxhdvideosex| 色综合久久久久无码专区| 欧美有码在线观看| 久久成人在线视频| 国产成人91久久精品| 国内精久久久久久久久久人| 91久热免费在线视频| 国产精品男人的天堂| 91成人福利在线| 国产一区二区在线免费| 婷婷久久五月天| 国产精品久久久久久久久久久久久| av一区二区三区在线观看| 免费拍拍拍网站| 日韩欧美精品免费| 亚洲国产一区二区精品视频 | 亚洲综合中文字幕在线| 久久riav| 久久偷看各类wc女厕嘘嘘偷窃| 国产熟女高潮视频| 国产精品一区二区三区免费| 伊人天天久久大香线蕉av色| 久草热久草热线频97精品| 久久免费视频2| 91精品国产一区二区三区动漫| 91精品视频在线| 日本精品久久久久中文字幕| 国产精品视频在线免费观看| 日韩在线视频免费观看高清中文| 黄色一级大片在线观看| 欧美激情亚洲另类| 中文精品无码中文字幕无码专区 | 久久亚洲国产精品| 国产成人无码一二三区视频| 久久久久久久久久久av| 99视频精品全部免费看| 久久精品二区| 国产a级片网站| 国产精品一区二区三| 日本精品久久电影| 日韩激情久久| 国产日韩一区二区在线观看| 国产精品免费区二区三区观看| www欧美日韩| 久久国产亚洲精品无码| 久久久之久亚州精品露出| 国产精品一区二区免费看| 国模精品视频一区二区| 麻豆av一区二区三区久久| 欧美 日韩 激情| 欧美不卡1区2区3区| 欧美日本国产精品| 黄色小视频大全| 精品一区二区三区毛片| 国产综合av在线| 国产日韩第一页| 成人综合视频在线| 99国产精品久久久久老师| 91国在线精品国内播放| 91精品国产91久久久久福利| 久久在线中文字幕| 久久久亚洲国产| 国产v亚洲v天堂无码久久久| 日韩一区二区在线视频| 少妇久久久久久| 久久深夜福利免费观看| 国产精品福利观看| 自拍日韩亚洲一区在线| 天堂√在线观看一区二区| 热99久久精品| 激情五月宗合网| 福利视频久久| 国产成人在线小视频| 深夜福利一区二区| 日韩在线一级片| 日韩视频在线免费看| 国产精品情侣自拍| 日本wwwcom| 欧洲精品在线一区| 国产主播欧美精品| 一本—道久久a久久精品蜜桃| 亚洲精蜜桃久在线| 日韩欧美视频免费在线观看| 僵尸世界大战2 在线播放| 国产欧美韩国高清| 久久久人人爽| 国产精品美女久久久久久免费| 一区二区三视频| 欧美一区二区中文字幕| 国产在线观看精品| 国产精品久久久久久久久久新婚| 精品视频9999| 色婷婷综合久久久久| youjizz.com亚洲| 福利视频一二区| 国产精品久久久久影院日本| 久久999免费视频| 日本精品视频在线观看| 国产亚洲精品网站| 日韩中文综合网| 欧美精品情趣视频| 日本精品免费| 国产日韩欧美精品| 国产一区在线免费观看| 91免费看蜜桃| 国产精品美女无圣光视频| 欧美日韩一区二区视频在线观看 | 日韩啊v在线| 国产在线一区二区三区四区| 91国内揄拍国内精品对白| www.日韩视频| 午夜精品一区二区三区在线播放 | 日日碰狠狠丁香久燥| 欧美日韩在线观看一区| 97国产在线观看| 国产精品成人一区二区|