0

I'm looking for a generalization of the Bernoulli distribution to the continuous domain of [0, 1]. The main requirement is that $E[x] = \theta$.

  • are you familiar with the beta distribution? (has 2 parameters but obviously can ignore 1 / reduce dimensions), 2) why do you seek such a distribution?
  • – πr8 Mar 21 '17 at 20:54
  • Yes. The main reason beta doesn't work is because I do want the logpdf be a linear function in $\log (\theta)$ and $\log (1 - \theta)$. Beta also does not fulfill the analytic PDF, CDF, or ICDF requirements.

  • Machine Learning. This functional form is commonly used as a cost function to train binary classifiers. I want to generalize the cost function to regression in [0, 1] as well, while maintaining the same functional form, especially the forms for the gradient of the logpdf wrt $\theta$.

  • – SherjilOzair Mar 21 '17 at 21:03
  • okay, i see. what is the context for the regression taking place on $[0,1]$? also, a couple of remarks - i realise now that beta wouldn't fit the given form, but fyi it does have an analytic PDF (if not CDF,ICDF). i also suspect that such a model will be hard to find (if not impossible) if you prescribe that $E[x]=\theta$. It seems possible that there could be a family of distributions of the form $\log P = f\log(1-\theta)+g\log\theta+h$, but it would really take quite some luck for them to also have $E[x]=\theta$ – πr8 Mar 21 '17 at 21:14
  • Now that I think more about this, there is an additional requirement which is the most important, i.e. it should be the maximum possible entropy which satisfy these constraints. This requirement is the most important one. Analytic forms, and even the functional form above are nice-to-haves. E[x]=θ is also nice-to-have.

    You might say I've changed the question dramatically. The new question is: what's the maximum entropy distribution on [0, 1] with a single mean parameter?

    – SherjilOzair Mar 21 '17 at 21:33
  • Does maximum entropy make sense for a family of functions? Most versions of MaxEnt I've seen are based on fixing some characteristics (e.g. $E[x]=1, supp(x)\subset\mathbb{R}_+$) and then finding the single distribution which maximises the entropy subject to these constraints. – πr8 Mar 21 '17 at 21:35
  • Isn't that how most of these family of distributions here were derived?

    https://en.wikipedia.org/wiki/Maximum_entropy_probability_distribution#Examples

    – SherjilOzair Mar 21 '17 at 21:43