日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

代寫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)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

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

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              久久精品一区二区三区不卡| 欧美高清在线观看| 欧美精品一区二区在线观看| 免费的成人av| 国产一区二区中文| 久久福利视频导航| 国产一区二区三区久久悠悠色av| 国产精品99久久久久久宅男| 久久久精品国产99久久精品芒果| 国产精品毛片在线看| 99re在线精品| 欧美日韩中文| 欧美一区成人| 久久不见久久见免费视频1| 国产精品久在线观看| 亚洲乱码精品一二三四区日韩在线| 欧美刺激性大交免费视频| 亚洲巨乳在线| 国产久一道中文一区| 久久久99久久精品女同性| 亚洲精品午夜精品| 国产私拍一区| 欧美视频在线一区| 欧美成人精品高清在线播放| 亚洲欧美清纯在线制服| 在线观看视频一区二区| 国产视频亚洲| 欧美日韩在线播放一区二区| 久久精品最新地址| 亚洲综合另类| 夜夜嗨av一区二区三区中文字幕 | 亚洲专区一区| 国产又爽又黄的激情精品视频 | 亚洲欧美中文另类| 一区二区不卡在线视频 午夜欧美不卡在 | 欧美日韩在线播放三区| 国产午夜精品一区二区三区欧美 | 欧美日韩日韩| 精品成人一区二区三区| 亚洲午夜电影网| 久久免费99精品久久久久久| 亚洲欧美日韩天堂一区二区| 亚洲欧美一区二区三区久久| 久久性天堂网| 国产精品视区| 亚洲精品免费电影| 欧美影院在线播放| 国产精品成人在线观看| 99精品欧美一区| 欧美精品九九| 亚洲精品免费电影| 欧美成人午夜免费视在线看片| 国产日产欧产精品推荐色| 一本大道av伊人久久综合| 欧美成人午夜| 亚洲精品乱码久久久久久黑人| 噜噜噜在线观看免费视频日韩| 国内精品一区二区三区| 久久深夜福利免费观看| 狠狠爱综合网| 欧美激情五月| 中日韩美女免费视频网址在线观看 | 国产一区二区成人| 久久久99精品免费观看不卡| 激情亚洲成人| 欧美三级免费| 久久成人亚洲| 亚洲高清电影| 国产日韩av一区二区| 久久综合网hezyo| 日韩午夜激情电影| 国产一区在线播放| 欧美三级电影网| 美女精品一区| 亚洲欧美久久久久一区二区三区| 一区精品久久| 国产一区白浆| 欧美另类人妖| 欧美国产成人精品| 欧美成人国产一区二区| 久久精品一区四区| 午夜亚洲性色福利视频| 亚洲精品视频一区二区三区| 国产一区 二区 三区一级| 欧美视频在线免费看| 欧美连裤袜在线视频| 乱人伦精品视频在线观看| 久久久久久999| 久久久久久久综合| 久久精品国产99国产精品| 久久久久国产精品午夜一区| 久久久一区二区| 欧美日韩国产专区| 欧美日韩亚洲一区二区三区在线观看| 欧美国产极速在线| 欧美日韩精品在线播放| 欧美视频三区在线播放| 国产精品日韩在线一区| 一区二区三区波多野结衣在线观看| 欧美黑人一区二区三区| 免费成人高清视频| 国产视频一区三区| 亚洲女优在线| 欧美777四色影视在线| 美女福利精品视频| 欧美色欧美亚洲另类二区| 国产精品盗摄久久久| 国产欧美精品一区| 亚洲大胆在线| 亚洲一区二区在线播放| 亚洲一区二区三区中文字幕| 亚洲欧美一级二级三级| 欧美夫妇交换俱乐部在线观看| 国产精品久久久久久久久久三级| 亚洲第一精品福利| 欧美一区三区二区在线观看| 国产精品视频精品视频| 国产精品视频内| 欧美一级视频一区二区| 国产精品色婷婷| 久久视频在线免费观看| 国产欧美短视频| 亚洲女爱视频在线| 国产精品一区2区| 欧美一级视频免费在线观看| 国产亚洲aⅴaaaaaa毛片| 久久一二三四| 久久成人在线| 午夜视频久久久久久| 久久激情网站| 亚洲国产成人精品视频 | 欧美在线999| 欧美久久久久久| 国产一区二区成人| 久久久久成人网| 一区二区三区免费网站| 在线观看一区二区精品视频| 欧美色综合网| 欧美视频在线观看一区二区| 亚洲特级毛片| 国产精品美女| 99pao成人国产永久免费视频| 久久精品视频导航| 在线观看中文字幕不卡| 久久久亚洲影院你懂的| 国产精品爽黄69| 日韩视频在线观看一区二区| 欧美高清免费| 夜夜狂射影院欧美极品| 国产精品自拍小视频| 欧美成人伊人久久综合网| 亚洲主播在线播放| 欧美亚州韩日在线看免费版国语版| 亚洲深夜福利网站| 国外成人在线视频网站| 欧美一区二区三区成人| 国模大胆一区二区三区| 亚洲免费视频在线观看| 在线观看视频日韩| 欧美色欧美亚洲另类七区| 在线观看的日韩av| 久久在线播放| 亚洲精选成人| 国产精品麻豆va在线播放| 久热这里只精品99re8久| 国产一区二区三区在线观看精品 | 亚洲精品国产精品国产自| 国产日韩欧美高清| 亚洲免费电影在线观看| 一区二区激情| 久久蜜桃精品| 国产精品永久在线| 久久久久久97三级| 99国产精品99久久久久久| 99在线热播精品免费| 中文在线一区| 欧美亚洲日本国产| 欧美mv日韩mv亚洲| 国产欧美三级| 在线观看国产成人av片| 精品电影一区| 国产精品一区久久久久| 欧美日韩在线观看视频| 国产精品大片免费观看| 久久精品国产99精品国产亚洲性色 | 校园激情久久| 久久久久久精| 欧美日韩亚洲另类| 国内外成人免费激情在线视频| 亚洲欧洲在线免费| 亚洲专区在线视频| 欧美激情一区二区| 国产午夜一区二区三区| 一级成人国产| 欧美国产在线电影| 伊人色综合久久天天五月婷| 亚洲天堂激情| 国产精品久久久亚洲一区| 亚洲裸体在线观看| 欧美日韩国产美女|