Skip to content

Commit

Permalink
Merge pull request #60 from lzljbsc/patch-2
Browse files Browse the repository at this point in the history
Update WPE_Tensorflow_online.ipynb
  • Loading branch information
boeddeker committed Nov 9, 2021
2 parents c85f948 + d484f42 commit e5cafa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/WPE_Tensorflow_online.ipynb
Expand Up @@ -113,10 +113,10 @@
"T, _, _ = Y.shape\n",
"\n",
"def aquire_framebuffer():\n",
" buffer = list(Y[:taps+delay+1, :, :])\n",
" buffer = list(Y[:taps+delay, :, :])\n",
" for t in range(taps+delay+1, T):\n",
" yield np.array(buffer)\n",
" buffer.append(Y[t, :, :])\n",
" yield np.array(buffer)\n",
" buffer.pop(0)"
]
},
Expand Down

0 comments on commit e5cafa5

Please sign in to comment.