Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -17,13 +17,16 @@ language:
|
|
| 17 |
|
| 18 |
# Moebius β ONNX (browser / WebGPU)
|
| 19 |
|
| 20 |
-
ONNX exports of the [
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## Files
|
| 29 |
|
|
@@ -52,10 +55,11 @@ that loads these files lives in the accompanying web demo.
|
|
| 52 |
|
| 53 |
## Precision
|
| 54 |
|
| 55 |
-
These are
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
but
|
|
|
|
| 59 |
|
| 60 |
## License & attribution
|
| 61 |
|
|
|
|
| 17 |
|
| 18 |
# Moebius β ONNX (browser / WebGPU)
|
| 19 |
|
| 20 |
+
ONNX exports of the [Moebius](https://huggingface.co/hustvl/Moebius) image-inpainting model
|
| 21 |
+
([hustvl/Moebius](https://github.com/hustvl/Moebius), ECCV'26; 0.22B parameters), for running in
|
| 22 |
+
a web browser with [ONNX Runtime Web](https://onnxruntime.ai/docs/tutorials/web/) on the WebGPU
|
| 23 |
+
backend.
|
| 24 |
|
| 25 |
+
Moebius conditions on a learned embedding table rather than a text encoder, so there is no
|
| 26 |
+
tokenizer or text model to export. The export is three graphs β VAE encoder, UNet, VAE decoder β
|
| 27 |
+
and the sampling loop (DDIM with classifier-free guidance) runs in JavaScript.
|
| 28 |
+
|
| 29 |
+
Live demo in your browser here: **[simonw.github.io/moebius-web/](https://simonw.github.io/moebius-web/)**. [Source code on GitHub](https://github.com/simonw/moebius-web).
|
| 30 |
|
| 31 |
## Files
|
| 32 |
|
|
|
|
| 55 |
|
| 56 |
## Precision
|
| 57 |
|
| 58 |
+
These are fp32 exports, for numeric parity with the reference pipeline. Parity vs PyTorch on the
|
| 59 |
+
CPU execution provider: decoder `max|Ξ|β5.7e-5`, unet `β3.6e-6`. A full-pipeline check against the
|
| 60 |
+
PyTorch reference (identical initial noise) gives a decoded-image `mean|Ξ|β0.0022`. fp16 halves the
|
| 61 |
+
download size, but can reduce quality in the lambda layers and is numerically unstable for this
|
| 62 |
+
VAE; validate before use.
|
| 63 |
|
| 64 |
## License & attribution
|
| 65 |
|