- “Let $mathbb{P}$ be the set of possible percepts and let T be the lifetime of the agent (the total number of percepts it will receive). The lookup table will contain $sumlimits_{t=1}^T |mathbb{P}|^t$ entries. Consider the automated taxi: the visual input from a single camera comes in at a rate of roughly 27 megabytes per second (30 frames per second, 640 x 480 pixels with 24 bits of color information). This gives a lookup table with over $10^{250,000,000,000}$ entries for an hour’s driving.”
Can someone please show me the step-by-step derivation of the total number of entries based on the given information to arrive at a value over $10^{250,000,000,000}$? I did my math in the following way, but clearly there is something wrong: $mathbb{P} = 2^{640x480x24}$, since per frame there are 24x640x480 bits, and each frame is a percept. (I’m not entirely sure that my claim that a frame is a percept is accurate.) Then, the total number of entries (S) for an hour is as follows: S = $sumlimits_{t=1}^{T=3600×30} (2^{640x480x24})^{t}$. That series can be converted into the following closed form: S = $frac{mathbb{P}^{T+1} – mathbb{P}}{mathbb{P} – 1}$. If I plug in $2^{640x480x24}$ for $mathbb{P}$, I end up with essentially $10^{240,000,000,000}$ and NOT over $10^{250,000,000,000}$. What am I doing wrong?
- “The daunting size of these tables (the number of atoms in the observable universe is less than $10^{80}$) means that (a)…(d) even if the environment is simple enough to yield a feasible table size, the designer still has no guidance about how to fill in the table entries.” I’m not exactly sure what guidance the designer needs. I’m assuming that the agent function already exists. In that case, all the designer needs to do in constructing their table entries is look up the corresponding action with each percept sequence.
I thank everyone in advance for taking the time to read this and help me out =)!
Asked By : Coder47
Answered By : Yuval Filmus
Best Answer from StackOverflow
Question Source : http://cs.stackexchange.com/questions/47063