Skip to content

Latest commit

 

History

History
233 lines (193 loc) · 12.3 KB

File metadata and controls

233 lines (193 loc) · 12.3 KB

Research Resources

This bibliography connects the ideas in the experiment guide to their reusable implementations. Experiment-specific caveats remain beside the runnable code; this page provides the broader papers, datasets, and technical references.

Core References

See it in the repo: matrix operations, tensor runtime, architecture, and the foundation experiments.

  • Deep Learning - Feedforward networks, backpropagation, losses, optimization, and numerical computation.
  • BLAS - Vector, matrix-vector, and matrix-matrix operation interfaces.
  • LAPACK - Dense linear algebra routines built around optimized BLAS usage.
  • Zig Language Reference 0.16.0 - Language reference for the Zig version used by the project.
  • Zig Standard Library - Allocators, arrays, math functions, file I/O, and testing APIs.

Neural Network Foundations

See it in the repo: matrix, layers, networks, and the foundation experiments.

Optimization

See it in the repo: training and optimizers, reusable modules, and Optimizer Lab.

Spectral Learning

See it in the repo: spectral transforms and features, network fundamentals, and Spectral Learning.

Activations And Gating

See it in the repo: activation functions, gated layers, Gated Network, and the implementation notes.

Representations, Vision, And Audio

See it in the repo: spatial layers, audio features, reusable modules, and the vision and audio experiments.

Transformers And Tiny GPT

See it in the repo: Transformer components, tensor primitives, TinyGPT, and the language and sequence experiments.

NLP, Structured Prediction, And Retrieval

See it in the repo: text processing, embeddings, structured prediction, decoding, retrieval, and the language and sequence experiments.

Sequence Models And Reinforcement Learning

See it in the repo: recurrent models, reinforcement-learning utilities, GRU Sequence, and DQN.

Quantization

See it in the repo: quantization primitives and the TurboQuant experiment.

GPU And Backend Work

See it in the repo: backend abstraction, Metal, CUDA, ROCm, the runtime experiments, and the GPU verification guide.

Serving And Tooling

See it in the repo: inference service, XOR serving, and the TinyGPT OpenAI-compatible server.

Datasets

See them in the repo: MNIST, Speech Commands, and the TinyGPT corpus notes.