TensorFlow notebooks that skip the hand-holding
Six standalone deep learning implementations for developers who'd rather read code than prose.

What it does
This repo is a grab bag of six Jupyter notebooks covering GANs, ResNet, RNNs, and visualization tricks. Each notebook implements a specific paper or technique in TensorFlow—DCGAN, InfoGAN, ResNet/HighwayNet/DenseNet comparisons, plus t-SNE and layer activation visualizations on MNIST. No unified framework, no install script. You clone, you pick a notebook, you run.
The interesting bit
The “Deep Network Comparison” notebook is the rare side-by-side you don’t often see: three major architectures (ResNet, HighwayNet, DenseNet) trained on the same CIFAR-10 task in one place. Most repos pick a winner and preach; this one just puts them in the ring.
Key highlights
- DCGAN and InfoGAN implementations with the original papers’ architectures
- Layer visualization and t-SNE tutorials that work on MNIST (small data, fast iteration)
- RNN implementation in “basic” TensorFlow—pre-Keras, so you see the graph construction
- All notebooks are self-contained; no hidden dependencies across folders
Caveats
- “Tesnorflow” typo in the README suggests light maintenance; TensorFlow 1.x code likely needs migration
- 520 stars but no issues/PRs visible here—community activity unclear
- “miscellaneous” is the author’s word; don’t expect a curriculum or progression
Verdict
Good for researchers or students who want clean, isolated reference implementations to crib from. Skip it if you need production code, modern TF2/Keras, or a guided learning path.