Playground

Test and compare model performance in real-time

Select Model
ONNX
v2.3.1
Ready
Traditional Approach
Docker Container
Status
Idle

Model Size

487MB

Cold Start

Inference Time
0.0ms
WarpML Optimized
WebAssembly
Status
Idle

Model Size

45MB

Cold Start

Inference Time
0.0ms
Input Data

Drop your file here or click to browse

Supports: JPEG, PNG, MP4, WAV, TXT

Integration Code
import { WarpML } from '@warpml/runtime';

const model = await WarpML.load('resnet50-v2.wasm');
const result = await model.predict(imageData);

console.log(`Inference time: ${result.latency}ms`);
console.log(`Predictions:`, result.predictions);