Posts
Atlas LSH Neural Networks: Geometry as Context
- Get link
- X
- Other Apps
Atlas LSH Neural Networks: Geometry as Context Most neural networks perform essentially the same computation for every input. Every layer applies the same collection of parameters, regardless of what the input actually is. Atlas LSH neural networks explore a different idea: use the geometry of the input to determine which computation should be performed. The first step is to take a compact geometric sample of the input using locality-sensitive hashing (LSH). Each LSH bit can be viewed as asking a simple geometric question about the input vector—for example, which side of a randomly oriented hyperplane it lies on. A few hundred such bits form a sparse fingerprint describing the input's approximate location in a high-dimensional space. The important point is that these bits are not trying to represent the input in detail. Instead, they capture context . Similar inputs tend to produce similar bit patterns, so the LSH serves as a geometry sampler that identifies the neighborhood in ...
Walsh Hadamard Agreement & Disagreement for the iterated system HD
- Get link
- X
- Other Apps
This interactive sketch explores how a binary diagonal matrix D interacts with the Walsh–Hadamard mixing matrix H. Each entry of D can be flipped between +1 and -1, dividing the nodes into two groups. The code visualizes two derived operators: ● X = HD + DH ● Y = HD - DH These have a surprisingly clean interpretation: ● X keeps interactions between nodes with the same sign (“agreement”). ● Y keeps interactions between nodes with opposite signs (“disagreement”). Because the Walsh–Hadamard matrix contains only ±1 entries, the resulting matrix values become simple: ● reinforcement: +2 ● cancellation: 0 ● opposite reinforcement: -2 The graph views make this intuitive: ● The graph of X splits into same-sign clusters. ● The graph of Y becomes a bipartite interaction graph between opposite-sign groups. As entries of D are flipped, the system transitions between: ● uniform structure (all signs e...
Extreme Learning Machines
- Get link
- X
- Other Apps
Brief Introduction to Extreme Learning Machines (ELM) Extreme Learning Machines (ELMs) are a type of feedforward neural network known for fast training speed and good generalization performance. The contain 2 active layers. A fixed random layer with activation functions and an entirely linear read-out layer. Here's a point-wise introduction: Type: Single-hidden layer feedforward neural networks (SLFNs). Key Idea: Input weights and biases in the hidden layer are randomly assigned and not updated during training. Training: The read-out layer weights are analytically determined using least squares (no iterative backpropagation). Single shot least square. Advantage: Extremely fast training compared to traditional neural networks. Application Areas: Regression, classification, clustering, and feature learning tasks. Limitation: Performance depends on hidden layer size and random initialization. Current State of the Art (as of 2025) ELM Variants: ...
Java Machine Learning Collection
- Get link
- X
- Other Apps
Java Machine Learning Collection: An archive of machine learning code and general algorithms written in Java. Neural Networks Associative Memory Random Number Generators Random Projections Image Compression General Algorithms The Java source code is written in the style of the Numerical Recipies books. Short and simple, for the most part. Java Collection >>>>> Download
Neon Bulb Oscillators
- Get link
- X
- Other Apps
Neon Tube Oscillators Fig. 1 High voltage to headphones, don't do this in modern times. Very high impedance headphones are implied. A neon bulb is useful in many ways in an amateur station, but there are undoubtedly many amateurs who are not aware of the fact that the device can be made to oscillate at either audio or radio frequencies. Fig. 1 shows how a single bulb may be hooked up as an audio frequency oscillator. The L-C circuit is formed by the headphones and a condenser, and by varying the capacity the circuit can be made to oscillate at frequencies from a few cycles per second up to the highest audio frequencies. The variable resistor in series with the bulb and battery controls the strength of oscillation, and also controls the frequency to some extent. A 1 nf variable condenser will be sufficient to cover most of the audio range. Fig. 2 The circuit in Fig. 2 may be used when an RF oscillator is to be modulated at audio frequencies. The transformer may be an or...