DIGISIM.OBSERVATORY · catégorie 22 — mind
0 en direct · 0 prévu build 0.2 — : —
Français
catégorie 22 · mind

Regardez une machine apprendre.

L’époque tourne sur des machines qui apprennent, et pourtant l’apprentissage lui-même reste caché derrière une API. Le voici à découvert, chaque étape à l’écran et s’exécutant entièrement dans votre navigateur : un réseau de neurones traçant une frontière de décision en temps réel, un agent tombant par hasard sur une récompense, l’attention décidant quel mot regarder, le bruit se résolvant en structure sous un modèle de diffusion. Pas de cloud, pas de clés — juste des gradients, des politiques et des probabilités, dessinés à mesure qu’ils se produisent.

apps en direct 0
en conception 0
ouvert 05·31
MIND-001 · CONSTRUIT prêt
en vedette
Neuron Lab

A real fully-connected neural network learning to read digits, drawn in 3D — every ball a neuron, every wire a weight. Press Train and watch backpropagation flow; open any neuron to read its exact weighted sum.

neural-networkbackpropagationmlpdeep-learningmnisttraining
2026-06-16 /mind/neuron-lab
dans cette section · 36 apps
MIND-002 prêt
Universal Approximator

Draw any curve y=f(x) and watch a tiny MLP learn to fit it live by backpropagation — add neurons to chase wigglier targets and see the universal approximation theorem unfold as a sum of basis bumps.

mind /mind/universal-approximator
MIND-003 prêt
Temperature & Sampling

Watch temperature, top-k and nucleus top-p reshape a language model’s next-token distribution as text streams out token by token.

mind /mind/temperature-sampling
MIND-004 prêt
Next-Token Predictor

Drive a real language model by hand: a word-level interpolated trigram trained on public-domain prose shows its top next-token candidates with live probabilities — click one to append it and watch the distribution shift.

mind /mind/next-token-predictor
MIND-005 prêt
Neuroevolution

A population of little cars, each driven by its own tiny neural network, evolves to race a procedural track — raycast sensors feed an MLP that learns to steer, and a genetic algorithm breeds the survivors generation after generation.

mind /mind/neuroevolution
MIND-006 prêt
MNIST Live

Draw a digit and a classifier trained in your browser on the real MNIST dataset recognises it live — per-class confidence bars and the top pick update on every stroke.

mind /mind/mnist-live
MIND-007 prêt
t-SNE Unfolding

Watch real t-SNE run live: a random fog of high-dimensional points pulls itself apart frame by frame, gradient-descending the KL divergence until clean, separated clusters bloom — Gaussian blobs, interlocking rings, baked digits, concentric shells.

mind /mind/tsne
MIND-008 prêt
Tokenizer Playground

Train a real Byte-Pair Encoding live, then watch your text shatter into colored tokens — and finally see why "strawberry" trips up an LLM trying to count its r’s.

tokenizer /mind/tokenizer
MIND-009 prêt
Reservoir Computing

Watch an Echo State Network learn a chaotic signal the lazy, brilliant way: a big FIXED random recurrent reservoir is driven by the input, and only a single linear readout is trained — by ridge regression, no backprop — yet it learns to predict the series, then runs autonomously off its own output, continuing the signal until chaos finally pulls it apart.

mind /mind/reservoir-computing
MIND-010 prêt
PCA Projector

Watch real Principal Component Analysis fold a high-dimensional cloud — a tilted 3D Gaussian, the classic Iris flowers, a Swiss-roll, clustered digits — onto its principal axes, points sliding into place while the explained-variance bars fill.

mind /mind/pca
MIND-011 prêt
Naive Bayes

Train a real multinomial Naive Bayes spam filter in your browser, then type a message and watch each word tug the verdict toward spam or ham — with the log-odds math drawn live, word by word.

mind /mind/naive-bayes
MIND-012 prêt
Markov Decision Process

Solve a stochastic gridworld with value iteration — watch value flood out from the goal and the optimal policy re-point as discount, living reward, and action noise reshape the safest path.

reinforcement-learning /mind/mdp
MIND-013 prêt
Manifold Hypothesis

High-dimensional data lives on a curved low-dimensional sheet — so "learning" is unrolling it. Watch a Swiss roll, S-curve, or severed sphere flatten in 3D, then see real Isomap and LLE recover the true 2D layout while linear PCA fails to unroll and folds the colours back on themselves.

mind /mind/manifold
MIND-014 prêt
kNN Explorer

Classify every pixel of a 2D plane by the majority vote of its k nearest training points — slide k from a jagged k=1 island map to a smooth large-k wash and watch overfitting melt into underfitting in real time.

mind /mind/knn
MIND-015 prêt
Genetic Algorithm

Watch a population of genomes evolve over generations — selection, crossover and mutation — as a recognizable image rises from noise, rockets thread an obstacle, a phrase assembles itself, or a swarm climbs a rugged fitness landscape.

mind /mind/genetic-algorithm
MIND-016 prêt
GAN Arena

Watch a generative adversarial network duel in your browser: a tiny generator maps random noise into 2-D points trying to mimic a real target distribution while a discriminator fights to tell real from fake — the fakes migrate to cover the target, the discriminator surface flattens toward a coin-flip as the generator wins, the two loss curves duel, and on a grid of modes you can trigger the classic mode collapse on cue.

mind /mind/gan-arena
MIND-017 prêt
Diffusion Denoiser

The tech behind image generators, made tractable in 2D — add Gaussian noise to a point cloud until a shape dissolves, then watch a tiny denoiser network you train in your browser flow pure noise back into the shape, guided by a learned score field.

mind /mind/diffusion-denoiser
MIND-018 prêt
Gradient Descent Landscape

Watch a real optimizer descend a 3D loss surface — switch between SGD, Momentum, RMSProp and Adam, then crank the learning rate until it visibly diverges.

mind /mind/descent-landscape
MIND-019 prêt
Decision Boundary

Drop labelled points on a plane and watch four real classifiers — k-NN, logistic regression, a live-trained neural net, and an RBF kernel — carve the space into coloured decision regions before your eyes.

mind /mind/decision-boundary
MIND-020 prêt
Confusion Matrix

Drag a decision threshold across two overlapping score distributions and watch the confusion matrix, ROC and PR curves, and every metric recompute live — then crank the class imbalance to expose why accuracy lies.

mind /mind/confusion-matrix
MIND-021 prêt
CNN Filters

Slide a 3×3 convolution kernel across a procedurally drawn image and watch the feature map light up — switch between blur, sharpen, Sobel edges, emboss and a Laplacian, or hand-craft your own kernel and chain a second layer.

mind /mind/cnn-filters
MIND-022 prêt
CartPole RL

Watch a reinforcement-learning agent teach itself to balance an inverted pendulum on a cart — from flailing in the first second to holding the pole upright for a full episode, with the reward curve climbing live as it learns.

mind /mind/cartpole
MIND-023 prêt
Bias–Variance

Fit a model to many noisy training sets at once and watch the curve family swing from rigid-and-biased to wild-and-overfit — with the classic U-shaped test error and its sweet spot decomposed live into bias² + variance + noise.

mind /mind/bias-variance
MIND-024 prêt
Bayesian Optimization

Hunt the maximum of an expensive, hidden function in as few samples as possible — a Gaussian-process surrogate fits the points so far, draws its mean and a ±2σ uncertainty band, and an acquisition function picks the next, smartest place to look.

mind /mind/bayes-opt
MIND-025 prêt
Autoencoder

Train a real neural autoencoder live: tiny glyphs are squeezed through a 2-D bottleneck and rebuilt by a decoder, the reconstructions sharpening epoch by epoch while a latent map blooms into class clusters — then click anywhere in that latent plane to watch the decoder dream a new glyph into being.

mind /mind/autoencoder
MIND-026 prêt
Carte auto-organisatrice

Un treillis de Kohonen qui se froisse, s’étire et se drape sur n’importe quelle distribution de données — la découverte de topologie rendue visible.

SOM /mind/self-organizing-map
MIND-027 prêt
Q-learning

Observez un agent d’apprentissage par renforcement tabulaire bâtir de zéro une politique de navigation — trébuchant dans les pièges, découvrant la récompense et gravant des flèches optimales dans chaque case de la grille.

apprentissage par renforcement /mind/q-learning
MIND-028 prêt
Perceptron

Observez le neurone de Rosenblatt de 1958 tracer une ligne de décision à travers vos données, une correction à la fois.

perceptron /mind/perceptron
MIND-029 prêt
Terrain de jeu neuronal

Observez un réseau de neurones fait maison courber sa frontière de décision en temps réel à mesure qu’il apprend à séparer des nuages de points 2D par rétropropagation.

réseau de neurones /mind/neural-playground
MIND-030 prêt
Babil de Markov

L’ancêtre de GPT — prédisez le prochain jeton à partir des quelques précédents et regardez la cohérence émerger à mesure que l’ordre augmente.

Markov /mind/markov-text
MIND-031 prêt
K-moyennes

Observez l’algorithme de Lloyd découper un nuage de points en territoires de Voronoï vivants, tandis que les centroïdes traquent leurs grappes en temps réel.

partitionnement /mind/k-means
MIND-032 prêt
Mémoire de Hopfield

Observez un motif bruité ou à demi effacé se rétablir vers une mémoire stockée, tandis qu’un réseau de neurones dévale la pente jusque dans un attracteur.

Hopfield /mind/hopfield
MIND-033 prêt
Course d’optimiseurs

Cinq optimiseurs à base de gradient dévalent simultanément le même paysage de perte, révélant pourquoi Adam domine le SGD classique en vitesse, en stabilité et en sortie des points-selles.

descente de gradient /mind/gradient-descent
MIND-034 prêt
Plongements de mots

Parcourez un espace sémantique fait main où roi − homme + femme tombe exactement sur reine, et où des grappes de sens éclosent en couleurs néon.

plongements /mind/embeddings
MIND-035 prêt
Arbre de décision

Observez un classifieur CART découper vos données 2D en régions alignées sur les axes — une division maximisant l’information à la fois.

arbre de décision /mind/decision-tree
MIND-036 prêt
Bandit à plusieurs bras

Regardez ε-greedy, UCB1 et l’échantillonnage de Thompson rivaliser pour trouver le meilleur bras de la machine à sous — le regret cumulé tracé en direct à mesure que les algorithmes explorent et exploitent.

bandit /mind/bandit
MIND-037 prêt
Attention

Observez un transformeur décider ce qu’il doit regarder — softmax(QKᵀ/√d) rendu tangible par des cartes de chaleur en direct et des flux d’attention bipartites.

transformeur /mind/attention
mind · catégorie 22 ← retour à l’observatoire