File size: 652 Bytes
04b19b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ---
library_name: onnxruntime
tags:
- onnx
- sharp
- view-synthesis
- 3d-gaussian-splatting
base_model: apple/Sharp
---
# SHARP — ONNX Exports (INT8)
This repository provides ONNX exports of Apple’s **SHARP** model predictor, which outputs **NDC-space 3D Gaussians**.
## Export to ONNX (INT8)
Run the following command to export the model:
```bash
python export_onnx.py --int8
````
## Launch Web UI
Start the web interface with:
```bash
python webui.py \
--host 0.0.0.0 \
--port 7860 \
--ssl_cert cert.pem \
--ssl_key key.pem
```
## Notes
This project is for learning purposes. Please refer to the LICENSE for usage terms. |