Works onTabular dataTime seriesFree text — transformer models
Transformer models train on torch, which ships in the GPU package.
AuditabilityCryptographic hash on every artifact
Every model, ParameterSet and training trace carries a SHA-256. You know exactly which model version made each decision, when and on what data.
✓ model_hash: sha256:4af2…c391
✓ param_set_id: ps-20260519-001
✓ trace_signature: hmac-sha256:…
DeclarativeYou define the model, not the math
The .mxai format is human-readable. Every layer has a name, type and declared parameters. MatrixAI handles the tensor arithmetic.
NETWORK CreditScorer {
LAYER Dense units=64 act=relu
LAYER LayerNorm
LAYER Dropout rate=0.1
OUTPUT Probability
}
— no PyTorch exposed
Safe actionsExplicit contract before acting
Real actions (email, HTTP, database) require a signed .mxact file, a successful dry-run and a declared rollback. Nothing executes without a trace.
PortabilityONNX, WASM, Edge bundle, GPU
Export the trained model to ONNX for universal inference, WASM for the browser, or a self-contained edge bundle for production. Optional GPU without changing a line of code.
ONNXWASMEdge bundleHTTP APIGPU opt.