Skip to content

Commit 7d2d8ca

Browse files
committed
release
1 parent 94c63b5 commit 7d2d8ca

38 files changed

+5600
-2
lines changed

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
PCME++
2+
Copyright (c) 2023-present NAVER Cloud Corp.
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
THE SOFTWARE.

NOTICE

Lines changed: 273 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,273 @@
1+
PCME++
2+
Copyright (c) 2023-present NAVER Cloud Corp.
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
THE SOFTWARE.
21+
22+
--------------------------------------------------------------------------------------
23+
24+
This project contains subcomponents with separate copyright notices and license terms.
25+
Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses.
26+
27+
=====
28+
29+
naver-ai/pcme
30+
https://github.com/naver-ai/pcme
31+
32+
33+
Probabilistic Cross-Modal Embedding (PCME)
34+
Copyright (c) 2021-present NAVER Corp.
35+
36+
Permission is hereby granted, free of charge, to any person obtaining a copy
37+
of this software and associated documentation files (the "Software"), to deal
38+
in the Software without restriction, including without limitation the rights
39+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
40+
copies of the Software, and to permit persons to whom the Software is
41+
furnished to do so, subject to the following conditions:
42+
43+
The above copyright notice and this permission notice shall be included in
44+
all copies or substantial portions of the Software.
45+
46+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
49+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
51+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
52+
THE SOFTWARE.
53+
54+
--------------------------------------------------------------------------------------
55+
56+
This project contains subcomponents with separate copyright notices and license terms.
57+
Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses.
58+
59+
=====
60+
61+
pytorch/vision
62+
https://github.com/pytorch/vision
63+
64+
65+
BSD 3-Clause License
66+
67+
Copyright (c) Soumith Chintala 2016,
68+
All rights reserved.
69+
70+
Redistribution and use in source and binary forms, with or without
71+
modification, are permitted provided that the following conditions are met:
72+
73+
* Redistributions of source code must retain the above copyright notice, this
74+
list of conditions and the following disclaimer.
75+
76+
* Redistributions in binary form must reproduce the above copyright notice,
77+
this list of conditions and the following disclaimer in the documentation
78+
and/or other materials provided with the distribution.
79+
80+
* Neither the name of the copyright holder nor the names of its
81+
contributors may be used to endorse or promote products derived from
82+
this software without specific prior written permission.
83+
84+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
85+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
86+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
87+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
88+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
89+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
90+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
91+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
92+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
93+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
94+
95+
=====
96+
97+
yalesong/pvse
98+
99+
100+
101+
MIT License
102+
103+
Copyright (c) 2019 Yale Song
104+
105+
Permission is hereby granted, free of charge, to any person obtaining a copy
106+
of this software and associated documentation files (the "Software"), to deal
107+
in the Software without restriction, including without limitation the rights
108+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
109+
copies of the Software, and to permit persons to whom the Software is
110+
furnished to do so, subject to the following conditions:
111+
112+
The above copyright notice and this permission notice shall be included in all
113+
copies or substantial portions of the Software.
114+
115+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
117+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
118+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
119+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
120+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
121+
SOFTWARE.
122+
123+
=====
124+
125+
rwightman/pytorch-image-models
126+
https://github.com/rwightman/pytorch-image-models
127+
128+
129+
Copyright 2019 Ross Wightman
130+
131+
Licensed under the Apache License, Version 2.0 (the "License");
132+
you may not use this file except in compliance with the License.
133+
You may obtain a copy of the License at
134+
135+
http://www.apache.org/licenses/LICENSE-2.0
136+
137+
Unless required by applicable law or agreed to in writing, software
138+
distributed under the License is distributed on an "AS IS" BASIS,
139+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
140+
See the License for the specific language governing permissions and
141+
limitations under the License.
142+
143+
=====
144+
145+
KevinMusgrave/pytorch-metric-learning
146+
https://github.com/KevinMusgrave/pytorch-metric-learning
147+
148+
149+
MIT License
150+
151+
Copyright (c) 2019 Kevin Musgrave
152+
153+
Permission is hereby granted, free of charge, to any person obtaining a copy
154+
of this software and associated documentation files (the "Software"), to deal
155+
in the Software without restriction, including without limitation the rights
156+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
157+
copies of the Software, and to permit persons to whom the Software is
158+
furnished to do so, subject to the following conditions:
159+
160+
The above copyright notice and this permission notice shall be included in all
161+
copies or substantial portions of the Software.
162+
163+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
164+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
165+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
166+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
167+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
168+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
169+
SOFTWARE.
170+
171+
=====
172+
173+
=====
174+
175+
woodfrog/vse_infty
176+
https://github.com/woodfrog/vse_infty
177+
178+
179+
MIT License
180+
181+
Copyright (c) 2021 Jiacheng Chen
182+
183+
Permission is hereby granted, free of charge, to any person obtaining a copy
184+
of this software and associated documentation files (the "Software"), to deal
185+
in the Software without restriction, including without limitation the rights
186+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
187+
copies of the Software, and to permit persons to whom the Software is
188+
furnished to do so, subject to the following conditions:
189+
190+
The above copyright notice and this permission notice shall be included in all
191+
copies or substantial portions of the Software.
192+
193+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
194+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
195+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
196+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
197+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
198+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
199+
SOFTWARE.
200+
201+
=====
202+
203+
openai/CLIP
204+
https://github.com/openai/CLIP
205+
206+
207+
MIT License
208+
209+
Copyright (c) 2021 OpenAI
210+
211+
Permission is hereby granted, free of charge, to any person obtaining a copy
212+
of this software and associated documentation files (the "Software"), to deal
213+
in the Software without restriction, including without limitation the rights
214+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
215+
copies of the Software, and to permit persons to whom the Software is
216+
furnished to do so, subject to the following conditions:
217+
218+
The above copyright notice and this permission notice shall be included in all
219+
copies or substantial portions of the Software.
220+
221+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
222+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
223+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
224+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
225+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
226+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
227+
SOFTWARE.
228+
229+
=====
230+
231+
huggingface/pytorch-image-models
232+
https://github.com/huggingface/pytorch-image-models
233+
234+
235+
The code here is licensed Apache 2.0. I've taken care to make sure any third party code included or adapted has compatible (permissive) licenses such as MIT, BSD, etc. I've made an effort to avoid any GPL / LGPL conflicts. That said, it is your responsibility to ensure you comply with licenses here and conditions of any dependent licenses. Where applicable, I've linked the sources/references for various components in docstrings. If you think I've missed anything please create an issue.
236+
237+
---
238+
239+
Copyright 2019 Ross Wightman
240+
241+
Licensed under the Apache License, Version 2.0 (the "License");
242+
you may not use this file except in compliance with the License.
243+
You may obtain a copy of the License at
244+
245+
http://www.apache.org/licenses/LICENSE-2.0
246+
247+
Unless required by applicable law or agreed to in writing, software
248+
distributed under the License is distributed on an "AS IS" BASIS,
249+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
250+
See the License for the specific language governing permissions and
251+
limitations under the License.
252+
253+
=====
254+
255+
Lightning-AI/torchmetrics
256+
https://github.com/Lightning-AI/torchmetrics
257+
258+
259+
Copyright 2020-2022 Lightning-AI team
260+
261+
Licensed under the Apache License, Version 2.0 (the "License");
262+
you may not use this file except in compliance with the License.
263+
You may obtain a copy of the License at
264+
265+
http://www.apache.org/licenses/LICENSE-2.0
266+
267+
Unless required by applicable law or agreed to in writing, software
268+
distributed under the License is distributed on an "AS IS" BASIS,
269+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
270+
See the License for the specific language governing permissions and
271+
limitations under the License.
272+
273+
=====

0 commit comments

Comments
 (0)