FerrisMind commited on
Commit
69da98e
·
verified ·
1 Parent(s): ea6d879

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ pipeline_tag: image-to-3d
4
+ base_model: stabilityai/TripoSR
5
+ tags:
6
+ - lux3d
7
+ - rust
8
+ - candle
9
+ - safetensors
10
+ - canonical-weights
11
+ - 3d
12
+ - image-to-3d
13
+ - mesh-generation
14
+ - triposr
15
+ ---
16
+
17
+ # Lux3D TripoSR Canonical Weights
18
+
19
+ This repository contains the canonicalized `safetensors` export of the TripoSR checkpoint used by the Lux3D runtime.
20
+
21
+ ## Model Details
22
+
23
+ - Model family: `triposr`
24
+ - Canonical file: `model.safetensors`
25
+ - Tensor count: `549`
26
+ - Primary runtime target: Lux3D runtime
27
+ - Typical output: mesh export (`.obj`)
28
+
29
+ ## Included Files
30
+
31
+ - `model.safetensors`
32
+ - `resolved_config.json`
33
+ - `manifest.json`
34
+ - `checksums.json`
35
+
36
+ ## Usage With Lux3D
37
+
38
+ The Lux3D CLI can validate and use the package once it is installed into your local model asset layout.
39
+
40
+ ```powershell
41
+ cargo run -p lux3d-cli -- inspect --repo-root <runtime-root> triposr
42
+ cargo run -p lux3d-cli -- run --repo-root <runtime-root> triposr --source <input-image> --mc-resolution 256 --mc-threshold 25.0 --output <output-file.obj>
43
+ ```
44
+
45
+ ## Provenance
46
+
47
+ - Upstream source model: [`stabilityai/TripoSR`](https://huggingface.co/stabilityai/TripoSR)
48
+ - Canonicalization flow: `tools/python_baseline/normalize_weights.py`
49
+
50
+ The exact source checksum set is recorded in `manifest.json`. The integrity of the uploaded package is recorded in `checksums.json`.
51
+
52
+ ## Intended Use
53
+
54
+ - single-image 3D reconstruction with Lux3D
55
+ - mesh generation workflows using canonical weights
56
+ - reproducible runtime validation
57
+
58
+ ## Limitations
59
+
60
+ - Verified Lux3D runtime inference currently assumes CUDA.
61
+ - This package includes canonical runtime artifacts only.
62
+ - Texture baking and other extended upstream utilities are outside the scope of this package.
63
+
64
+ ## License
65
+
66
+ - Upstream model page: [`stabilityai/TripoSR`](https://huggingface.co/stabilityai/TripoSR)
67
+ - License file in this repository: [LICENSE](LICENSE)
68
+
69
+ ## Citation
70
+
71
+ ```bibtex
72
+ @article{tripoSR2024,
73
+ title={TripoSR: Fast 3D Object Reconstruction from a Single Image},
74
+ author={Tochilkin, Dmitry and Pankratz, David and Liu, Zexiang and Huang, Zixuan and Letts, Adam and Li, Yangguang and Liang, Ding and Laforte, Christian and Jampani, Varun and Cao, Yan-Pei},
75
+ journal={arXiv preprint arXiv:2403.02151},
76
+ year={2024}
77
+ }
78
+ ```