久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

代寫CS 7638: Artificial Intelligence for Robotics

時間:2024-02-27  來源:  作者: 我要糾錯


Solar System (Particle Filter) Project

 

Spring 2024 - Deadline: Monday February 26th, 11:59p AOE

 

Project Description

 

After completing an intergalactic mission, it’s time for you to return home. The goal of this project is to give you practice implementing a particle filter used to localize a man-made 10.2-meter satellite in a solar system. The satellite has a mass between 1000-100,000 kg. Your satellite is warped through a wormhole and released into your home solar system in approximate circular orbit around the sun. The satellite receives measurements of the magnitude of the collective gravitational pull of the planets in the solar system. Note that this measurement does NOT include the gravitational effects of the sun. Although the gravitational acceleration of other planets can be measured, curiously in your home solar system, the satellite and the planets follow their orbit around the sun and their motion is not affected by other planets.

 

You will be riding in the satellite which will exit the wormhole somewhere within the solar system. Your satellite will exit possibly as far off as +/- 4 AU in both X and Y, and will be ejected into circular counter-clockwise orbit around the sun, which is located somewhere within +/- 0.1 AU in both X and Y.

 

The planets in the solar system are also orbiting counter-clockwise around the sun in circular or elliptical orbits.

 

You also have at most 300 days to locate yourself and the satellite before food and resources run out.

 

Note that your software solution is limited to 15 seconds of “real” CPU time, which is different from the simulated “satellite time”. Unless your localization and control algorithm is VERY efficient, you will probably not hit the 300-day limit before you run into the CPU timeout. If it takes your localization system more than 100-200 days to determine the satellite location, you may need to improve your localization algorithm.

 

The gravimeter sensor gives you a (noisy) magnitude of the sum across each planet of the gravitational acceleration on the satellite by that planet, +/- some Gaussian noise.

 

 

 

where v is the gravity magnitude, n is the number of planets, G is the gravitational constant, Mp is the mass of planet p, and r is the vector from the satellite to the planet.

 

The body.py file (which you should not modify, but may examine or import) implements the simulated planets.

 

The solar_system.py file (which you should not modify, but may examine or import) contains the model for the sun and planets.

 

The satellite.py file (which you should not modify, but may examine or import) may be used to simulate a satellite.

 

The solar_locator.py file contains two functions that you must implement, and is the only file you should submit to GradeScope.

 

Part A

 

After warping back to your home solar system, you must localize where you are. The first function is called estimate_next_pos, and must determine the next location of the satellite given its gravimeter measurement and the distance and steering of its next motion. If your estimate is less than 0.01 AU from the target satellite’s actual (x,y) position, you will succeed and the test case will end.

 

Note that your function is called once per day (time step), and each time your function is called, you will receive one additional data point. It is likely you will need to integrate the information from multiple calls to this function before you will be able to correctly estimate your satellite’s position. The “OTHER” variable is passed into your function and can be used to store data which you would like to have returned back to your function the next time it is called (the next day).

 

A particle filter may include the following steps and you may want to consider the following questions:

 

• Initialization

 

– How many particles do you need such that some cover the target satellite?

 

• Importance Weights

 

– How does the sigma parameter affect the probability density function of a gaussian distribution and the weights of the particles?

 

• Resample

 

– How many particles should you keep at each timestep and what are the pros/cons to having more/less particles?

 

• Fuzz

 

– How much positional fuzzing should you have?

 

– What percentage of your particles should you fuzz?

 

• Mimic the motion of the target satellite by utilizing a bicycle motion model

 

• Estimate

 

Part B

 

The second function is called next_angle. The goal of this function is to once again localize the satellite using different target satellite measurement information and to set the angle to send a radio message from the satellite to your home planet.

 

Unlike in part A where a single gravimeter measurement is taken each timestep, part B will provide multiple percent illumination measurements each timestep. The satellite will take percent illumination readings for each planet in order of closest to furthest from the sun.

 

The percent illumiation describes what fraction of a planetary body’s 2D face is in sunlight. The phase angle is the angle between sun-planet-satellite and is used to compute the percent illumination. When sun-satellite-planet are in line, the phase angle is 0 degrees, the planet will look like a full moon, and the planet will be 100% illuminated. When sun-planet-satellite are in line, the phase angle is 180 degrees, the planet will look like a new moon, and the planet will be 0% illuminated.

 

PERCENT_ILLUMINATION = 50 × (1 + cos (PHASE_ANGLE))

 

Now that you’re back in your home solar system and have localized your satellite, you must send SOS messages back to your home planet, the last/ outer-most planet in the solar system, so that they know to come pick you up. Each message you send contains part of your location and trajectory. It takes 10 messages to fully transmit this data. When your home planet receives your messages they will send a team out to retrieve you and your satellite. The test will end once your home planet has received 10 messages.

 

The next_angle function will return an absolute angle from the satellite to the home planet in radians as well as the predicted location of the satellite.

 

Submitting your Assignment

 

Please refer to the “Online Grading” section of the Syllabus

 

Calculating your score

 

The test cases are randomly generated, and your particle filter is likely to also perform differently on different runs of the system due to the use of random numbers. Our goal is that you are able to generate a particle filter system that is generally able to solve the test cases, not one that is perfect in every situation.

 

You will receive seven points for each successful test case, even though there are 20 test cases in total (10 in part A, 10 in part B). This means that you only need to successfully complete 15 of the 20 test cases to receive a full score on this assignment. Your maximum score will be capped at 100, although if you are able to solve more than 15 test cases you can brag about it.

 

Testing Your Code

 

NOTE: The test cases in this project are subject to change.

 

We have provided you a sample of 10 test cases where the first two test cases are easier than the actual test cases you will be graded with because they have no measurement noise. These test cases are designed to allow you to test an aspect of the simulation. Test cases 3-10 are more representative of the test cases that will be used to grade your project.

 

To run the provided test cases on the terminal: python testing_suite_full.py

 

We will grade your code with 10 different “secret” test cases per part that are similar, but not an exact match to any of the publicly provided test cases. These “secret” test cases are generated using the generate_params_planet.py file that we have provided to you. You are encouraged to make use of this file to generate additional test cases to test your code.

 

We have provided a testing suite similar to the one we’ll be using for grading the project, which you can use to ensure your code is working correctly. These testing suites are NOT complete as given to you, and you will need to develop other test cases to fully validate your code. We encourage you to share your test cases (only) with other students on Ed.

 

By default, the test suite uses multi-processing to enforce timeouts. Some development tools may not work as expected with multi-processing enabled. In that case, you may disable multi-processing by setting the flag DEBUGGING_SINGLE_PROCESS to True. Note that this will also disable timeouts, so you may need to stop a test case manually if your filter is not converging.

 

You should ensure that your code consistently succeeds on each of the given test cases as well as on a wide range of other test cases of your own design, as we will only run your code once per graded test case. For each test case, your code must complete execution within the proscribed time limit (15 seconds) or it will receive no credit. Note that the grading machine is relatively low powered, so you may want to set your local time limit to 3 seconds to ensure that you don’t go past the CPU limit on the grading machine.

 

Academic Integrity

 

You must write the code for this project alone. While you may make limited usage of outside resources, keep in mind that you must cite any such resources you use in your work (for example, you should use comments to denote a snippet of code obtained from StackOverflow, lecture videos, etc).

 

You must not use anybody else’s code for this project in your work. We will use code-similarity detection software to identify suspicious code, and we will refer any potential incidents to the Office of Student Integrity for investigation. Moreover, you must not post your work on a publicly accessible repository; this could also result in an Honor Code violation [if another student turns in your code]. (Consider using the GT provided Github repository or a repo such as Bitbucket that doesn’t default to public sharing.)

 

Frequently Asked Questions (F.A.Q.)

 

• Q How can I simplify this problem to make thinking about it easier?

 

– A Take a look at this video that uses a particle filter to solve a 1D problem that has a lot of similarities to this one: Particle Filter explained without equations - https://www.youtube.com/watch?v=aUkBa1zMKv4

 

• Q Are you SURE this can be solved using a particle filter?

 

– A Yes. See https://mediaspace.gatech.edu/media/t/1_c1f99rxe

 

• Q What is fuzzing?

 

– A Fuzzing is the process of perturbing (a percentage of) the particles with the intention of diversifying your hypotheses (covering a wider search area). Fuzzing is also known as dithering or roughening (sometimes called jittering). It is discussed in these papers: Sample Impoverishment, PF: Tutorial, Roughening Methods

 

• Q How can I turn on the visualization?

 

– A Near the top of testing_suite_full.py set PLOT_PARTICLES=True. When PLOT_PARTICLES is set to True, you will be presented with a visualiza-tion. While debugging wih visualization, you may consider also setting DEBUGGING_SINGLE_PROCESS=True to allow the test case to run beyond the ‘TIME_LIMIT’.

 

• Q What is each color/object in the visualization?

 

– A Red triangle is the target satellite. White triangles are the particles. Cyan square is your estimated (x,y) for the satellite. Lime circles are planets, and magenta circle with a skyblue trail is the home planet.

 

• Q Can I pause the visualization?

 

– A There is a pause button in the upper right corner of the visualization that will pause the screen for PAUSE_DURATION seconds. To pause the first time step, set PAUSE_FIRST=True. Pausing frequently and/or for long durations may require adjustments to the ‘TIME_LIMIT’.

 

• Q How can I change the TIME_LIMIT?

 

– A There are additional ALL CAPS variables near the top of the testing_suite_full.py file. They are by default set to the same values used by the grader, but you can toggle the True/False values to enable/disable verbose logging and the visualization, and increase the timeout value (logging & visualization slow things down). If your computer is faster than that of Gradescope and iterates through more timesteps, you may consider decreasing the TIME_LIMIT while developing your solution.

 

• Q Why is my local score different from my Gradescope score?

 

– A The gradescope test cases are different from the student provided test cases in testing_suite_full.py. The gradescope machine may be slower or faster than your machine, causing it to iterate through more or less time steps before timing out. You’re encouraged to submit early and often – a failing solution on your local computer might do better on Gradescope and vice versa.

 

• Q Why do I get different results locally when the visualization is on vs off?

 

– A Since visualization slows things down, with visulization off your solution may get through more timesteps than with visulization on, and those extra timesteps could be where your solution succeeds.

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

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫MANG6346 Business Analytics and Risk
  • 下一篇:COMP3217代做、Python/Java編程設計代寫
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    成人免费在线观看视频网站| 99在线免费视频观看| 天天干天天综合| 国产手机免费视频| www.日本久久| 亚洲色精品三区二区一区| 无码日本精品xxxxxxxxx| caoporm在线视频| 日韩免费高清在线| 自拍日韩亚洲一区在线| 麻豆一区二区三区在线观看| 日韩爱爱小视频| www黄色在线| 中文字幕乱码人妻综合二区三区 | 日韩网站在线免费观看| 国产在线拍揄自揄拍无码| 911av视频| 可以看污的网站| 岛国毛片在线播放| 久热精品在线观看视频| www.这里只有精品| 成人性生交免费看| 免费看污污网站| 99热手机在线| gogogo高清免费观看在线视频| 欧美日韩怡红院| 黄色片在线免费| 亚洲欧美国产日韩综合| 在线观看国产一级片| av污在线观看| 免费黄频在线观看| 黄频视频在线观看| 青青草综合在线| 日本人妻伦在线中文字幕| 国产 国语对白 露脸| 国产在线视频综合| 青青草精品视频在线| 欧美 日韩 国产在线观看| 国产二区视频在线播放| 人妻少妇被粗大爽9797pw| 亚洲爆乳无码专区| 国产又粗又长又大的视频| 亚洲国产成人va在线观看麻豆| 亚洲在线观看网站| 中文字幕色呦呦| 草草视频在线免费观看| 日本中文字幕网址| 国产精品人人妻人人爽人人牛| 999精彩视频| 男生操女生视频在线观看 | 一区二区三区国产免费| 亚洲一区二区三区四区五区xx| 亚洲黄色片免费看| 成人在线播放网址| 精品www久久久久奶水| 四虎影院一区二区| 国产91沈先生在线播放| 妺妺窝人体色www在线小说| 手机版av在线| 国产成人在线小视频| 日本黄网站免费| 国产又粗又大又爽的视频| 欧美一级视频在线播放| 嫩草影院国产精品| 六月婷婷激情综合| 精品久久久久久久无码| 午夜探花在线观看| 男人靠女人免费视频网站| 91香蕉视频免费看| 波多野结衣家庭教师在线播放| 色播五月综合网| 久久久久久人妻一区二区三区| 国产成人综合一区| 日本一级黄视频| 天天干天天av| 欧美成人xxxxx| 9999在线观看| 东京热加勒比无码少妇| 亚洲小视频在线播放| 成人黄色一区二区| 国产青草视频在线观看| 色呦色呦色精品| 久久久久狠狠高潮亚洲精品| 国产女人18毛片| 国产一级片自拍| 国产精品欧美激情在线观看| 日韩不卡一二区| 91激情视频在线| 日韩小视频在线播放| 麻豆中文字幕在线观看| 国产精品入口免费软件| 俄罗斯av网站| 超薄肉色丝袜足j调教99| 日韩一区二区三区久久| 欧洲黄色一级视频| 午夜久久久久久久久久久| 美女一区二区三区视频| 国产真人做爰毛片视频直播 | 久久6免费视频| 国产精品少妇在线视频| 日本福利视频一区| 国产精品12p| 91高清国产视频| 午夜免费精品视频| 丰满少妇被猛烈进入高清播放| 伊人再见免费在线观看高清版 | 中文字幕第一页在线视频| 免费观看精品视频| 99久久免费观看| www婷婷av久久久影片| 亚洲欧美日韩网站| 亚洲午夜激情影院| 日韩不卡一二三| xxxx一级片| av免费网站观看| 欧美少妇性生活视频| 国产中文字幕免费观看| 极品美女扒开粉嫩小泬| 黄色激情在线视频| 波多野结衣 作品| 日本一区二区三区四区五区六区| 久久久精品视频国产| 伊人国产精品视频| 色网站在线视频| 久久人人爽人人片| 91蝌蚪视频在线| 欧美精品一区二区性色a+v| 天堂网成人在线| 无码毛片aaa在线| av在线免费观看国产| 亚洲乱码日产精品bd在线观看| 久久免费一级片| 国产成人艳妇aa视频在线 | 欧美日韩理论片| 国产999免费视频| 99亚洲精品视频| a级片一区二区| 男人天堂av片| 黄页免费在线观看视频| 欧美日韩二三区| 日韩免费高清在线| 污污的视频免费| 91亚洲精品久久久蜜桃借种| 红桃视频 国产| 免费在线精品视频| 精品一区二区三区无码视频| 青草视频在线观看视频| 成人免费毛片网| 亚洲精品高清无码视频| 91女神在线观看| 国产卡一卡二在线| av高清在线免费观看| 超碰网在线观看| 免费在线观看污网站| 少妇大叫太大太粗太爽了a片小说| 成人性生活视频免费看| 免费裸体美女网站| 免费网站在线观看黄| 草草草视频在线观看| 日韩av片在线看| 在线观看国产中文字幕| 超级碰在线观看| 九九九九免费视频| 欧美一级特黄aaa| 日韩欧美猛交xxxxx无码| 久艹在线免费观看| 日韩视频第二页| 91 视频免费观看| 99久久国产综合精品五月天喷水| 成人一级片网站| 亚洲视频在线不卡| 69堂免费视频| 污污视频网站在线| heyzo亚洲| 亚洲午夜激情影院| 黄色www网站| 亚洲第一页在线视频| 欧美污视频网站| 国产三级中文字幕| 白嫩少妇丰满一区二区| 久久av喷吹av高潮av| wwwxxx黄色片| 300部国产真实乱| 韩国中文字幕av| 男的插女的下面视频| 在线观看日本一区二区| 欧美啪啪免费视频| 欧美xxxxxbbbbb| 99视频精品免费| 国产日韩欧美精品在线观看| 在线不卡一区二区三区| 一区二区传媒有限公司| 99久久99精品| wwwxxx黄色片| 中文字幕无码精品亚洲资源网久久| 91人人澡人人爽人人精品| 久久在线中文字幕| 天天操夜夜操很很操| 三上悠亚av一区二区三区| 色综合久久久久无码专区|