What ninety-two megabytes costs
Every page offering a model in a browser is quiet about the same three things: which host the file comes from, what is left on your device afterwards, and how long the work takes on the hardware most people are holding. Here they are, in that order.
The transfer, itemised
Two files would arrive, not one, and the smaller of them is the one nobody mentions. The weights are the product and are roughly ninety-two megabytes. The runtime that executes them is a WebAssembly build just under fourteen megabytes, and without it the weights are an inert file. Together that is a little over a hundred megabytes for the first pass and nothing at all for every pass afterwards.
The weights would come from the network’s own object store. That is a deliberate choice with a cost attached: it is a request to a second host, and a shared one, which is a stronger common thread between this domain and its siblings than anything else on the page. It is accepted because the alternative is a public model hub learning which of this domain’s visitors is deblurring what, and because naming the host in the same release as the feature is the only version of that trade worth making.
The runtime comes from this origin instead. Same-origin removes the cross-origin module failure entirely and keeps the count of other hosts this page talks to at exactly one, which is a sentence the privacy page can then write without hedging.
Nothing moves before a control says how much
The ordering is the point. A control naming the exact byte length is pressed, and only then does a byte move. A page that begins a hundred-megabyte transfer and mentions it afterwards has already spent somebody’s data allowance, and on a metered connection that is money.
Stopping it
Escape aborts a transfer in flight. Nothing partial is written: the cache entry is created after a complete body of the expected length has been read, and a body that finishes at the wrong length is refused rather than kept. A truncated graph served from disk for the life of a browser profile is a far worse problem than a download that plainly failed, and it is the reason the write happens last.
What this build has today
None of it, yet. No export is published for this build to fetch, so no control here offers a download and no figure is printed as though it had been read off a served file. The arithmetic pass on the instrument routes needs no transfer at all.