Giter Site home page Giter Site logo

graykode / distribution-is-all-you-need Goto Github PK

View Code? Open in Web Editor NEW
1.6K 53.0 384.0 1.26 MB

The basic distribution probability Tutorial for Deep Learning Researchers

License: MIT License

Python 100.00%
deep-learning mathmatics probability gaussian distribution

distribution-is-all-you-need's People

Contributors

graykode avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

distribution-is-all-you-need's Issues

poisson distribution

  • poisson distribution is the limit of binomial distribution

  • poisson distribution and gamma distribution are conjugate distributions

  • poisson distribution is also useful in machine learning such as Poisson Regression

  • It may be helpful if you could add it in the figure

Added ppt Attachment

Added power point attachment to make modifications and deletions free :D
As long as you leave the source, you are free to cite and edit it.

License

formatting issue in exponential.py

plt.plot(x, y, label=r'$\mu=%.2f,\ \sigma=%.2f,'
r'\ \lambda=%d$' % (u, s, lamb))
lambda should be lambda=%.2f otherwise it will only display integers.

calculate expectation and variance

The output mu, and sigma is the mean and std of the y, not the expectation(mean) and variance of the distribution, which may be confusing.
I suggest return
mu = np.sum(x * y) * step
sigma = np.sum(x * x * y) * step - mu * mu
where step is the step option in np.arange
(eg: x = np.arange(0, 1, 0.001, dtype=np.float), then step is 0.001)

For example in beta ditribution, E(x) = a/(a+b) and Var(x) = ab/((a+b)^2(a+b+1)).
E(x)
Var(x)

I suppose mu should be E(x) and sigma should be Var(x). And I get result like this:
beta

I also get gamma distribution result like this:
gamma

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.