├── LICENSE ├── README.md ├── amazon-spark ├── avg_rating_desc.png ├── category_breakdown.png ├── index.html ├── item_count_cum.png ├── item_histogram.png ├── item_nth_breakdown.png ├── time_breakdown.png ├── user_count_cum.png ├── user_histogram.png ├── user_item_histogram.png └── user_nth_breakdown.png ├── basketball-shots └── index.html ├── benchmark-gpus ├── dl-cpu-gpu-1.png ├── dl-cpu-gpu-10.png ├── dl-cpu-gpu-11.png ├── dl-cpu-gpu-12.png ├── dl-cpu-gpu-2.png ├── dl-cpu-gpu-3.png ├── dl-cpu-gpu-4.png ├── dl-cpu-gpu-5.png ├── dl-cpu-gpu-6.png ├── dl-cpu-gpu-7.png ├── dl-cpu-gpu-8.png ├── dl-cpu-gpu-9.png └── index.html ├── breach-network └── index.html ├── char-tsne ├── batch-losses.png ├── char-tsne-2.png ├── char-tsne-embed.png ├── char-tsne.png ├── epoch-losses.png └── index.html ├── deep-learning-cpu-gpu ├── dl-cpu-gpu-1.png ├── dl-cpu-gpu-10.png ├── dl-cpu-gpu-11.png ├── dl-cpu-gpu-12.png ├── dl-cpu-gpu-13.png ├── dl-cpu-gpu-14.png ├── dl-cpu-gpu-2.png ├── dl-cpu-gpu-3.png ├── dl-cpu-gpu-4.png ├── dl-cpu-gpu-5.png ├── dl-cpu-gpu-6.png ├── dl-cpu-gpu-7.png ├── dl-cpu-gpu-8.png ├── dl-cpu-gpu-9.png └── index.html ├── first-comment └── index.html ├── ggplot2-web ├── index.html ├── tutorial-0.png ├── tutorial-1.png ├── tutorial-10.png ├── tutorial-11.png ├── tutorial-12.png ├── tutorial-13.png ├── tutorial-2.png ├── tutorial-3.png ├── tutorial-4.png ├── tutorial-5.png ├── tutorial-6.png ├── tutorial-7.png ├── tutorial-8.png ├── tutorial-9.png └── tutorial-tile.png ├── imdb-data-analysis └── index.html ├── imgur-decline ├── index.html ├── reddit-1.png ├── reddit-2.png ├── reddit-3.png ├── reddit-4.png ├── reddit-5.png └── reddit-6.png ├── interactive-network └── index.html ├── keras-cntk └── index.html ├── modeling-link-aggregators └── index.html ├── predict-reddit-submission-success ├── index.html ├── predict-reddit-1.png ├── predict-reddit-2.png ├── predict-reddit-3.png ├── predict-reddit-4.png └── predict-reddit-5.png ├── predicting-arrests ├── confusionMatrix.png ├── correlationMatrix.png ├── crime-2017-04-15-20.png ├── imp.png ├── index.html └── map_ani.gif ├── reactionrnn └── index.html ├── sfo-jfk-flights └── index.html └── stack-overflow-questions └── index.html /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Max Woolf 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # notebook 2 | 3 | This GitHub Repository stores my R Notebooks, allowing GitHub Pages to serve the R Notebooks on my website without me having to include a redundant, heavy `index.html` in every corresponding repository. All the notebooks will be served from a `/notebooks/` folder, which has SEO benefits as well. (example: http://minimaxir.com/notebooks/first-comment/) 4 | 5 | Refer to the original repository for each notebook where appropriate. (most are licensed MIT) 6 | 7 | ## Maintainer 8 | 9 | Max Woolf ([@minimaxir](http://minimaxir.com)) 10 | 11 | ## License 12 | 13 | MIT -------------------------------------------------------------------------------- /amazon-spark/avg_rating_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/avg_rating_desc.png -------------------------------------------------------------------------------- /amazon-spark/category_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/category_breakdown.png -------------------------------------------------------------------------------- /amazon-spark/item_count_cum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/item_count_cum.png -------------------------------------------------------------------------------- /amazon-spark/item_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/item_histogram.png -------------------------------------------------------------------------------- /amazon-spark/item_nth_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/item_nth_breakdown.png -------------------------------------------------------------------------------- /amazon-spark/time_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/time_breakdown.png -------------------------------------------------------------------------------- /amazon-spark/user_count_cum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/user_count_cum.png -------------------------------------------------------------------------------- /amazon-spark/user_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/user_histogram.png -------------------------------------------------------------------------------- /amazon-spark/user_item_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/user_item_histogram.png -------------------------------------------------------------------------------- /amazon-spark/user_nth_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/amazon-spark/user_nth_breakdown.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-1.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-10.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-11.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-12.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-2.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-3.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-4.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-5.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-6.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-7.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-8.png -------------------------------------------------------------------------------- /benchmark-gpus/dl-cpu-gpu-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/benchmark-gpus/dl-cpu-gpu-9.png -------------------------------------------------------------------------------- /char-tsne/batch-losses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/char-tsne/batch-losses.png -------------------------------------------------------------------------------- /char-tsne/char-tsne-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/char-tsne/char-tsne-2.png -------------------------------------------------------------------------------- /char-tsne/char-tsne-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/char-tsne/char-tsne-embed.png -------------------------------------------------------------------------------- /char-tsne/char-tsne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/char-tsne/char-tsne.png -------------------------------------------------------------------------------- /char-tsne/epoch-losses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/char-tsne/epoch-losses.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-1.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-10.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-11.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-12.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-13.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-14.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-2.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-3.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-4.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-5.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-6.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-7.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-8.png -------------------------------------------------------------------------------- /deep-learning-cpu-gpu/dl-cpu-gpu-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/deep-learning-cpu-gpu/dl-cpu-gpu-9.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-0.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-1.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-10.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-11.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-12.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-13.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-2.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-3.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-4.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-5.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-6.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-7.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-8.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-9.png -------------------------------------------------------------------------------- /ggplot2-web/tutorial-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/ggplot2-web/tutorial-tile.png -------------------------------------------------------------------------------- /imgur-decline/reddit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-1.png -------------------------------------------------------------------------------- /imgur-decline/reddit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-2.png -------------------------------------------------------------------------------- /imgur-decline/reddit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-3.png -------------------------------------------------------------------------------- /imgur-decline/reddit-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-4.png -------------------------------------------------------------------------------- /imgur-decline/reddit-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-5.png -------------------------------------------------------------------------------- /imgur-decline/reddit-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/imgur-decline/reddit-6.png -------------------------------------------------------------------------------- /predict-reddit-submission-success/predict-reddit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predict-reddit-submission-success/predict-reddit-1.png -------------------------------------------------------------------------------- /predict-reddit-submission-success/predict-reddit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predict-reddit-submission-success/predict-reddit-2.png -------------------------------------------------------------------------------- /predict-reddit-submission-success/predict-reddit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predict-reddit-submission-success/predict-reddit-3.png -------------------------------------------------------------------------------- /predict-reddit-submission-success/predict-reddit-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predict-reddit-submission-success/predict-reddit-4.png -------------------------------------------------------------------------------- /predict-reddit-submission-success/predict-reddit-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predict-reddit-submission-success/predict-reddit-5.png -------------------------------------------------------------------------------- /predicting-arrests/confusionMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predicting-arrests/confusionMatrix.png -------------------------------------------------------------------------------- /predicting-arrests/correlationMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predicting-arrests/correlationMatrix.png -------------------------------------------------------------------------------- /predicting-arrests/crime-2017-04-15-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predicting-arrests/crime-2017-04-15-20.png -------------------------------------------------------------------------------- /predicting-arrests/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predicting-arrests/imp.png -------------------------------------------------------------------------------- /predicting-arrests/map_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/notebooks/e556af58eceb9800c1dd63c94d805eadfe2bf915/predicting-arrests/map_ani.gif --------------------------------------------------------------------------------