fernandotonon commited on
Commit
9e05869
·
verified ·
1 Parent(s): 8d25adc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - image-to-3d
5
+ - trellis2
6
+ - gguf
7
+ - qtmesheditor
8
+ ---
9
+
10
+ # QtMeshEditor-trellis2-gguf
11
+
12
+ GGUF weights for the [TRELLIS.2](https://github.com/microsoft/TRELLIS.2) image-to-3D pipeline, as consumed by
13
+ [trellis.cpp](https://github.com/pwilkin/trellis.cpp) and by **QtMeshEditor's `trellis2` backend**
14
+ (`qtmesh generate3d --backend trellis2`; QtMeshEditor invokes `trellis-cli --dump-post` and performs its own
15
+ game-ready processing and PBR texture baking).
16
+
17
+ Mirror of [`ilintar/trellis2-gguf`](https://huggingface.co/ilintar/trellis2-gguf) (conversions of the original
18
+ checkpoints; thank you!). This mirror pins the exact set QtMeshEditor is tested against. Only the 512-pipeline
19
+ subset plus the shared decoders is required by QtMeshEditor; the `*_1024` flows enable the higher-resolution cascade.
20
+
21
+ ## Files & licenses
22
+
23
+ | file | source checkpoint | license |
24
+ |---|---|---|
25
+ | `ss_flow.gguf`, `shape_flow_512.gguf`, `tex_flow_512.gguf`, `shape_flow_1024.gguf`*, `tex_flow_1024.gguf`* | [`microsoft/TRELLIS.2-4B`](https://huggingface.co/microsoft/TRELLIS.2-4B) | **MIT** |
26
+ | `shape_dec.gguf`, `tex_dec.gguf` | `microsoft/TRELLIS.2-4B` | **MIT** |
27
+ | `ss_dec.gguf` | [`microsoft/TRELLIS-image-large`](https://huggingface.co/microsoft/TRELLIS-image-large) | **MIT** |
28
+ | `dinov3.gguf` | [`timm/vit_large_patch16_dinov3.lvd1689m`](https://huggingface.co/timm/vit_large_patch16_dinov3.lvd1689m) (ungated mirror of Meta DINOv3 ViT-L) | **[DINOv3 License](https://ai.meta.com/resources/models-and-libraries/dinov3-license/)** (Meta; commercial use permitted, redistribution with conditions) |
29
+
30
+ \* not uploaded yet if absent — the 512 pipeline works without them.
31
+
32
+ **Built with DINOv3.** The `dinov3.gguf` conditioning encoder is a converted DINOv3 model distributed under
33
+ Meta's DINOv3 License, not MIT — see the license link above; the rest of the repository is MIT.
34
+
35
+ The overall `license: mit` tag reflects the majority of files; `dinov3.gguf` carries its own license as stated.