TensorFlow's attic of deep-learning recipes
A grab-bag of reference implementations for CTR prediction, multi-task learning, and text matching that saves you from re-deriving papers.

What it does This repo collects TensorFlow implementations of models from 2016–2018 academic papers: DeepFM, wide-and-deep, PNN, NFM, AFM, Deep & Cross Network for click-through-rate prediction; plus DSSM for text, and some deep reinforcement learning and multi-task learning code. It’s a cookbook, not a framework — each directory stands alone.
The interesting bit The CTR folder is the clear labor of love: seven named architectures, all the hot acronyms from the Kaggle-and-papers era of ad-tech. The rest — DeepRL, DeepMTL, DeepTXT — are sketched in with a single line each, almost as placeholders.
Key highlights
- Covers the classic deep-learning-for-ads hit parade (DeepFM, DIN, etc.)
- Pure TensorFlow, no higher-level framework abstractions
- 688 stars suggest it served as a common starting point for re-implementations
- README is bilingual Chinese/English, code comments likely follow suit
- “Welcome to pull requests!” — last meaningful activity appears to be years ago
Caveats
- No tests, no requirements.txt, no setup.py visible in the README; you’ll be reading source to figure out dependencies
- The DeepRL/DeepMTL/DeepTXT sections are barely described; unclear if they’re complete or stubs
- TensorFlow 1.x-era code likely; modern TF/Keras patterns not guaranteed
Verdict Worth a skim if you’re re-implementing a 2017 CTR paper and want to check your math against someone else’s. Skip it if you need production-ready libraries — look to DeepCTR or Merlin for that.