Skip to content
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

unit04 lab latex markdown fix #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions unit04_model_sel/lab_neural_partial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@
"\n",
"One way we can improve the model accuracy is to used delayed version of the features. Specifically, the model we used above mapped the features \n",
"\n",
" yhat[i,k] = \\sum_{j=0}^{p-1} X[i,j]*w[j,k] + b[k]\n",
" $yhat[i,k] = \\sum_{j=0}^{p-1} X[i,j]*w[j,k] + b[k]$\n",
" \n",
"where `p` is the number of features and `w[j,k]` is a matrix of coefficients. In this model, `yhat[i,:]` at time `i` was only dependent on the inputs `X[i,:]` at time `i`. In signal processing, this is called a *memoryless* model. However, in many physical systems, such as those that arise in neuroscience, there is a delay between the inputs `X[i,:]` and the outputs `y[i]`. For such cases, we can use a model of the form,\n",
"\n",
" yhat[i+d,k] = \\sum_{k=0}^d \\sum_{j=0}^{p-1} \\sum_{m=0}^d X[i+m,j]*W[j,m,k] + b[k]\n",
" $yhat[i+d,k] = \\sum_{k=0}^d \\sum_{j=0}^{p-1} \\sum_{m=0}^d X[i+m,j]*W[j,m,k] + b[k]$\n",
" \n",
"where `W` is a 3-dim array of coefficients where:\n",
"\n",
Expand Down