Skip to main content

Questions tagged [random-variable]

For questions related to the mathematical concept of a random variable (in the context of AI).

Filter by
Sorted by
Tagged with
0 votes
0 answers
85 views

I've tried to come up with a simple connection between statistics and deep learning. One question is: In very simplified terms, why do neural networks model probability distributions? What I expect ...
Minsky's user avatar
  • 1
0 votes
1 answer
47 views

From Bishop's Pattern Recognition and Machine Learning: $t_n = y_n + \epsilon_n$, where $\epsilon_n$ is a random noise variable whose value is chosen independently for each observation $n$. Consider ...
piero's user avatar
  • 133
1 vote
1 answer
129 views

In the section on LSTD in SuttonBarto's book on RL, there is a proof on convergence of semi-gradient TD(0) using a linear function approximator. Later on they estimated A and b as I was under the ...
user75923's user avatar
0 votes
1 answer
146 views

Consider the following two paragraphs taken from the paper titles Generative Adversarial Nets by Ian J. Goodfellow et.al #1: Abstract We propose a new framework for estimating generative models via ...
hanugm's user avatar
  • 4,172
0 votes
1 answer
606 views

In artificial intelligence, especially in machine learning, the inputs and outputs of neurons in a neural network can be viewed as random variables. And this view is highly useful in many ways. The ...
hanugm's user avatar
  • 4,172
0 votes
1 answer
374 views

For a variational autoencoder, we have input $x$ (assume 1 data point for now, like an image), a latent code sampled from the decoder, $z$, and an output $\hat{x}$. If I were to draw a diagram for the ...
a12345's user avatar
  • 253
0 votes
1 answer
1k views

Features in machine learning are the attributes of the elements of a data set. They are considered as random variables in probability. Consider the following excerpt from 1.1: The deep learning ...
hanugm's user avatar
  • 4,172
0 votes
0 answers
129 views

The acronym "iid" stands for "independent and identically distributed". It is a property of a sequence of random variables. You can read here for more details. This question is ...
hanugm's user avatar
  • 4,172
0 votes
2 answers
150 views

Consider the following information regarding iid random variables The acronym IID stands for "Independent and Identically Distributed". A sequence of random variables (or random vectors) is ...
hanugm's user avatar
  • 4,172
2 votes
1 answer
219 views

Let $X_1, X_2$ be two discrete random variables. Each random variable takes two values: $1, 2$ The probability distribution $p_1$ over $X_1, X_2$ is given by $$p_1(X_1=1, X_2 = 1) = \dfrac{1}{4}$$ $$...
hanugm's user avatar
  • 4,172
1 vote
1 answer
519 views

Consider the following statements from Chapter 5: Machine Learning Basics from the book titled Deep Learning (by Aaron Courville et al.) Machine learning tasks are usually described in terms of how ...
hanugm's user avatar
  • 4,172
1 vote
1 answer
188 views

I am trying to understand why mean is used for expectation in training Generative Adversarial Networks. The answer tells that it is due to the law of large numbers which is based on the assumption ...
hanugm's user avatar
  • 4,172
1 vote
1 answer
492 views

The following is a way to use tilde (∼) in context of random variables or random vectors. In statistics, the tilde is frequently used to mean "has the distribution (of)," for instance, $X∼N(...
hanugm's user avatar
  • 4,172
1 vote
0 answers
33 views

Random variables can be broadly classified into three types: random variables whose range is finite, random variable whose range is countably infinite and random variables whose range is uncountable. ...
hanugm's user avatar
  • 4,172
1 vote
0 answers
62 views

Consider a game like Pig (https://en.wikipedia.org/wiki/Pig_(dice_game)), but with a few additions: namely functions of both player's score and turn number that have unique impacts on scoring. What ...
robert's user avatar
  • 111
1 vote
1 answer
555 views

I know that $$\mathbb{E}[g(X) \mid A] = \sum\limits_{x} g(x) p_{X \mid A}(x)$$ for any random variable $X$. Now, consider the following expression. $$\mathbb{E}_{\pi} \left[ \sum \limits_{k=0}^{\infty}...
hanugm's user avatar
  • 4,172
6 votes
1 answer
1k views

I know that the notation $\mathcal{N}(\mu, \sigma)$ stands for a normal distribution. But I'm reading the book "An Introduction to Variational Autoencoders" and in it, there is this notation:...
Peyman's user avatar
  • 654
1 vote
1 answer
94 views

I've been reading the SQAIR paper lately, and the mathematics involved seems a bit complicated. Some background, about the paper: SQAIR stands for Sequential Attend, Infer, Repeat - the paper does ...
stoic-santiago's user avatar
0 votes
1 answer
2k views

I'm initialising DNN of shape [2 inputs, 2 hiddens, 1 output] with these weights and biases: ...
Dan D's user avatar
  • 1,338
1 vote
0 answers
105 views

I have this slide from my AI class on using a Bayes network to compute a conditional probability. I don't really understand the point of converting the conditional probabilities to factors (besides ...
Gooby's user avatar
  • 351
3 votes
1 answer
216 views

In my view intelligence begins once the thoughts/actions are logical rather than purely randomn based. The learning environments can be random but the logic seems to obey some elusive rules. There is ...
dankilev's user avatar
  • 153
1 vote
0 answers
82 views

If we take the vanilla variational auto-encoder (VAE), we $p(z)$ is a Gaussian distribution with zero mean and unit variance and we approximate $p(z|x) \approx q(z|x)$ to be a Gaussian distribution as ...
piccolo's user avatar
  • 173