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

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

COMP9414代做、代寫Python程序設計

時間:2024-07-21  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



COMP9414 24T2
Artificial Intelligence
Assignment 2 - Reinforcement Learning
Due: Week 9, Wednesday, 24 July 2024, 11:55 PM.
1 Problem context
Taxi Navigation with Reinforcement Learning: In this assignment,
you are asked to implement Q-learning and SARSA methods for a taxi nav-
igation problem. To run your experiments and test your code, you should
make use of the Gym library1, an open-source Python library for developing
and comparing reinforcement learning algorithms. You can install Gym on
your computer simply by using the following command in your command
prompt:
pip i n s t a l l gym
In the taxi navigation problem, there are four designated locations in the
grid world indicated by R(ed), G(reen), Y(ellow), and B(lue). When the
episode starts, one taxi starts off at a random square and the passenger is
at a random location (one of the four specified locations). The taxi drives
to the passenger’s location, picks up the passenger, drives to the passenger’s
destination (another one of the four specified locations), and then drops off
the passenger. Once the passenger is dropped off, the episode ends. To show
the taxi grid world environment, you can use the following code:
1https://www.gymlibrary.dev/environments/toy text/taxi/
1
env = gym .make(”Taxi?v3 ” , render mode=”ans i ” ) . env
s t a t e = env . r e s e t ( )
rendered env = env . render ( )
p r i n t ( rendered env )
In order to render the environment, there are three modes known as
“human”, “rgb array, and “ansi”. The “human” mode visualizes the envi-
ronment in a way suitable for human viewing, and the output is a graphical
window that displays the current state of the environment (see Fig. 1). The
“rgb array” mode provides the environment’s state as an RGB image, and
the output is a numpy array representing the RGB image of the environment.
The “ansi” mode provides a text-based representation of the environment’s
state, and the output is a string that represents the current state of the
environment using ASCII characters (see Fig. 2).
Figure 1: “human” mode presentation for the taxi navigation problem in
Gym library.
You are free to choose the presentation mode between “human” and
“ansi”, but for simplicity, we recommend “ansi” mode. Based on the given
description, there are six discrete deterministic actions that are presented in
Table 1.
For this assignment, you need to implement the Q-learning and SARSA
algorithms for the taxi navigation environment. The main objective for this
assignment is for the agent (taxi) to learn how to navigate the gird-world
and drive the passenger with the minimum possible steps. To accomplish
the learning task, you should empirically determine hyperparameters, e.g.,
the learning rate α, exploration parameters (such as ? or T ), and discount
factor γ for your algorithm. Your agent should be penalized -1 per step it
2
Figure 2: “ansi” mode presentation for the taxi navigation problem in Gym
library. Gold represents the taxi location, blue is the pickup location, and
purple is the drop-off location.
Table 1: Six possible actions in the taxi navigation environment.
Action Number of the action
Move South 0
Move North 1
Move East 2
Move West 3
Pickup Passenger 4
Drop off Passenger 5
takes, receive a +20 reward for delivering the passenger, and incur a -10
penalty for executing “pickup” and “drop-off” actions illegally. You should
try different exploration parameters to find the best value for exploration
and exploitation balance.
As an outcome, you should plot the accumulated reward per episode and
the number of steps taken by the agent in each episode for at least 1000
learning episodes for both the Q-learning and SARSA algorithms. Examples
of these two plots are shown in Figures 3–6. Please note that the provided
plots are just examples and, therefore, your plots will not be exactly like the
provided ones, as the learning parameters will differ for your algorithm.
After training your algorithm, you should save your Q-values. Based on
your saved Q-table, your algorithms will be tested on at least 100 random
grid-world scenarios with the same characteristics as the taxi environment for
both the Q-learning and SARSA algorithms using the greedy action selection
3
Figure 3: Q-learning reward. Figure 4: Q-learning steps.
Figure 5: SARSA reward. Figure 6: SARSA steps.
method. Therefore, your Q-table will not be updated during testing for the
new steps.
Your code should be able to visualize the trained agent for both the Q-
learning and SARSA algorithms. This means you should render the “Taxi-
v3” environment (you can use the “ansi” mode) and run your trained agent
from a random position. You should present the steps your agent is taking
and how the reward changes from one state to another. An example of the
visualized agent is shown in Fig. 7, where only the first six steps of the taxi
are displayed.
2 Testing and discussing your code
As part of the assignment evaluation, your code will be tested by tutors
along with you in a discussion carried out in the tutorial session in week 10.
The assignment has a total of 25 marks. The discussion is mandatory and,
therefore, we will not mark any assignment not discussed with tutors.
Before your discussion session, you should prepare the necessary code for
this purpose by loading your Q-table and the “Taxi-v3” environment. You
should be able to calculate the average number of steps per episode and the
4
Figure 7: The first six steps of a trained agent (taxi) based on Q-learning
algorithm.
average accumulated reward (for a maximum of 100 steps for each episode)
for the test episodes (using the greedy action selection method).
You are expected to propose and build your algorithms for the taxi nav-
igation task. You will receive marks for each of these subsections as shown
in Table 2. Except for what has been mentioned in the previous section, it is
fine if you want to include any other outcome to highlight particular aspects
when testing and discussing your code with your tutor.
For both Q-learning and SARSA algorithms, your tutor will consider the
average accumulated reward and the average taken steps for the test episodes
in the environment for a maximum of 100 steps for each episode. For your Q-
learning algorithm, the agent should perform at most 14 steps per episode on
average and obtain a minimum of 7 average accumulated reward. Numbers
worse than that will result in a score of 0 marks for that specific section.
For your SARSA algorithm, the agent should perform at most 15 steps per
episode on average and obtain a minimum of 5 average accumulated reward.
Numbers worse than that will result in a score of 0 marks for that specific
section.
Finally, you will receive 1 mark for code readability for each task, and
your tutor will also give you a maximum of 5 marks for each task depending
on the level of code understanding as follows: 5. Outstanding, 4. Great,
3. Fair, 2. Low, 1. Deficient, 0. No answer.
5
Table 2: Marks for each task.
Task Marks
Results obtained from agent learning
Accumulated rewards and steps per episode plots for Q-learning
algorithm.
2 marks
Accumulated rewards and steps per episode plots for SARSA
algorithm.
2 marks
Results obtained from testing the trained agent
Average accumulated rewards and average steps per episode for
Q-learning algorithm.
2.5 marks
Average accumulated rewards and average steps per episode for
SARSA algorithm.
2.5 marks
Visualizing the trained agent for Q-learning algorithm. 2 marks
Visualizing the trained agent for SARSA algorithm. 2 marks
Code understanding and discussion
Code readability for Q-learning algorithm 1 mark
Code readability for SARSA algorithm 1 mark
Code understanding and discussion for Q-learning algorithm 5 mark
Code understanding and discussion for SARSA algorithm 5 mark
Total marks 25 marks
3 Submitting your assignment
The assignment must be done individually. You must submit your assignment
solution by Moodle. This will consist of a single .zip file, including three
files, the .ipynb Jupyter code, and your saved Q-tables for Q-learning and
SARSA (you can choose the format for the Q-tables). Remember your files
with your Q-tables will be called during your discussion session to run the
test episodes. Therefore, you should also provide a script in your Python
code at submission to perform these tests. Additionally, your code should
include short text descriptions to help markers better understand your code.
Please be mindful that providing clean and easy-to-read code is a part of
your assignment.
Please indicate your full name and your zID at the top of the file as a
comment. You can submit as many times as you like before the deadline –
later submissions overwrite earlier ones. After submitting your file a good
6
practice is to take a screenshot of it for future reference.
Late submission penalty: UNSW has a standard late submission
penalty of 5% per day from your mark, capped at five days from the as-
sessment deadline, after that students cannot submit the assignment.
4 Deadline and questions
Deadline: Week 9, Wednesday 24 of July 2024, 11:55pm. Please use the
forum on Moodle to ask questions related to the project. We will prioritise
questions asked in the forum. However, you should not share your code to
avoid making it public and possible plagiarism. If that’s the case, use the
course email cs9414@cse.unsw.edu.au as alternative.
Although we try to answer questions as quickly as possible, we might take
up to 1 or 2 business days to reply, therefore, last-moment questions might
not be answered timely.
For any questions regarding the discussion sessions, please contact directly
your tutor. You can have access to your tutor email address through Table
3.
5 Plagiarism policy
Your program must be entirely your own work. Plagiarism detection software
might be used to compare submissions pairwise (including submissions for
any similar projects from previous years) and serious penalties will be applied,
particularly in the case of repeat offences.
Do not copy from others. Do not allow anyone to see your code.
Please refer to the UNSW Policy on Academic Honesty and Plagiarism if you
require further clarification on this matter.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp





 

掃一掃在手機打開當前頁
  • 上一篇:COMP9021代做、代寫python設計程序
  • 下一篇:COMP6008代做、代寫C/C++,Java程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

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

          久久一日本道色综合久久| 亚洲国产天堂网精品网站| 久久久久综合| 一本色道婷婷久久欧美| 国产一区二区三区四区| 欧美人与禽猛交乱配| 久久久亚洲一区| 午夜视频在线观看一区| 99国产精品| 亚洲日韩欧美视频| 在线观看一区二区精品视频| 国产精品视频免费一区| 欧美久久久久免费| 玖玖在线精品| 久久久精品动漫| 欧美在线综合| 亚洲一区免费看| aa级大片欧美| 亚洲乱码视频| 日韩一本二本av| 亚洲欧洲日本一区二区三区| 好吊日精品视频| 国产女主播一区二区三区| 欧美视频久久| 国产精品扒开腿做爽爽爽软件| 欧美电影美腿模特1979在线看| 久久婷婷国产综合尤物精品| 久久久久久婷| 久久综合久久综合久久| 免播放器亚洲一区| 免费在线国产精品| 欧美高清一区| 欧美日韩欧美一区二区| 国产精品ⅴa在线观看h| 国产精品mv在线观看| 欧美偷拍一区二区| 国产精品亚发布| 国产亚洲精品久久飘花| 伊人久久大香线蕉综合热线| 在线观看国产欧美| 亚洲人精品午夜在线观看| 亚洲精品久久| 亚洲一区制服诱惑| 久久精品国语| 欧美国产视频在线| 国产精品久久久久久久浪潮网站 | 一区视频在线| 亚洲精品国产精品久久清纯直播| 夜夜嗨av一区二区三区网站四季av| 日韩一级免费| 久久国产一区二区| 美日韩丰满少妇在线观看| 欧美日韩国产一级片| 国产精品视频yy9299一区| 国产亚洲人成网站在线观看| 亚洲国产影院| 亚洲免费在线看| 久久午夜色播影院免费高清| 欧美日韩精品欧美日韩精品| 国产欧美视频一区二区| 亚洲高清网站| 亚洲自拍偷拍色片视频| 免费视频最近日韩| 国产精品午夜国产小视频| 亚洲高清不卡| 性刺激综合网| 欧美日韩美女一区二区| 狠狠色丁香婷婷综合| 一本色道久久综合亚洲精品不卡| 久久狠狠久久综合桃花| 欧美区亚洲区| 亚洲国产精品一区二区第一页| 亚洲一区二区三区乱码aⅴ| 久久综合久久综合久久| 国产精品久久久久久久久果冻传媒 | 欧美日韩亚洲一区三区| 狠狠综合久久av一区二区老牛| 在线亚洲电影| 欧美14一18处毛片| 国外成人在线视频网站| 亚洲欧美日韩一区在线| 欧美日韩精品欧美日韩精品| 亚洲人午夜精品| 免费在线播放第一区高清av| 国产亚洲欧美另类中文 | aa日韩免费精品视频一| 久久久亚洲一区| 韩国免费一区| 久久av一区二区三区| 国产日韩欧美一区在线| 亚洲欧美日韩国产一区二区三区| 欧美日韩精品综合| 一本大道久久a久久精品综合 | 欧美国产激情二区三区| 在线看一区二区| 久久蜜桃香蕉精品一区二区三区| 国产欧亚日韩视频| 久久黄色网页| 极品尤物一区二区三区| 久久婷婷麻豆| 亚洲国产欧美一区二区三区丁香婷| 欧美在线影院在线视频| 国内精品模特av私拍在线观看| 欧美亚洲一区| 国内欧美视频一区二区| 久久久久久久成人| 狠狠色狠色综合曰曰| 久久琪琪电影院| 亚洲电影免费观看高清完整版在线观看 | 国产精品久久波多野结衣| 亚洲欧美日韩成人| 国产美女扒开尿口久久久| 欧美在线视频a| 亚洲成在人线av| 欧美日本一区二区高清播放视频| 9i看片成人免费高清| 国产精品一卡| 久久字幕精品一区| 日韩视频中文| 国产精品少妇自拍| 久久免费精品视频| 亚洲精品男同| 国产一区成人| 欧美精品福利在线| 亚洲综合视频网| 在线播放中文字幕一区| 欧美日韩免费| 久久久久国产精品一区二区| 亚洲精品一区二区三区婷婷月| 欧美性久久久| 久色婷婷小香蕉久久| 亚洲少妇一区| 曰韩精品一区二区| 国产精品高潮视频| 久久在线精品| 欧美一区二区三区婷婷月色 | 亚洲国产成人av| 国产精品免费看| 欧美韩国日本一区| 欧美诱惑福利视频| 亚洲视频图片小说| 亚洲黄色影片| 国产专区精品视频| 欧美午夜a级限制福利片| 免费久久精品视频| 午夜视频精品| 亚洲午夜久久久久久久久电影院| 伊人激情综合| 国产一区白浆| 国产精品私人影院| 欧美人在线观看| 欧美大香线蕉线伊人久久国产精品| 性18欧美另类| 亚洲欧美日韩在线播放| av成人老司机| 亚洲精品老司机| 在线观看日韩www视频免费 | 欧美一区三区三区高中清蜜桃| 妖精成人www高清在线观看| 亚洲精美视频| 亚洲国产精品黑人久久久| 国产一区二区精品| 国产欧美一区二区精品性色| 欧美先锋影音| 欧美三级欧美一级| 欧美人与性禽动交情品 | 欧美精品18+| 欧美成人亚洲成人日韩成人| 理论片一区二区在线| 久久婷婷麻豆| 欧美成人亚洲成人| 欧美黄色日本| 欧美精品一区在线| 欧美日韩国产一区精品一区| 欧美精品在线一区二区| 欧美日韩国产成人| 国产精品盗摄久久久| 欧美性jizz18性欧美| 国产精品美女| 国产日产亚洲精品系列| 国产一区二区在线观看免费播放 | 午夜日韩在线| 欧美中文字幕在线| 久热精品视频在线观看| 欧美成人第一页| 欧美三级电影网| 国产精品视频免费在线观看| 国产日韩欧美一区在线| 激情懂色av一区av二区av| 亚洲精品亚洲人成人网| 亚洲一区二区免费在线| 久久精品欧美日韩| 欧美成人在线影院| 国产精品美女久久久久av超清| 国产欧美精品日韩区二区麻豆天美 | 在线欧美三区| 亚洲一级黄色av| 久久嫩草精品久久久精品一| 欧美理论大片| 国产一区二区三区四区在线观看|