Around the Web
10 |For more code, see my GitHub at https://github.com/kastnerkyle
Papers I've written or helped write can be found on Google Scholar
├── index.html ├── posts ├── bad-speech-synthesis-made-simple │ ├── bad-speech-synthesis-made-simple.ipynb │ ├── bad-speech-synthesis-made-simple.meta │ ├── index.html │ ├── overlap_add.png │ └── the_more_you_know.jpg ├── cleanup.sh ├── introduction-to-gaussian-processes │ ├── index.html │ ├── introduction-to-gaussian-processes.ipynb │ └── introduction-to-gaussian-processes.meta ├── introduction-to-page-rank │ ├── index.html │ ├── introduction-to-page-rank.ipynb │ └── introduction-to-page-rank.meta ├── linear-regression │ ├── index.html │ ├── linear-regression.ipynb │ └── linear-regression.meta ├── polyphase-signal-processing │ ├── index.html │ ├── polyphase-signal-processing.ipynb │ └── polyphase-signal-processing.meta ├── robust-matrix-decomposition │ ├── index.html │ ├── robust-matrix-decomposition.ipynb │ └── robust-matrix-decomposition.meta ├── single-speaker-word-recognition-with-hidden-markov-models │ ├── index.html │ ├── single-speaker-word-recognition-with-hidden-markov-models.ipynb │ └── single-speaker-word-recognition-with-hidden-markov-models.meta ├── using-pytables-for-larger-than-ram-data-processing │ ├── index.html │ ├── numpy_data_layout.png │ ├── using-pytables-for-larger-than-ram-data-processing.ipynb │ └── using-pytables-for-larger-than-ram-data-processing.meta ├── utils.py └── wavelets │ ├── index.html │ ├── wavelets.ipynb │ └── wavelets.meta └── site_gen.py /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |