-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTICE
More file actions
84 lines (66 loc) · 3.2 KB
/
NOTICE
File metadata and controls
84 lines (66 loc) · 3.2 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
MATA — Model-Agnostic Task Architecture
Copyright 2026 MATA Contributors
This product is licensed under the Apache License, Version 2.0.
You may obtain a copy of the License at:
http://www.apache.org/licenses/LICENSE-2.0
===========================================================================
IMPORTANT: MODEL WEIGHTS ARE NOT COVERED BY THIS LICENSE
===========================================================================
MATA is a software framework only. It does NOT distribute, bundle, or
include pre-trained model weights. When you use MATA to load a model —
whether from HuggingFace Hub, a local file, or any other source — that
model's weights are governed by their own separate license terms.
You are solely responsible for ensuring that your use of any model weights
complies with the applicable license for those weights. Common licenses
encountered include (but are not limited to):
- Apache License 2.0 (e.g., DETR, RT-DETR, GroundingDINO, SAM,
Depth Anything V2, Mask2Former)
- MIT License (e.g., CLIP)
- Tongyi Qianwen License (e.g., Qwen-VL series — commercial use
requires additional acceptance)
- Meta Community License (e.g., LLaMA-based models — usage thresholds
and restrictions apply)
- Creative Commons BY-NC (non-commercial use only)
- GNU GPL / AGPL (copyleft — derivative works must be
open-sourced under same terms)
Some models on HuggingFace Hub require you to agree to additional terms
before downloading. By using MATA to load such models you acknowledge that
you have read and accepted those terms independently.
MATA makes no representation or warranty regarding the licensing terms of
any third-party model weights accessed through this framework.
===========================================================================
THIRD-PARTY SOFTWARE
===========================================================================
This product includes or depends on the following third-party software:
HuggingFace Transformers
License: Apache License 2.0
https://github.com/huggingface/transformers
PyTorch
License: BSD 3-Clause License
https://github.com/pytorch/pytorch
ONNX Runtime
License: MIT License
https://github.com/microsoft/onnxruntime
PyYAML
License: MIT License
https://github.com/yaml/pyyaml
NumPy
License: BSD 3-Clause License
https://github.com/numpy/numpy
Pillow (PIL Fork)
License: Historical Permission Notice and Disclaimer (HPND)
https://github.com/python-pillow/Pillow
Vendored tracking algorithms (ByteTrack, BotSort) are adapted from
Ultralytics (AGPL-3.0 upstream). The vendored code in src/mata/trackers/
has been independently re-implemented based on the published research
papers and is not derived from Ultralytics source code.
ByteTrack paper: https://arxiv.org/abs/2110.06864
BoTrack/OC-SORT paper: https://arxiv.org/abs/2206.14651
YOLO ONNX postprocessing (src/mata/adapters/onnx_adapter.py) is an
independent clean-room implementation based on the published YOLO research
papers and the standard YOLO ONNX export tensor layout. No source code
from Ultralytics (AGPL-3.0) has been used or derived.
YOLO paper: Redmon et al., "You Only Look Once", CVPR 2016
https://arxiv.org/abs/1506.02640
NMS algorithm: Neubeck & Van Gool, "Efficient Non-Maximum Suppression",
ICPR 2006