opsiclear-admin commited on
Commit
e60870a
·
verified ·
1 Parent(s): e60c078

Upload MODEL_LICENSES.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. MODEL_LICENSES.md +37 -0
MODEL_LICENSES.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Third-Party Model Licenses
2
+
3
+ This project uses the following third-party models. Their original license files are included in the `licenses/` directory.
4
+
5
+ > **This project is NOT suitable for commercial use** due to the CC BY-NC 4.0 license on BRIA RMBG-2.0 and the NVIDIA Source Code License on nvdiffrast/nvdiffrec dependencies.
6
+
7
+ ## Models
8
+
9
+ | Model | Source | License | Commercial Use |
10
+ |---|---|---|---|
11
+ | TRELLIS.2-4B | [microsoft/TRELLIS.2-4B](https://huggingface.co/microsoft/TRELLIS.2-4B) | MIT | Yes* |
12
+ | BRIA RMBG-2.0 | [briaai/RMBG-2.0](https://huggingface.co/briaai/RMBG-2.0) | CC BY-NC 4.0 | **No** |
13
+ | DINOv2 | [facebookresearch/dinov2](https://github.com/facebookresearch/dinov2) | Apache 2.0 | Yes |
14
+ | BiRefNet | [ZhengPeng7/BiRefNet](https://github.com/ZhengPeng7/BiRefNet) | MIT | Yes |
15
+
16
+ *\* TRELLIS.2 code and weights are MIT, but the pipeline depends on [nvdiffrast](https://github.com/NVlabs/nvdiffrast) and [nvdiffrec](https://github.com/NVlabs/nvdiffrec) (NVIDIA Source Code License), which restrict usage to non-commercial research and evaluation.*
17
+
18
+ ## License Files
19
+
20
+ - [`licenses/LICENSE-TRELLIS2-MIT`](licenses/LICENSE-TRELLIS2-MIT) - Microsoft TRELLIS.2 (MIT)
21
+ - [`licenses/LICENSE-DINOV2-APACHE2`](licenses/LICENSE-DINOV2-APACHE2) - Meta DINOv2 (Apache 2.0)
22
+ - [`licenses/LICENSE-BiRefNet-MIT`](licenses/LICENSE-BiRefNet-MIT) - BiRefNet (MIT)
23
+ - [`licenses/LICENSE-RMBG2-CC-BY-NC-4.0`](licenses/LICENSE-RMBG2-CC-BY-NC-4.0) - BRIA RMBG-2.0 (CC BY-NC 4.0)
24
+
25
+ ## Details
26
+
27
+ ### TRELLIS.2-4B (MIT)
28
+ The main 3D generation pipeline. Code and model weights are released under the MIT License by Microsoft Corporation.
29
+
30
+ ### BRIA RMBG-2.0 (CC BY-NC 4.0)
31
+ Used for automatic background removal during image preprocessing. Released under Creative Commons Attribution-NonCommercial 4.0 International. **Commercial use requires a separate paid license from [BRIA AI](https://bria.ai).**
32
+
33
+ ### DINOv2 (Apache 2.0)
34
+ Vision transformer used as the image conditioning backbone. Released by Meta/Facebook Research under the Apache License 2.0.
35
+
36
+ ### BiRefNet (MIT)
37
+ Bilateral Reference Network for image segmentation, used as a fallback background removal model. Released under the MIT License.