-
Notifications
You must be signed in to change notification settings - Fork 17
Core system
A. Malthe Henriksen edited this page May 9, 2024
·
4 revisions
Stores in svelte are essential for interactive pages and no less in ML-Machine.
At the core of ML-Machine is the Stores object. Located in Stores.ts the object provide all of the essential system objects that runs the ML-Machine website.
const classifier = stores.getClassifier();
const gestures = stores.getGestures();
const engine = stores.getEngine();
$: liveData = stores.liveData;