Tags: neural network* + machine learning*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. Ashish Vaswani et. al. introduce Transformers and Attention in this classic 2017 paper.

    The Transformer architecture relies solely on attention mechanisms, dispensing with recurrence and convolutions entirely for sequence transduction tasks. This new network design improves translation quality while being more parallelizable and significantly faster to train than previous models.

    - Achieved 28.4 BLEU on the WMT 2014 English-to-German translation task.
    - Reached a state-of-the-art score of 41.8 BLEU for English-to-French using eight GPUs in only 3.5 days.
    - Demonstrates successful application to English constituency parsing with both large and limited training data sets.
  2. Researchers demonstrate that recurrent cortical circuits generate traveling waves acting as a computational engine in the visual cortex. These neural traveling waves allow the brain to build internal representations of the external world, enabling the prediction of upcoming sensory inputs and the replay of temporal memories. This biological mechanism is functionally analogous to how large language models learn statistical structures from text; instead, these waves encode environmental regularities into synaptic networks through experience.

    - Traveling waves modulate moment-to-moment perception.
    - They enable the inference of causes for noisy sensory inputs.
    - These dynamics allow for short-term predictions and memory replay.
  3. An overview of Kolmogorov-Arnold Networks (KAN) as an alternative paradigm to traditional neural network design. Unlike Multi-Layer Perceptrons (MLPs) that use fixed activation functions on nodes, KANs employ learnable univariate functions—specifically B-splines—on the edges between neurons. This approach allows for more accurate representations with fewer parameters and offers improved interpretability and potential for continual learning due to the local nature of spline basis functions.

    * The mathematical distinction between Universal Approximation Theorem and Kolmogorov-Arnold Representation Theorem
    * How B-splines enable learnable non-linear transformations on edges through control points
    * Comparison with MLPs regarding parameter efficiency, performance, and training speed
    * Advantages in interpretability and the mitigation of catastrophic forgetting via locality properties
  4. This article explores the field of mechanistic interpretability, aiming to understand how large language models (LLMs) work internally by reverse-engineering their computations. It discusses techniques for identifying and analyzing the functions of individual neurons and circuits within these models, offering insights into their decision-making processes.
  5. This article presents a compelling argument that the Manifold-Constrained Hyper-Connections (mHC) method in deep learning isn't just a mathematical trick, but a fundamentally physics-inspired approach rooted in the principle of energy conservation.

    The author argues that standard neural networks act as "active amplifiers," injecting energy and potentially leading to instability. mHC, conversely, aims to create "passive systems" that route information without creating or destroying it. This is achieved by enforcing constraints on the weight matrices, specifically requiring them to be doubly stochastic.

    The derivation of these constraints is presented from a "first principles" physics perspective:

    * **Conservation of Signal Mass:** Ensures the total input signal equals the total output signal (Column Sums = 1).
    * **Bounding Signal Energy:** Prevents energy from exploding by ensuring the output is a convex combination of inputs (non-negative weights).
    * **Time Symmetry:** Guarantees energy conservation during backpropagation (Row Sums = 1).

    The article also draws a parallel to Information Theory, framing mHC as a way to combat the Data Processing Inequality by preserving information through "soft routing" – akin to a permutation – rather than lossy compression.

    Finally, it explains how the Sinkhorn-Knopp algorithm is used to enforce these constraints, effectively projecting the network's weights onto the Birkhoff Polytope, ensuring stability and adherence to the laws of thermodynamics. The core idea is that a stable deep network should behave like a system of pipes and valves, routing information without amplifying it.
  6. This Python code demonstrates a neural network application on a CircuitPython board, utilizing a camera (OV7670) for image capture, preprocessing, and inference using a digit classifier. It includes image conversion, auto-cropping, and normalization steps.
  7. A deep dive into the process of LLM inference, covering tokenization, transformer architecture, KV caching, and optimization techniques for efficient text generation.
  8. An exploration of simple transformer circuit models that illustrate how superposition arises in transformer architectures, introducing toy examples and analyzing their behavior.
  9. The core mechanics of Deep Learning, and how to think the PyTorch way. This guide provides a whirlwind tour of PyTorch’s methodologies and design principles, covering tensors, automatic differentiation, and training custom neural networks.
  10. A unified memory stack that functions as a memristor as well as a ferroelectric capacitor is reported, enabling both energy-efficient inference and learning at the edge.

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "neural network+machine learning"

About - Propulsed by SemanticScuttle