-
-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add tutorial for Kolmogorov Equations from NeuralNetDiffEq #160
[WIP] Add tutorial for Kolmogorov Equations from NeuralNetDiffEq #160
Conversation
ashutosh-b-b
commented
Jun 9, 2020
- Add a basic Fokker Planck Tutorial
- Extend this tutorial to applications in neuronal dynamics.
y_val = m(x_val) | ||
y_val = reshape(y_val , length(xs) , 1) | ||
x_val = collect(xs) | ||
plot(x_val , y_val,linewidth=3,title="Solution to the linear PDE with a thick line", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interesting title
@@ -0,0 +1,75 @@ | |||
--- | |||
title: Kolmogorov Equations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: Kolmogorov Equations | |
title: Kolmogorov Backward Equations |
using Plots | ||
using Distributions | ||
``` | ||
## Introduction on Kolmogorov Equations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
backward. I'd always mention it's the backward equation for clarity.
Overall very good start, but it's missing some of those pieces in the introduction to explain and motivate the model. |
Merging assuming it builds properly. |