Views
No views yet
| Format | File | Size | Use Case |
|---|---|---|---|
| PyTorch (.pth) | pytorch/urd_v1.pth | ~1.0 GB | Training, fine-tuning, resume |
| SafeTensors | pytorch/urd_v1.safetensors | ~347 MB | Fast loading, safe deserialization |
| ONNX | onnx/urd_v1.onnx | ~347 MB | Cross-platform inference |
| TensorRT FP16 | tensorrt/urd_v1_fp16.engine | ~177 MB | Edge deployment (Jetson/L4) |
| TensorRT FP32 | tensorrt/urd_v1_fp32.engine | ~355 MB | Full precision inference |
final.pth (epoch 30/30)configs/ for full hyperparameters and logs/training_history.json for loss curves.1import torch
2from anima_urd.model import UniScale
3
4# Load from checkpoint
5model = UniScale.load("pytorch/urd_v1.pth", device="cuda")
6model.eval()
7
8# Inference: 4 multi-view images at 512x512
9images = torch.randn(1, 4, 3, 512, 512, device="cuda")
10with torch.no_grad():
11 output = model(images)
12 depth = output.depth_maps # [1, 4, 512, 512] metric depth (meters)
13 confidence = output.depth_confidence # [1, 4, 512, 512]
14 intrinsics = output.intrinsics # [1, 3, 3]
15 scale = output.scale_factors # [1] metric scale1@article{UniScale_2026,
2 title={UniScale Unified Scale-Aware Multi-View 3D Reconstruction},
3 year={2026},
4 eprint={2602.23224},
5 archivePrefix={arXiv},
6 primaryClass={cs.CV},
7 url={https://arxiv.org/abs/2602.23224}
8}