diff --git a/examples/webgpu/efficientnet/index.html b/examples/webgpu/efficientnet/index.html
index fab98aa7af..e03ed349a7 100644
--- a/examples/webgpu/efficientnet/index.html
+++ b/examples/webgpu/efficientnet/index.html
@@ -18,10 +18,6 @@ canvas { display: none; }
tinygrad has WebGPU
-
WebGPU tinygrad EfficientNet!
@@ -102,6 +98,7 @@ canvas { display: none; }
resultText.innerHTML = "loading..."
labels = await getLabels();
const device = await getDevice();
+ const model = (await import("../../net.js")).default;
net = await timer(() => model.load(device, '../../net.safetensors'), "(compilation)");
resultText.innerHTML = "ready"
} catch (e) {