Discover the Best AI Resources
Curated essentials, no noise — just what matters
Walks through the LSTM gating mechanism step by step, showing how the cell state and forget/input/output gates let the network carry information across long sequences where plain RNNs lose it to vanishing gradients.
Builds and deploys machine learning models across research, production, web, mobile, and edge environments. Its ecosystem spans Keras, TFX, LiteRT, TensorFlow.js, datasets, model hubs, and visualization tools.
Demonstrates that the order you feed inputs and outputs into a seq2seq model changes what it learns — even for sets that have no inherent order — and adds an attention-based set encoder plus a training loss that searches over output orderings.
Introduced dilated (atrous) convolutions, which expand a filter's receptive field exponentially with no loss of resolution and no extra parameters — the trick that let dense-prediction networks see wide context while keeping per-pixel detail.
Bet that one neural net, scaled with HPC, could transcribe both English and Mandarin without hand-built pipelines — reaching human-competitive accuracy by training fast enough to iterate on architecture in days, not weeks.
Before residual connections, stacking more layers made networks worse, not better — this 2015 paper fixed that by having layers learn a residual F(x)=H(x)-x via shortcut connections, enabling 152-layer nets that won ILSVRC 2015.
Combines a policy network (to narrow move choices) and a value network (to score board positions) with Monte Carlo tree search, cutting Go's vast search space enough to beat top programs 99.8% of the time and the European champion 5-0.
Re-examines residual blocks and shows that pure identity skip connections plus pre-activation (BN-ReLU before each conv) let gradients flow cleanly enough to train a 1001-layer ResNet, hitting 4.62% error on CIFAR-10.
Readable, minimal-dependency Python implementations of core robotics algorithms — localization (EKF, particle filter), SLAM (ICP, FastSLAM), path planning (A*, RRT*, PRM), and path tracking (LQR, MPC) — written to be studied, not just run.
Cross-platform API client for debugging, designing, testing and mocking GraphQL, REST, WebSockets, SSE and gRPC. Provides selectable storage backends (Local Vault, Git Sync, Cloud Sync with optional E2EE), a native OpenAPI editor, built-in test suites and a plugin ecosystem — useful for reproducible API development and pre-production validation.
Trains gradient-boosted decision trees for classification, ranking, and large-scale tabular ML with lower memory use and faster training. GOSS and EFB help it handle high-dimensional sparse data on CPU, GPU, and distributed setups.
Lets researchers and engineers build neural networks as regular Python programs, with GPU-backed tensors, autograd, distributed training, and production paths through TorchScript and related tooling.