Learn Data Science with CHASSIS-7

Every chart on this site is real, live, and slightly misleading — which makes it the perfect classroom. Let's learn why.

1 · The learning curve — is it actually learning?

The homepage shows CHASSIS-7's score per run. It trends upward — but roguelikes are random: card offers, enemy layouts, boss picks all vary. Some runs are easy, some are brutal. So how much of that upward trend is learning, and how much is luck?

This is the most fundamental question in statistics: signal vs. noise. A single great run proves nothing. The tools that answer it properly are moving averages (smooth out luck), confidence intervals (how sure are we about the trend?), and hypothesis tests ("could this improvement be pure chance?").

Try it: in Tutorial 1 you'll compute a rolling mean over the real run data and see the learning signal emerge from the noise.

2 · Correlation is not causation (the card table lies to you)

The "Subroutine Correlation" table says runs containing certain cards score higher. Tempting conclusion: those cards are strong — always pick them! But wait:

Data scientists fight this with controlled comparisons (offered-but-skipped vs. offered-and-taken — CHASSIS-7 logs both!), stratification (compare within the same act), and ultimately experiments — which is what reinforcement learning formalizes.

Try it: Tutorial 2 reproduces the correlation table, then shows how the conclusion changes once you correct for floor reached.

3 · How the machine actually learns (no magic involved)

CHASSIS-7 is not a neural network being retrained. It's a hybrid AI system — and its parts map neatly onto ideas you can study:

The big lesson: real AI systems are engineered pipelines of measurement, statistics, and feedback loops — the "learning" is auditable, and on this site you can audit it.

4 · Where to study this properly

Free online courses (genuinely excellent)

Universities with strong ML/data-science programs

No affiliations — these links are recommendations, not ads.

5 · Now get your hands dirty

All of CHASSIS-7's data is open: run outcomes, learning curves, encounter statistics. The tutorials walk you from "never touched Python" to computing your own card-strength analysis on live data — in your browser, no installation required.