├── .gitignore ├── LICENSE ├── README.md ├── friendly-intro-to-cross-entropy-loss ├── A Friendly Introduction to Cross-Entropy Loss.ipynb └── images │ ├── classification_images.png │ ├── claude_shannon.jpg │ ├── predict.jpg │ ├── rob_small.jpg │ ├── stairs.jpg │ ├── tape_measure.jpg │ ├── taxes.jpg │ └── tools.jpg ├── homepage ├── Homepage.ipynb └── images │ ├── encoding-visualization.png │ ├── maneuver-rec.png │ ├── mnist-gradient-mags.png │ ├── paragliding.jpg │ ├── rob.jpg │ ├── skydiving.jpg │ └── zugspitze.jpg ├── tensorflow-scan-examples ├── TensorFlow Scan Examples.ipynb ├── images │ ├── loss_ema.png │ ├── loss_raw.png │ └── rob_small.jpg └── logdir │ └── events.out.tfevents.1461537720.gpu004 └── tensorflow_scan_examples ├── DUPLICATED_HERE_TO_AVOID_BROKEN_WEB_LINKS ├── images ├── loss_ema.png ├── loss_raw.png └── rob_small.jpg ├── logdir └── events.out.tfevents.1461537720.gpu004 └── tensorflow_scan_examples.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/A Friendly Introduction to Cross-Entropy Loss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/A Friendly Introduction to Cross-Entropy Loss.ipynb -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/classification_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/classification_images.png -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/claude_shannon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/claude_shannon.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/predict.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/predict.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/rob_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/rob_small.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/stairs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/stairs.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/tape_measure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/tape_measure.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/taxes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/taxes.jpg -------------------------------------------------------------------------------- /friendly-intro-to-cross-entropy-loss/images/tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/friendly-intro-to-cross-entropy-loss/images/tools.jpg -------------------------------------------------------------------------------- /homepage/Homepage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/Homepage.ipynb -------------------------------------------------------------------------------- /homepage/images/encoding-visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/encoding-visualization.png -------------------------------------------------------------------------------- /homepage/images/maneuver-rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/maneuver-rec.png -------------------------------------------------------------------------------- /homepage/images/mnist-gradient-mags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/mnist-gradient-mags.png -------------------------------------------------------------------------------- /homepage/images/paragliding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/paragliding.jpg -------------------------------------------------------------------------------- /homepage/images/rob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/rob.jpg -------------------------------------------------------------------------------- /homepage/images/skydiving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/skydiving.jpg -------------------------------------------------------------------------------- /homepage/images/zugspitze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/homepage/images/zugspitze.jpg -------------------------------------------------------------------------------- /tensorflow-scan-examples/TensorFlow Scan Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow-scan-examples/TensorFlow Scan Examples.ipynb -------------------------------------------------------------------------------- /tensorflow-scan-examples/images/loss_ema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow-scan-examples/images/loss_ema.png -------------------------------------------------------------------------------- /tensorflow-scan-examples/images/loss_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow-scan-examples/images/loss_raw.png -------------------------------------------------------------------------------- /tensorflow-scan-examples/images/rob_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow-scan-examples/images/rob_small.jpg -------------------------------------------------------------------------------- /tensorflow-scan-examples/logdir/events.out.tfevents.1461537720.gpu004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow-scan-examples/logdir/events.out.tfevents.1461537720.gpu004 -------------------------------------------------------------------------------- /tensorflow_scan_examples/DUPLICATED_HERE_TO_AVOID_BROKEN_WEB_LINKS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tensorflow_scan_examples/images/loss_ema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow_scan_examples/images/loss_ema.png -------------------------------------------------------------------------------- /tensorflow_scan_examples/images/loss_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow_scan_examples/images/loss_raw.png -------------------------------------------------------------------------------- /tensorflow_scan_examples/images/rob_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow_scan_examples/images/rob_small.jpg -------------------------------------------------------------------------------- /tensorflow_scan_examples/logdir/events.out.tfevents.1461537720.gpu004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow_scan_examples/logdir/events.out.tfevents.1461537720.gpu004 -------------------------------------------------------------------------------- /tensorflow_scan_examples/tensorflow_scan_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdipietro/jupyter-notebooks/HEAD/tensorflow_scan_examples/tensorflow_scan_examples.ipynb --------------------------------------------------------------------------------