Educational Cards
Learn from video content, text, and interactive tasks
Filters
Qubits and the Bloch Sphere
A qubit state is a normalised complex pair; global phase is invisible, relative phase steers...
State Evolution and Interference Intuition
Before measurement, a closed system evolves linearly: amplitudes add with phases attached, and...
Scientific Workflow for QML
Treat a QML project like an experiment: fix the task, metric, and classical baseline before...
Overriding parent methods
Overriding replaces the parent's method body while keeping the name familiar to callers. Cleaning...
Subclass-only methods
You inherit everything the parent exposes, then you teach the child something the parent never knew...
Extending behaviour with inheritance
When several pipelines share the same storage shape but differ in what happens on each write,...
Initialising subclasses with super()
Sensors share an identifier and a readings buffer; a temperature sensor adds a unit string. If the...
Method resolution order and cooperative super()
Multiple inheritance forces a single, deterministic rule for which parent implementation runs when...
Mixins for shared behaviour
A mixin is a small class that is not meant to stand alone; you merge it into a richer type so...