HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tuned

64 karmajoined il y a 13 ans
www.tuned.org.uk

Submissions

Syntethic Intelligence: from IT to AI, a semantic revolution

amazon.com
2 points·by tuned·il y a 10 jours·0 comments

[untitled]

1 points·by tuned·il y a 10 jours·0 comments

[untitled]

1 points·by tuned·le mois dernier·0 comments

[untitled]

1 points·by tuned·il y a 4 mois·0 comments

Graph Wiring: speed, accuracy, RAG-focused

tuned.org.uk
2 points·by tuned·il y a 5 mois·0 comments

Starting from scratch: Training a 30M Topological Transformer

tuned.org.uk
144 points·by tuned·il y a 6 mois·58 comments

Show HN: A concept implementation for a faster Transformer [pdf]

github.com
2 points·by tuned·il y a 6 mois·0 comments

Metamaterials-Inspired Software Engineering

economyoftime.net
1 points·by tuned·il y a 8 mois·0 comments

A Rust+Burn Implementation for Nanochat

github.com
2 points·by tuned·il y a 9 mois·1 comments

Show HN: Spectral Indexing, from concept to paper to alpha in 45 days

tuned.org.uk
2 points·by tuned·il y a 9 mois·0 comments

DeepSeek-OCR Compression Meets Energy Search

tuned.org.uk
3 points·by tuned·il y a 9 mois·1 comments

DeepSeek-OCR compression in readable Rust

crates.io
3 points·by tuned·il y a 9 mois·1 comments

[untitled]

1 points·by tuned·il y a 9 mois·0 comments

Show HN: Beyond geometric similarity in vector databases

tuned.org.uk
1 points·by tuned·il y a 9 mois·0 comments

Better vector search with graphs and spectral indexing

tuned.org.uk
7 points·by tuned·il y a 9 mois·0 comments

Show HN: Spectral Indexing for Vector Search

tuned.org.uk
3 points·by tuned·il y a 10 mois·0 comments

ArrowSpace: A primer for spectral indexing in vector search

tuned.org.uk
1 points·by tuned·il y a 11 mois·0 comments

Grow Mycelium, a Metabolic Wonder

medium.com
1 points·by tuned·il y a 5 ans·1 comments

comments

tuned
·il y a 10 jours·discuss
trying to generate images and sounds from eigenvectors as harmonic basis
tuned
·il y a 4 mois·discuss
Measuring structural information. Check out the paper, notebooks and Python library
tuned
·il y a 6 mois·discuss
ok, thanks. I am taking it slow then
tuned
·il y a 6 mois·discuss
no, from my point of view is being more domain-focused instead of going full-orthogonal.
tuned
·il y a 6 mois·discuss
right. this is a proposal that needs to be tested. I started testing it on 30M parameters then I will move to a 100M and evaluate the generation on domain-specific assisting tasks
tuned
·il y a 6 mois·discuss
> This is obviously not powerful enough to express non-linear relationships - like graph relationships.

the distance metrics used is based on energy-informed graphs that encode energy relations in a distribution called taumode, see my previous paper on spectral indexing for vector databases for a complete roll-out
tuned
·il y a 6 mois·discuss
also: precomputing a sparse Laplacian for N vectors at dimension D (NxD) is infinitely cheaper (if using `arrowspace`, my previous paper) than computing distances on the same full dense vectors billions of times. There are published tests that compute a Laplacian on 300Kx384 space in 500 secs on a laptop on CPU. So it is a trade-off: potentially few minutes of pretaining or hours of dot-product on dense matrices
tuned
·il y a 6 mois·discuss
if you have a corpus of code snippets to train the manifold (Laplacian) on (and a good embedding model), it is definitely possible to try something like this.
tuned
·il y a 6 mois·discuss
it made sense to me as it is a very simple idea I guess: causal self-attention compute QKV distances computing on the full vectors for Q,K and V; the topological transformer can provide the same computation using Q, scalar K and V. Instead of [N², N², N²] -> [N², N, N²] is used. If generation is confirmed to be on par in terms of quality, the gains are evident.
tuned
·il y a 6 mois·discuss
it most-likely will in terms of performance as it uses 50% less memory (for sure it will at inference time that is the most used operation on web services), because it can leverage longer T and D if the design is confirmed and the quality of generation is comparable to other models. If this very basic assumption is correct, it means a lot of savings in electricity as the same GPUs can resolve more requests.
tuned
·il y a 6 mois·discuss
Thanks to all that have read. I would be glad to answer further scoped questions on the content of the post and the paper. I answered some comments that may clarify the ideas from the redesign.
tuned
·il y a 6 mois·discuss
the idea is to have a lot of "narrow" models to work with RAG instead of one model for all the knowledge domains or also distil the metadata that is currently in enterprise Knowledge Graphs
tuned
·il y a 6 mois·discuss
exactly, that is the current objective. To proove that generation for a specific domain is on-par with causal attention models
tuned
·il y a 6 mois·discuss
comparisons will be run when the quality of generation will be on pair with other available models. It is useless to have preformance if the quality is not at lease on par.

The paper runs a bench (code and bench in the paper) to compare the performance with a causal attention GPT-2 model (nanoGPT) at inference (20% faster) and at training (equivalent for T and D larger than a threshold).
tuned
·il y a 6 mois·discuss
This is a novel re-interpretation of the Transformer, based on my previous research made with a library called `arrowspace`.

It is somehow what is called a "Grassmann-like flow" but without the Plucker embedding, or also similar to what is done in DavisTensor but relying on spectral Laplacian instead of purely geometric distances.

The problem with a lot of stuff done before is that it focuses on dense representations. This architecture is focuses on sparse representation and provides a new approximation computation based on energy-informed graphs.
tuned
·il y a 6 mois·discuss
thanks for linking.

Yes the paper compares the new architecture (that is also a fork of my implementation of nanoGPT) with Karpathy's nanoGPT. There are also links to the code and bench used.
tuned
·il y a 6 mois·discuss
thanks for reading. I cannot retrain an existing model as the self-attention mechanism has been completely redesigned. The Keys and Values in self-attention are stored as scalars, so a latent space with traditional weights does not make sense if used in the context of a topological transformer. The two latent spaces would be somehow equivalent eventually but they would store totally different values.
tuned
·il y a 9 mois·discuss
Model Architecture (gpt.rs)

Multi-layer Transformer: N stacked decoder blocks with pre-norm residual connections Rotary Position Embeddings (RoPE): Replaces learned positional encodings with rotary embeddings for better length generalization Multi-Query Attention (MQA): Reduces KV cache size by sharing key/value heads across query heads RMSNorm: Parameter-free normalization for stability (instead of LayerNorm) QK-norm: Normalizes queries and keys before attention to prevent numerical instability ReLU² MLP: Uses ReLU(x)² activation for better gradient flow on GPUs Softcap Logits: Bounds output logits using tanh(x/15)*15 to prevent extreme values
tuned
·il y a 9 mois·discuss
In this post, I demonstrate how DeepSeek's optical compression approach—treating rendered text as a visual medium—has been replicated in Rust using `burn.dev`, and how this compression primitive unlocks a new search paradigm in arrowspace v0.18.0: energy-informed retrieval that moves decisively beyond cosine similarity.
tuned
·il y a 5 ans·discuss
I studying biology to grow mycelium and run data analysis on growth rates and metabolism of fungi via microscopy. https://news.ycombinator.com/item?id=27362285 Anybody biology-savvy interested in collaborating, leave a comment.