Conversation
|
Nice! Some links to the theano docs maybe? |
docs/source/theano.rst
Outdated
| @@ -0,0 +1,157 @@ | |||
| # pymc3 and theano | |||
There was a problem hiding this comment.
nitpicking. pymc3 should be stylized as PyMC3. Similar for other packages (Theano, NumPy and SciPy)
There was a problem hiding this comment.
I thought it looked strange in the text, but somehow I didn't think about that :-)
docs/source/theano.rst
Outdated
|
|
||
| Now we can tell theano to build a function that does this computation. | ||
| With a typical configuration theano generates C code, compiles it, | ||
| and creates a python function which wrapps the C function:: |
|
Any idea where this should go in the doc hierarchy? |
|
Maybe inside |
docs/source/theano.rst
Outdated
| in `theano.sparse`. For a detailed overview of available operations, | ||
| see `the theano api docs <http://deeplearning.net/software/theano/library/tensor/index.html>`_. | ||
|
|
||
| A notable exception where theano variables *don't* behave like |
After VI api quick start maybe |
|
An example for custom Ops is still missing, but I think we can do that later. |
|
Thanks @aseyboldt. |
|
Good work @aseyboldt. I had a bit of a think today about explaining Ops.
But it's tricky!
…On Tue, Jul 18, 2017 at 11:21 PM, Junpeng Lao ***@***.***> wrote:
Thanks @aseyboldt <https://github.com/aseyboldt>.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2387 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA8DiOk8tBQc_cglFKLw9wIk4xrMQTnyks5sPSHvgaJpZM4OPpW6>
.
--
Peadar Coyle
Skype: springcoilarch
www.twitter.com/springcoil
peadarcoyle.wordpress.com
|
|
Yes, very nice. |
|
@fonnesbeck Definitely. But the problem with that one is that I'd like to read a good intro for it before I can write one... |
|
@aseyboldt Good point. In fact, I would love to attend a Theano workshop, but I've never seen one. |
|
Amen to that!
…On Wed, Jul 19, 2017 at 12:52 AM, Adrian Seyboldt ***@***.***> wrote:
@fonnesbeck <https://github.com/fonnesbeck> Definitely. But the problem
with that one is that I'd like to read a good intro for it before I can
write one...
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2387 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA8DiLacVC0P8FK1qaHxJiI_d_yz7fAdks5sPTdAgaJpZM4OPpW6>
.
--
Peadar Coyle
Skype: springcoilarch
www.twitter.com/springcoil
peadarcoyle.wordpress.com
|
| .. math:: | ||
|
|
||
| \text{logp}\colon \mathbb{R} \to \mathbb{R}\\ | ||
| μ \mapsto \log N(μ|0, 1) + \log N(y|0, 1), |
There was a problem hiding this comment.
This might be a typo, it should be
μ \mapsto \log N(μ|0, 1) + \log N(y|μ, 1),
right?
There was a problem hiding this comment.
Yes, you are right, thank you.
Fix is coming up.
There was a problem hiding this comment.
Glad I can help. Great introduction by the way:)
No description provided.