forked from DeepLabCut/DeepLabCut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTICE.yml
138 lines (114 loc) · 5.53 KB
/
NOTICE.yml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# This notice file contains license headers for all code files
# in the repository (currently all *.py files).
#
# When updating headers, lower entries take precedence over higher
# entries. For each header, include/exclude statements can be used
# to define files to apply them to.
#
# When adding code from an external repo, make sure to cover the
# added code files with the correct license header.
# Main repository license
- header: |
DeepLabCut Toolbox (deeplabcut.org)
© A. & M.W. Mathis Labs
https://github.com/DeepLabCut/DeepLabCut
Please see AUTHORS for contributors.
https://github.com/DeepLabCut/DeepLabCut/blob/master/AUTHORS
Licensed under GNU Lesser General Public License v3.0
include:
- 'deeplabcut/**/*.py'
- 'tests/**/*.py'
- 'examples/**/*.py'
- 'docs/**/*.py'
- 'conda-environments/**/*.yaml'
# License for files adapted from DeeperCut by Eldar Insafutdinov
# https://github.com/eldar/pose-tensorflow
# Applies to most files in deeplabcut.pose_estimation_tensorflow
- header: |
DeepLabCut Toolbox (deeplabcut.org)
© A. & M.W. Mathis Labs
https://github.com/DeepLabCut/DeepLabCut
Please see AUTHORS for contributors.
https://github.com/DeepLabCut/DeepLabCut/blob/master/AUTHORS
Adapted from DeeperCut by Eldar Insafutdinov
https://github.com/eldar/pose-tensorflow
Licensed under GNU Lesser General Public License v3.0
include:
# This filelist was generated by running
# find deeplabcut/pose_estimation_tensorflow -iname '*.py' | xargs grep 'Eldar Insafutdinov'
# from the repo base directory.
- deeplabcut/pose_estimation_tensorflow/config.py
- deeplabcut/pose_estimation_tensorflow/datasets/factory.py
- deeplabcut/pose_estimation_tensorflow/vis_dataset.py
- deeplabcut/pose_estimation_tensorflow/core/train.py
- deeplabcut/pose_estimation_tensorflow/core/predict.py
- deeplabcut/pose_estimation_tensorflow/core/test.py
- deeplabcut/pose_estimation_tensorflow/default_config.py
- deeplabcut/pose_estimation_tensorflow/util/visualize.py
- deeplabcut/pose_estimation_tensorflow/util/__init__.py
- deeplabcut/pose_estimation_tensorflow/util/logging.py
- deeplabcut/pose_estimation_tensorflow/nnets/resnet.py
- deeplabcut/pose_estimation_tensorflow/__init__.py
exclude: []
# Tensorflow licenses
- header: |
Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
include:
- deeplabcut/pose_estimation_tensorflow/backbones/*.py
- deeplabcut/pose_estimation_tensorflow/nnets/utils.py
- header: |
Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
include:
- deeplabcut/pose_estimation_tensorflow/nnets/conv_blocks.py
- deeplabcut/pose_estimation_tensorflow/backbones/mobilenet.py
- deeplabcut/pose_estimation_tensorflow/backbones/mobilenet_v2.py
# TIMM license
- header: |
Copyright 2019 Ross Wightman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Hacked together by / Copyright 2020 Ross Wightman
https://github.com/rwightman/pytorch-image-models/blob/main/timm/scheduler/scheduler_factory.py
include:
- deeplabcut/pose_tracking_pytorch/solver/scheduler_factory.py
- deeplabcut/pose_tracking_pytorch/model/backones/vit_pytorch.py
# Reranking
- header: |
"""
CVPR2017 paper:Zhong Z, Zheng L, Cao D, et al. Re-ranking Person Re-identification with k-reciprocal Encoding[J]. 2017.
url:http://openaccess.thecvf.com/content_cvpr_2017/papers/Zhong_Re-Ranking_Person_Re-Identification_CVPR_2017_paper.pdf
Matlab version: https://github.com/zhunzhong07/person-re-ranking
API
probFea: all feature vectors of the query set (torch tensor)
probFea: all feature vectors of the gallery set (torch tensor)
k1,k2,lambda: parameters, the original paper is (k1=20,k2=6,lambda=0.3)
MemorySave: set to 'True' when using MemorySave mode
Minibatch: available when 'MemorySave' is 'True'
"""
include:
- deeplabcut/pose_tracking_pytorch/trackingutils/reranking.py