forked from continental/6Img-to-3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNOTICE
3154 lines (2539 loc) · 162 KB
/
NOTICE
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Copyright (C) 2024 co-pace GmbH (subsidiary of Continental AG).
6Img-to-3D : master
Distribution: OPENSOURCE
Components:
addict 2.4.0 : MIT License
anyio 4.3.0 : MIT License
argon2-cffi 23.1.0 : MIT License
argon2-cffi-bindings 21.2.0 : MIT License
asttokens 2.4.1 : Apache License 2.0
async-lru 2.0.4 : MIT License
BeautifulSoup4 4.12.3 : MIT License
cglib 2.1_3 : Apache License 2.0
client_python 0.20.0 : Apache License 2.0
colorama 0.4.6 : BSD 3-clause "New" or "Revised" License
comm 0.2.2 : BSD 3-clause "New" or "Revised" License
contourpy 1.2.0 : BSD 3-clause "New" or "Revised" License
crc32c : GNU Lesser General Public License v2.1 or later
Cycler 0.12.1 : BSD 3-clause "New" or "Revised" License
debugpy 1.8.1 : MIT License
defusedxml v0.7.1 : Python Software Foundation License 2.0
executing 2.0.1 : MIT License
fastjsonschema 2.19.1 : BSD 3-clause "New" or "Revised" License
fonttools/fonttools 4.49.0 : MIT License
fsspec 2024.2.0 : BSD 3-clause "New" or "Revised" License
h11 0.14.0 : MIT License
httpcore 1.0.4 : BSD 3-clause "New" or "Revised" License
httpx 0.27.0 : BSD 3-clause "New" or "Revised" License
idna 3.6 : BSD 3-clause "New" or "Revised" License
imageio 2.34.0 : BSD 2-clause "Simplified" License
imageio-ffmpeg 0.4.9 : BSD 2-clause "Simplified" License
ipykernel 6.29.3 : BSD 3-clause "New" or "Revised" License
IPython 8.22.2 : BSD 3-clause "New" or "Revised" License
jedi 0.19.1 : MIT License
Jinja 3.1.3 : BSD 3-clause "New" or "Revised" License
jsocol's bleach 6.1.0 : Apache License 2.0
jsonschema-specifications 2023.12.1 : MIT License
jupyter-events 0.9.1 : BSD 3-clause "New" or "Revised" License
jupyter-lsp 2.2.4 : BSD 3-clause "New" or "Revised" License
jupyter-server-terminals 0.5.3 : BSD 3-clause "New" or "Revised" License
jupyter-server/jupyter_server 2.13.0 : BSD 3-clause "New" or "Revised" License
jupyter_client 8.6.1 : BSD 3-clause "New" or "Revised" License
jupyter_core 5.7.2 : BSD 3-clause "New" or "Revised" License
jupyterlab 4.1.5 : ((BSD Zero Clause License AND MIT License AND BSD 2-clause "Simplified" License AND ISC License AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND The Unlicense AND Eclipse Public License 2.0) AND ((Apache License 2.0 OR Mozilla Public License 2.0) AND (MIT License AND SIL Open Font License 1.1 AND Creative Commons Attribution 4.0)))
jupyterlab-pygments 0.3.0 : BSD 3-clause "New" or "Revised" License
jupyterlab-server 2.25.4 : BSD 3-clause "New" or "Revised" License
kornia 0.7.1 : Apache License 2.0
kornia-rs 0.1.1 : Apache License 2.0
lazy_loader 0.3 : BSD 3-clause "New" or "Revised" License
lightning-utilities 0.10.1 : Apache License 2.0
markdown-it-py 3.0.0 : MIT License
MarkupSafe 2.1.5 : BSD 3-clause "New" or "Revised" License
matplotlib 3.8.3 : Python Software Foundation License 2.0
matplotlib-inline 0.1.6 : BSD 3-clause "New" or "Revised" License
mdurl 0.1.2 : MIT License
Mistune 3.0.2 : BSD 3-clause "New" or "Revised" License
mmcls 0.25.0 : Apache License 2.0
mmengine 0.10.3 : Apache License 2.0
mmsegmentation 1.2.2 : Apache License 2.0
mpmath 1.3.0 : BSD 3-clause "New" or "Revised" License
nbclient 0.10.0 : BSD 3-clause "New" or "Revised" License
nbconvert 7.16.2 : BSD 3-clause "New" or "Revised" License
nbformat 5.9.2 : BSD 3-clause "New" or "Revised" License
nest-asyncio 1.6.0 : BSD 3-clause "New" or "Revised" License
NetworkX 3.2.1 : BSD 3-clause "New" or "Revised" License
ninja 1.11.1.1 : Apache License 2.0
notebook-shim 0.2.4 : BSD 3-clause "New" or "Revised" License
NumPy 1.26.4 : BSD 3-clause "New" or "Revised" License
open-mmlab/mmcv 1.7.2 : Apache License 2.0
open-mmlab/mmcv v1.3.2 : Apache License 2.0
open-mmlab/mmcv v1.3.7 : Apache License 2.0
open-mmlab/mmdetection 3.3.0 : Apache License 2.0
opencv-python 4.9.0.80 : Apache License 2.0
overrides 7.7.0 : Apache License 2.0
Packaging 24.0 : Apache License 2.0
pandas-python 2.2.1 : BSD 3-clause "New" or "Revised" License
pandocfilters 1.5.1 : BSD 3-clause "New" or "Revised" License
parso 0.8.3 : MIT License
pillow 10.2.0 : Historic Permission Notice and Disclaimer
platformdirs 4.2.0 : MIT License
prettytable 3.10.0 : BSD 3-clause "New" or "Revised" License
prompt-toolkit/python-prompt-toolkit 3.0.43 : BSD 3-clause "New" or "Revised" License
psf-requests 2.31.0 : Apache License 2.0
psutil 5.9.8 : BSD 3-clause "New" or "Revised" License
pure-eval 0.2.2 : MIT License
py-filelock 3.13.1 : The Unlicense
py-kiwisolver 1.4.5 : BSD 3-clause "New" or "Revised" License
pycocotools 2.0.7 : BSD 2-clause FreeBSD License
pycparser 2.21 : BSD 3-clause "New" or "Revised" License
Pygments - Python syntax highlighter 2.17.2 : BSD 2-clause "Simplified" License
pyjson5 0.9.22 : (MIT License AND Apache License 2.0)
Pyparsing 3.1.2 : MIT License
pypi/setuptools 69.2.0 : MIT License
python cffi 1.16.0 : MIT License
Python six 1.16.0 : MIT License
Python tzdata 2024.1 : Apache License 2.0
python-attrs 23.2.0 : MIT License
Python-Babel 2.14.0 : BSD 3-clause "New" or "Revised" License
python-certifi 2024.2.2 : ISC License
python-dateutil 2.9.0.post0 : (Apache License 2.0 OR BSD 3-clause "New" or "Revised" License)
python-decorator 5.1.1 : BSD 3-clause "New" or "Revised" License
python-json-logger 2.0.7 : BSD 3-clause "New" or "Revised" License
python-jsonschema 4.21.1 : MIT License
python-protobuf 5.26.0 : BSD 3-clause "New" or "Revised" License
python-typing-extensions 4.10.0 : Python Software Foundation License 2.3
python-webencodings 0.5.1 : BSD 3-clause "New" or "Revised" License
python/importlib_metadata 7.0.2 : Apache License 2.0
python3-charset-normalizer 3.3.2 : MIT License
pytorch 2.2.1 : BSD 3-clause "New" or "Revised" License
pytorch-msssim 1.0.0 : MIT License
PyTZ - Python Time Zone Library 2024.1 : MIT License
pywin32 306 : Python Software Foundation License 2.0
pywinpty 2.0.13 : MIT License
PyYAML 6.0.1 : MIT License
pyzmq 25.1.2 : BSD 3-clause "New" or "Revised" License
referencing 0.33.0 : MIT License
regex 2023.12.25 : Apache License 2.0
rfc3339-validator 0.1.4 : MIT License
rfc3986-validator 0.1.1 : MIT License
rich 13.7.1 : MIT License
richzhang/PerceptualSimilarity 0.1.4 : BSD 3-clause "New" or "Revised" License
rpds-py 0.18.0 : MIT License
scikit-image 0.22.0 : BSD 3-clause "New" or "Revised" License
SciPy: Scientific Library for Python 1.12.0 : BSD 3-clause "New" or "Revised" License
seaborn 0.13.2 : BSD 3-clause "New" or "Revised" License
send2trash 1.8.2 : BSD 3-clause "New" or "Revised" License
shapely 2.0.3 : BSD 3-clause "New" or "Revised" License
sniffio 1.3.1 : Apache License 2.0
soupsieve 2.5 : MIT License
stack-data 0.6.3 : MIT License
SymPy 1.12 : BSD 3-clause "New" or "Revised" License
tensorboardX 2.6.2.2 : MIT License
termcolor-pypi 2.4.0 : MIT License
terminado 0.18.1 : BSD 2-clause "Simplified" License
terminaltables 3.1.10 : MIT License
tifffile 2024.2.12 : BSD 3-clause "New" or "Revised" License
tinycss2 1.2.1 : BSD 3-clause "New" or "Revised" License
tomli 2.0.1 : MIT License
torchmetrics 1.3.1 : Apache License 2.0
torchvision 0.17.1 : BSD 3-clause "New" or "Revised" License
tornado 6.4 : Apache License 2.0
tqdm 4.66.2 : (MIT License OR Mozilla Public License 2.0)
Traitlets 5.14.2 : BSD 3-clause "New" or "Revised" License
urllib3 2.2.1 : MIT License
wcwidth 0.2.13 : MIT License
websocket-client 1.7.0 : Apache License 2.0
yapf 0.40.2 : Apache License 2.0
zipp 3.18.1 : MIT License
Copyright Text:
addict 2.4.0 pypi:addict/2.4.0
Copyright (c) 2014 Mats Julian Olsen
Copyright 2014-2020 Mats Julian Olsen
argon2-cffi 23.1.0 pypi:argon2-cffi/23.1.0
Copyright (c) 2015 "
Copyright (c) 2015 Hynek Schlawack and the argon2-cffi contributors
argon2-cffi-bindings 21.2.0 pypi:argon2-cffi-bindings/21.2.0
Copyright (c) 1993-2000 by Gerry Murray, Silvano Balemi,%% Jon Dixon, Peter N"uchter,%% Juergen von Hagen%% and
Copyright (c) 2001-2015 by Michael Shell%%%% Current maintainer (V1.3 to V1.8b): Michael Shell%% See:
Copyright (c) 2015 Thomas Pornin */
Copyright (c) 2021 Hynek Schlawack
Copyright (c) 2021 Hynek Schlawack
Copyright 2015
copyright (c) 2015 Daniel Dinu, Dmitry Khovratovich (main
copyright (c) 2015 Daniel Dinu, Dmitry Khovratovich (main authors), Jean-Philippe Aumasson and Samuel Neves, and under
copyright (c) 2015 Thomas Pornin, and under
copyright (c) 2015 Thomas Pornin, and under
copyright (c) Samuel
copyright (c) Samuel Neves, 2013-2015, and under
asttokens 2.4.1 pypi:asttokens/2.4.1
Copyright 2016 Grist Labs, Inc.
Copyright {yyyy
copyright = '2023, Grist Labsauthor = 'Grist Labs'
async-lru 2.0.4 pypi:async-lru/2.0.4
Copyright (c) 2016-2017 WikiBusiness Corporation http://wikibusiness.org/
Copyright (c) 2017 Ocean S. A. https://ocean.io/
Copyright (c) 2018 aio-libs team https://github.com/aio-libs/
BeautifulSoup4 4.12.3 pypi:beautifulsoup4/4.12.3
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2004-2024 Leonard Richardson"
Copyright (c) James Graham
Copyright (c) Leonard Richardson
copyright = True
copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
cglib 2.1_3 opensuse:cglib-nohook/2.1.3-12.1.2/noarch
Copyright (c) 2000,2002,2003 INRIA, France TelecomAll rights reserved
colorama 0.4.6 pypi:colorama/0.4.6
Copyright (c) 2010 Jonathan HartleyAll rights reserved
Copyright Jonathan Hartley
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.'''This module generates ANSI character codes to printing colors to terminals.See: http://en.wikipedia.org/wiki/ANSI_escape_c
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_consolefrom .ansi import Fore, Back, Style, Curs
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.from __future__ import print_functionimport fixpathimport coloramafrom colorama import Fore, Back, Style, Cursorfrom random
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.from contextlib import contextmanagerfrom io import StringIOimport sysimport os
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.from io import StringIO, TextIOWrapperfrom unittest import TestCase, maintry:
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.import atexitimport contextlibimport sys
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.import reimport sysimport os
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.import sysfrom unittest import TestCase, main
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.import sysfrom unittest import TestCase, main, skipUnless
Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.try:
comm 0.2.2 pypi:comm/0.2.2
Copyright (c) 2022, JupyterAll rights reserved
Copyright (c) IPython Development Team.
contourpy 1.2.0 pypi:contourpy/1.2.0
Copyright (c) 2021-2023, ContourPy Developers.All rights reserved
Copyright (c) 2021-2023, ContourPy Developers.All rights reserved
Cycler 0.12.1 pypi:cycler/0.12.1
Copyright (c) 2015, matplotlib projectAll rights reserved
defusedxml v0.7.1 pypi:defusedxml/0.7.1
Copyright (c) 2013 by Christian Heimes <christian@python.org>
Copyright (c) 2013-2017 by Christian Heimes
Copyright (c) 2013-2017 by Christian Heimes <christian@python.org>
Copyright (c) 2013-2017 by Christian Heimes \<<christian@python.org>\>
executing 2.0.1 pypi:executing/2.0.1
Copyright (c) 2021 Alex Hall
h11 0.14.0 pypi:h11/0.14.0
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (C) 2006, Jonathan E. Taylor// All rights reserved
Copyright (c) 2006-2008 Scipy Developers.// All rights reserved
Copyright (c) 2009-2012 Statsmodels Developers.// All rights reserved
Copyright (c) 2016 Nathaniel J. Smith <njs@pobox.com> and other contributors
Copyright 2007, 2008 Chris Wanstrath * * Usage: *
copyright = '2016, Nathaniel J. Smithauthor = 'Nathaniel J. Smith'
copyright = True
idna 3.6 pypi:idna/3.6
Copyright (c) 2013-2023, Kim Davies and contributors.All rights reserved
imageio-ffmpeg 0.4.9 pypi:imageio-ffmpeg/0.4.9
Copyright (c) 2019, imageioAll rights reserved
jedi 0.19.1 pypi:jedi/0.19.1
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2015 Jukka Lehtosalo and contributors
Copyright {yyyy
copyright = 'jedi contributors
copyright = False
Jinja 3.1.3 pypi:Jinja2/3.1.3
Copyright 2007 Pallets
jsocol's bleach 6.1.0 pypi:bleach/6.1.0
Copyright (c) 2006-2013 James Graham and other contributors
Copyright (c) 2014-2017, Mozilla Foundation
jsonschema-specifications 2023.12.1 pypi:jsonschema-specifications/2023.12.1
Copyright (c) 2022 Julian Berman
copyright = f"2022,
jupyter-events 0.9.1 pypi:jupyter-events/0.9.1
Copyright (c) 2022-, Jupyter Development Team
Copyright (c) Jupyter Development Team.
Copyright Policy
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Jupyter. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire JupyterDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
jupyter-server-terminals 0.5.3 pypi:jupyter-server-terminals/0.5.3
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2021-, Jupyter Development Team
Copyright (c) Jupyter Development Team.
Copyright Policy
copyright = True
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Jupyter. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire JupyterDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
jupyter_client 8.6.1 pypi:jupyter-client/8.6.1
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com>
Copyright (C) 2010 The IPython Team
Copyright (C) 2010-2011 IPython Development Team
Copyright (C) 2011- PyZMQ Developers
Copyright (c) 2001-2015, IPython Development Team
Copyright (c) 2015-, Jupyter Development Team
Copyright (c) Jupyter Development Team.
Copyright (c) The Jupyter Development Team
Copyright Policy
copyright = True
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Jupyter. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire JupyterDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
jupyter_core 5.7.2 pypi:jupyter-core/5.7.2
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2015-, Jupyter Development Team
Copyright (c) IPython Development Team.
Copyright (c) Jupyter Development Team.
Copyright Policy
copyright = True
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Jupyter. It is important to note that thesecontributions are typically only changes to the repositories. Thus, the Ju
copyright of any single person or
copyright of the entire JupyterDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
jupyterlab-server 2.25.4 pypi:jupyterlab-server/2.25.4
Copyright (c) 2015-2017, Project Jupyter ContributorsAll rights reserved
Copyright (c) Jupyter Development Team.
lazy_loader 0.3 pypi:lazy_loader/0.3
Copyright (c) 2022--2023, Scientific Python projectAll rights reserved
lightning-utilities 0.10.1 pypi:lightning-utilities/0.10.1
Copyright (c) 2022-__homepage__ = "https://github.com/Lightning-AI/utilities"__docs__ = "Lightning toolbox for across the our ecosystem."__long_doc__ = """This package allows for sharing GH workfl
Copyright 2018-2021 William Falcon
Copyright The PyTorch Lightning team.
markdown-it-py 3.0.0 pypi:markdown-it-py/3.0.0
Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin.
Copyright (c) 2020 ExecutableBookProject
Copyright 2014 Mathias Bynens <https://mathiasbynens.be/>
Copyright 2021 Taneli Hukkinen
MarkupSafe 2.1.5 pypi:MarkupSafe/2.1.5
Copyright 2010 Pallets
matplotlib-inline 0.1.6 pypi:matplotlib-inline/0.1.6
Copyright (c) 2019-2022, IPython Development Team.All rights reserved
Copyright (c) IPython Development Team.
mdurl 0.1.2 pypi:mdurl/0.1.2
Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin.
Copyright (c) 2021 Taneli Hukkinen
Copyright Joyent, Inc. and other Node contributors.
Copyright Joyent, Inc. and other Node contributors. All rights reserved
Mistune 3.0.2 pypi:mistune/3.0.2
Copyright (c) 2014, Hsiaoming Yang
copyright = '2019, Hsiaoming Yangauthor = 'Hsiaoming Yang'
mmcls 0.25.0 pypi:mmcls/0.25.0
Copyright (c) 2015-present, Facebook, Inc. """
Copyright (c) 2019 Facebook, Inc under the Apache License 2.0
Copyright (c) 2019 cybertronai
Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved
Copyright (c) 2021, Habana Labs Ltd. All rights reserved
Copyright (c) OpenMMLab. All rights reserved
Copyright 2020 MMClassification Authors.
Copyright 2021 Ross Wightman"""
mmengine 0.10.3 pypi:mmengine/0.10.3
Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
Copyright (c) OpenMMLab. All rights reserved
Copyright (c) https://github.com/pytorch/pytorch# Modified from https://github.com/pytorch/pytorch/blob/master/torch/testing/_internal/common_distributed.py # noqa: E501import faulthandlerimport l
Copyright 2018-2023 OpenMMLab.
Copyright 2018-2023 OpenMMLab. All rights reserved
mmsegmentation 1.2.2 pypi:mmsegmentation/1.2.2
Copyright(c) 2021 OpenAI."""import gzipimport htmlimport osfrom functools import lru_cachefrom typing import List, Union
Copyright (c) 2023 MendelXu.
Copyright (c) Facebook, Inc. and its affiliates.
Copyright (c) German Cancer Research Center (DKFZ)
Copyright (c) Microsoft Corporation
Copyright (c) Open-MMLab. All rights reserved
Copyright (c) OpenMMLab. All rights reserved
Copyright 2019 Ross Wightman
Copyright 2020 The MMSegmentation Authors.
Copyright 2020 The MMSegmentation Authors. All rights reserved
Copyright 2021 Division of
mpmath 1.3.0 pypi:mpmath/1.3.0
(C) NE = mp.mnorm(E)
(C) if verbose: print("C\n", str(C), "\n", err) assert err < eps
(C) if verbose: print("C\n", str(C), "\n", err) assert err < eps
Copyright (c) 2005-2021 Fredrik Johansson and mpmath contributors
Copyright 2013 Timo Hartmann (thartmann15 at gmail.com)
Copyright 2013 Timo Hartmann (thartmann15 at gmail.com) r""" This interface implements Levin's (nonlinear) sequence transformation for convergence acceleration and summation of divergent s
Copyright 2013 Timo Hartmann (thartmann15 at gmail.com) r""" This interface implements the convergence acceleration of alternating series as described in H. Cohen, F.R. Villegas, D. Zagier
nbclient 0.10.0 pypi:nbclient/0.10.0
Copyright (c) 2020-, Jupyter Development Team
Copyright (c) IPython Development Team.
Copyright (c) Jupyter Development Team.
Copyright Policy
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Jupyter. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire JupyterDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
NetworkX 3.2.1 pypi:networkx/3.2.1
(C) assert K >= k
(C) assert connectivity >= k
(C) if connectivity < k: # Otherwise do the brute force (with memoization) check _all_pairs_connectivity(G, cc, k, memo)
(C) unnumbered.remove(v) numbered = {v} clique_wanna_be = {v} while unnumbered:
(C) if C - G.nodes: raise nx.NodeNotFound(f"The node(s) {C - G.nodes} are in C but not in G.") nodes = list(G.nodes - C) else:
(C) Graph with 12 nodes and 16 edges
(C) if not partial and not nx.is_connected(meta_mst): raise nx.NetworkXUnfeasible("Not possible to connect G with available edges") # Yield the edge that generated the meta-edge fo
(C) return polynomial
(C) return sympy.simplify(polynomial)
(C) > 0: raise nx.NetworkXError("Input graph is not chordal.") yield frozenset(C.nodes()) else:
(C) nodes along with their transit edges (link i,j means i is customer of j). Finally we add peering links between M nodes, between M and CP nodes and between CP node couples.
(C) or Transitive (T)."""
(C) or content-provider (CP). Each edge models an ADV communication link (hence, bidirectional) with attributes:
Copyright (C) 2004-2023 NetworkX Developers Aric Hagberg <hagberg@lanl.gov> Dan Schult <dschult@colgate.edu>
Copyright (c) 2015
Copyright 2011 Alex Levenson <alex@isnotinvain.com>
Copyright 2011 Diederik van Liere <diederik.vanliere@rotman.utoronto.ca>"""Functions for analyzing triads of a graph."""
Copyright 2011 Diederik van Liere <diederik.vanliere@rotman.utoronto.ca>"""Functions that generate the triad graphs, that is, the possibledigraphs on three nodes.
Copyright 2011 Reya Group <http://www.reyagroup.com>
copyright = f"2004-
copyright: ©" ]
copyright: ' + chr(169) G.nodes[0]["demo"] = attr fobj = tempfile.NamedTemporaryFile() nx.write_gml(G, fobj) fobj.seek(0) # Should be bytes in 2.x and 3.x
ninja 1.11.1.1 pypi:ninja/1.11.1.1
Copyright 2011 Google Inc. All Rights Reserved
open-mmlab/mmcv 1.7.2 pypi:mmcv-full/1.7.2
COPYRIGHT * * All contributions by the University of California:
Copyright (C) 2021 Cambricon. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FO
Copyright (C) 2022 Cambricon. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FO
Copyright (C) 2022 by Cambricon. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS
Copyright (C) 2023 Cambricon. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FO
Copyright (c) 2014-2017 The Regents of the University of California (Regents) * All rights reserved
Copyright (c) 2014-2017, the respective contributors * All rights reserved
Copyright (c) 2018 Microsoft
Copyright (c) 2018 Vladislav Sovrasov
Copyright (c) 2019, NVIDIA Corporation. All rights reserved
Copyright (c) 2019, SenseTime. */
Copyright (c) 2020 SenseTime. All Rights Reserved
Copyright (c) 2021, NVIDIA Corporation. All rights reserved
Copyright (c) 2022 Huawei Technologies Co., Ltd
Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
Copyright (c) Microsoft Corporation. All rights reserved
Copyright (c) Open-MMLab.import sysfrom collections.abc import Iterablefrom runpy import run_pathfrom shlex import splitfrom typing import Any, Dict, Listfrom unittest.mock import patch
Copyright (c) OpenMMLab. All rights reserved
Copyright 2018-2020 Open-MMLab. All rights reserved
Copyright 2019 Yan Yan
Copyright Grant. Subject to the terms and conditions of this
Copyright Huawei Technologies Co., Ltd. All rights reserved
Copyright Louis Delacroix 2010 - 2014.
Copyright © 2022 Apple Inc.
Copyright(c) OpenMMLab.All rights reserved
copyright details. If a contributor wants to further mark * their specific copyright on a particular contribution, they should indicate
copyright model: each contributor holds copyright over * their contributions to Caffe. The project versioning records all such
copyright solely in the commit message of the change when it is
open-mmlab/mmcv v1.3.2 github:open-mmlab/mmcv:v1.3.2
COPYRIGHT * * All contributions by the University of California:
Copyright (c) 2014-2017 The Regents of the University of California (Regents) * All rights reserved
Copyright (c) 2014-2017, the respective contributors * All rights reserved
Copyright (c) 2018 Microsoft
Copyright (c) 2018 Vladislav Sovrasov
Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved
Copyright (c) 2019, NVIDIA Corporation. All rights reserved
Copyright (c) 2019, SenseTime. */
Copyright (c) 2020 SenseTime. All Rights Reserved
Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
Copyright (c) Microsoft Corporation. All rights reserved
Copyright (c) Open-MMLab.from collections.abc import Iterablefrom typing import Any, Dict, List
Copyright (c) Open-MMLab. All rights reserved
Copyright 2018-2020 Open-MMLab. All rights reserved
copyright = '2018-2019, Kai Chenauthor = 'Kai Chen'
copyright details. If a contributor wants to further mark * their specific copyright on a particular contribution, they should indicate
copyright model: each contributor holds copyright over * their contributions to Caffe. The project versioning records all such
copyright solely in the commit message of the change when it is
Packaging 24.0 pypi:packaging/24.0
Copyright (c) Donald Stufft and individual contributors.All rights reserved
copyright = ABOUT
pandocfilters 1.5.1 pypi:pandocfilters/1.5.1
Copyright (c) 2013, John MacFarlaneAll rights reserved
Copyright: (C) 2013 John MacFarlane
parso 0.8.3 pypi:parso/0.8.3
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
Copyright (c) 2010 by Armin Ronacher.
Copyright (c) <2013-2017> <David Halter and others, see AUTHORS.txt>
Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved
Copyright 2006 Google, Inc. All Rights Reserved
Copyright 2014 David Halter and Contributors
Copyright David Halter and Contributors
Copyright © 2006-2009 Johann C. Rocholl <johann@rocholl.net>
Copyright © 2009-2014 Florent Xicluna <florent.xicluna@gmail.com>
Copyright © 2014-2016 Ian Lee <IanLee1521@gmail.com>
Copyright © 2017-
copyright = 'parso contributors
copyright = True
copyright: Copyright 2010 by Armin Ronacher.
prompt-toolkit/python-prompt-toolkit 3.0.43 pypi:prompt-toolkit/3.0.43
Copyright (c) 2014, Jonathan SlendersAll rights reserved
psf-requests 2.31.0 pypi:requests/2.31.0
Copyright 2019 Kenneth Reitz
Copyright Kenneth Reitz"
copyright: (c) 2012 by Kenneth Reitz.
copyright: (c) 2017 by Kenneth Reitz.
pure-eval 0.2.2 pypi:pure-eval/0.2.2
Copyright (c) 2019 Alex Hall
py-kiwisolver 1.4.5 pypi:kiwisolver/1.4.5
Copyright (c) 2001 by Andrei Alexandrescu// This code accompanies the book:
Copyright (c) 2001. Addison-Wesley.// Permission to use, copy, modify, distribute and sell this software for any// purpose is hereby granted without fee, provided that the above copyright//
Copyright (c) 2013, Nucleic Development Team
Copyright (c) 2013, Nucleic Development Team.
Copyright (c) 2013-2017, Nucleic Development Team.
Copyright (c) 2013-2019, Nucleic Development Team.
Copyright (c) 2013-2021, Nucleic Development Team.
Copyright (c) 2013-2022, Nucleic Development Team.
Copyright (c) 2014-2021, Nucleic Development Team.
Copyright (c) 2014-2022, Nucleic Development Team.
Copyright (c) 2019, Nucleic Development Team.
Copyright (c) 2019-2021 Martin Ankerl <martin.ankerl@gmail.com>
Copyright (c) 2020, Nucleic Development Team.
Copyright (c) 2023, Nucleic Development Team.
Copyright Policy--------------------
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to Nucleic. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire NucleicDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
pycparser 2.21 pypi:pycparser/2.21
(C) C.append(g)
Copyright (C) 2001-2017# David M. Beazley (Dabeaz LLC)# All rights reserved
Copyright (C) 2017# All rights reserved
Copyright (c) 2008-2020, Eli BenderskyAll rights reserved
Pygments - Python syntax highlighter 2.17.2 pypi:Pygments/2.17.2
(C) Copyright ..." is shown in the HTML footer. Default is True.
(C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata!!$ Alfredo Buttari University of Rome Tor Vergata!!$ Daniela Di Serafino
(C) FSF.;;; See the file `COPYING' for terms applying to this program.;;;
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2015 Free Software;; Foundation, Inc.
Copyright (C) 1993-2003 Yukihiro Matsumoto
Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
Copyright (C) 2000 Information-technology Promotion Agency, Japan
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
Copyright (C) 2004, 2005, 2006 Aelitis, All Rights Reserved
Copyright (C) 2005 Free Software Foundation, Inc." $echo "This is free software; see the source for copying conditions. There is NO" $echo "warranty; not even for MERCHANTABILITY or FITNESS
Copyright (C) 2008 Slava Pestov
Copyright (C) 2009 Benjamin Kowarsch. All rights reserved
Copyright (c) 1997 Borland International{ }
Copyright (c) 2005-2006 by: //// //// Authors:
Copyright (c) 2006-2022 by the respective authors (see AUTHORS file).All rights reserved
Copyright (c) 2008 Silken Web - Free BSD License' All rights reserved
Copyright (c) 2014 Fullstack.io. All rights reserved
Copyright (c) 2015 Georg Brandl
Copyright (c) Rich Hickey. All rights reserved
Copyright 1996 Institut National de Recherche en Informatique et
Copyright 2005 Brian Alliet
Copyright 2006 by <a href="http://mydomain.tld">myself</a>. {% endblock %} </div> </body>
Copyright 2006-2023 by the Pygments team.
Copyright 2012 Nokia Siemens Networks Oyj
Copyright 2012 by Luis Majano and Ortus Solutions, Corp
Copyright Since
Copyright:: Copyright (c) 2003, 04 by Johannes Barre
Copyright|VersionDescription r'VersionNumber|VersionProduct|VersionTrademarks|Version|' r'VFPXMLProgID|ViewPortHeight|ViewPortLeft|' r'ViewPortTop|ViewPortWidth|
copyright Copyright (c) 2006, Manni * @version 1.0 * @link http://www.pkware.com/business_and_developers/developer/popups/appnote.txt * @link http://mannithedark.is-a-geek.ne
copyright 2006. Uploaded to HaskellWiki as DancingSudoku.lhs
copyright = '2006-2023, Georg Brandl and Pygments contributors
copyright = True
copyright = llist
copyright = llist while copyright and copyright_2_re.match(copyright[0]):
copyright info"
copyright or not copyright_re.match(copyright
copyright' : '\U000000a9 '\\textregistered' : '\U000000ae', '\\textonequarter' : '\U000000bc', '\\textonehalf' : '\U000000bd', '\\textth
copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
copyright: Copyright 2006-2023 by r'the Pygments team, see AUTHORS\.$')copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' % (name_mai
copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
copyright: Copyright 2021 by the Pygments team, see AUTHORS.
copyright>' : '\U000000a9 '\\<registered>' : '\U000000ae', '\\<hyphen>' : '\U000000ad', '\\<inverse>' : '\U000000af', '\
pyjson5 0.9.22 pypi:json5/0.9.22
Copyright (c) 2014 Milo Yip
Copyright (c) 2017 Wes McKinney
Copyright (c) Microsoft Corporation.
Copyright 2014 Dirk Pranke. All rights reserved
Copyright 2014 Google Inc. All rights reserved
Copyright 2015 Google Inc. All rights reserved
Copyright 2017 Google Inc. All rights reserved
Copyright 2019 Google Inc. All rights reserved
Copyright {yyyy
Pyparsing 3.1.2 pypi:pyparsing/3.1.2
Copyright © 2021 Dot ⟶ ˙ """
Copyright (c) 2003, Paul McGuire#
Copyright (c) 2003, Paul McGuire#import pyparsing as pp
Copyright (c) 2003,2016, Paul McGuire
Copyright (c) 2003,2019 Paul McGuire
Copyright (c) 2003-2022 Paul T. McGuire
Copyright (c) 2004, 2006 Paul McGuire#from pyparsing import ( Word, alphas, alphanums, Literal, restOfLine, OneOrMore, empty, Suppress, replaceWith,
Copyright (c) 2004, Paul McGuire#from pyparsing import ( Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList, pyparsing_common as ppc,
Copyright (c) 2004-2011 Paul T. McGuire. All rights reserved
Copyright (c) 2004-2016, Paul McGuire
Copyright (c) 2004-2016, Paul McGuire#
Copyright (c) 2006, 2016, 2023, Paul McGuire
Copyright (c) 2006, 2019, Paul McGuire
Copyright (c) 2006, Estrate, the NetherlandsAll rights reserved
Copyright (c) 2006, Estrate, the NetherlandsAll rights reserved
Copyright (c) 2006, Paul McGuire
Copyright (c) 2006,2016 Paul McGuire## A sample of a pyparsing grammar using indentation for# grouping (like Python does).
Copyright (c) 2016, Paul McGuire
Copyright (c) 2018 Paul T. McGuire
Copyright 1989 by Carnegie Mellon University All Rights Reserved
Copyright 2002-2021, Paul McGuire
Copyright 2003, 2019 by Paul McGuire
Copyright 2003-2019 by Paul McGuire
Copyright 2004, Paul McGuirefrom collections import Counterimport pprintfrom urllib.request import urlopen
Copyright 2004, Paul McGuirefrom pyparsing import makeHTMLTags, pyparsing_common as ppcfrom urllib.request import urlopenimport pprint
Copyright 2004, by Alberto Santini http://www.albertosantini.it/chess/#from pyparsing import alphanums, nums, quotedStringfrom pyparsing import ( Combine, Forward, Group, Lit
Copyright 2004-2010, by Paul McGuire# September, 2010 - updated to more current use of setResultsName, new NIST URL
Copyright 2004-2016, by Paul McGuire#from pyparsing import *
Copyright 2004-2016, by Paul McGuire#from pyparsing import Word, ZeroOrMore, nums
Copyright 2004-2016, by Paul McGuire#from pyparsing import Word, pyparsing_unicode as ppu
Copyright 2005-2006, Paul McGuire## Updated 2012 - latest pyparsing API# Updated 2023 - using PEP8 API names
Copyright 2006, Paul McGuire
Copyright 2006, by Paul McGuire
Copyright 2006, by Paul McGuire## Updated 8 Jan 2007 - fixed dict grouping bug, and made elements and# members optional in array and object collections
Copyright 2006, by Paul McGuire#import sysfrom pyparsing import *
Copyright 2006, by Paul McGuire# Updated 2013-Sep-14 - improved Python 2/3 cross-compatibility# Updated 2021-Sep-27 - removed Py2 compat; added type annotations#from typing import Callable, It
Copyright 2007, 2023 by Paul McGuire
Copyright 2007-2011, by Paul McGuire
Copyright 2008, Paul McGuire#
Copyright 2008, Paul McGuire## Sample parser to parse a dhcpd.leases file to extract leases# and lease attributes
Copyright 2008, Paul McGuire## pyparsing script to expand a regular expression into all possible matching strings# Supports:
Copyright 2008, by Paul McGuire#
Copyright 2009, 2011 Paul McGuire
Copyright 2010, 2019 by Paul McGuire
Copyright 2010, Paul McGuire
Copyright 2010,2019 Paul McGuire
Copyright 2011, Paul McGuire# Updated 2023
Copyright 2011,2015 Paul T. McGuire
Copyright 2012, 2019 Paul T. McGuire
Copyright 2012, Paul T. McGuire
Copyright 2015, Paul McGuire#from pyparsing import col, Word, Optional, alphas, nums
Copyright 2016, Paul McGuire## Format samples from https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html
Copyright 2018, Paul McGuire
Copyright 2019, Paul McGuire
Copyright 2020, Paul McGuire
Copyright 2021, Paul McGuire
Copyright 2022, by Paul McGuire
Copyright 2023, Paul McGuire
Copyright 2024, Paul McGuire
Copyright 2024, by Paul McGuire
Copyright Paul McGuire, 2019
Copyright Paul McGuire, 2021
Copyright © 2021 Dot ⟶ ˙ """
Copyright: Ellis
Copyright: Petri Savolainen <firstname.lastname@iki.fi>
copyright 2006, Paul McGuire#
copyright = copyright
pypi/setuptools 69.2.0 pypi:setuptools/69.2.0
Copyright (c) 2018", } jaraco.path.build(basic, prefix=root) _write_setupcfg(root, options) paths = (root / f for f in files) for path in paths:
python cffi 1.16.0 pypi:cffi/1.16.0
Copyright (c) 1996 Red Hat, Inc.
Copyright (c) 1996, 1998 Red Hat, Inc.
Copyright (c) 1996, 1998 Red Hat, Inc. Predefined ffi_types needed by libffi.
Copyright (c) 1996, 1998, 1999, 2001 Red Hat, Inc.
Copyright (c) 1996, 1998, 2001, 2002 Red Hat, Inc.
Copyright (c) 1996-2003 Red Hat, Inc.
Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
Copyright (c) 2001 John Beniton
Copyright (c) 2002 Bo Thorsen
Copyright (c) 2002 Ranjit Mathew
Copyright (c) 2002 Ranjit Mathew
Copyright (c) 2002 Roger Sayle x86 Foreign Function Interface
Copyright (c) 2009, 2010, 2011, 2012 ARM Ltd.
Copyright (c) 2011, 2014, 2019, 2021 Anthony Green
Python six 1.16.0 pypi:six/1.16.0
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2010-2020 Benjamin Peterson
copyright = True
copyright = u"2010-2020, Benjamin Peterson"
Python-Babel 2.14.0 pypi:Babel/2.14.0
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (C) ... Foo Company
Copyright (C) 1990-2003 Foo Company
Copyright (C) 1990-2003 Foo Company\n
Copyright (C) 1990-2003 ORGANIZATION
Copyright (C) 1990-2003 ORGANIZATION\n
Copyright (C) 2006 Ufsoft.org - Pedro Algarvio <ufs@ufsoft.org>
Copyright (C) 2007 FooBar, Inc.
Copyright (C) 2007 ORGANIZATION
Copyright (C) 2007 THE PACKAGE
Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
Copyright (C) YEAR ORGANIZATION
Copyright (c) 2010 by Armin Ronacher.
Copyright (c) 2013-2023 by the Babel Team, see AUTHORS for more information.
Copyright of Edgewall Software. The
copyright = '2023, The Babel Team
copyright = True
copyright in Babel sticks
copyright of that project is "Copyright 2013 by Lennart Regebro".'''
copyright: (c) 2013-2023 by the Babel Team.
copyright: (c) 2015-2023 by the Babel Team.
copyright: Copyright 2010 by Armin Ronacher.
python-decorator 5.1.1 pypi:decorator/5.1.1
Copyright (c) 2005-2018, Michele SimionatoAll rights reserved
Copyright (c) 2005-2020, Michele SimionatoAll rights reserved
Copyright (c) 2005-2021, Michele Simionato# All rights reserved
python-json-logger 2.0.7 pypi:python-json-logger/2.0.7
Copyright (c) 2011, Zakaria ZajacAll rights reserved
python-protobuf 5.26.0 pypi:protobuf/5.26.0
(C) Creates a stub * * In case (B) we have some freedom: we could either create a stub, or create * a reified object with underlying data. It appears that either could work * equally well, with n
(C) global// variables. This makes this extension compatible with sub-interpreters.
Copyright 2007 Google Inc. All Rights Reserved
Copyright 2008 Google Inc. All rights reserved
Copyright 2023 Google LLC
Copyright 2023 Google LLC. All rights reserved
python-webencodings 0.5.1 pypi:webencodings/0.5.1
copyright: Copyright 2012 by Simon Sapin
python3-charset-normalizer 3.3.2 pypi:charset-normalizer/3.3.2
Copyright (c) 2019 TAHRI Ahmed R.
Copyright (c) 2019 TAHRI Ahmed R.
copyright = '2023, Ahmed TAHRIauthor = 'Ahmed TAHRI'
copyright: (c) 2021 by Ahmed TAHRI
copyright: (c) 2021 by Ahmed TAHRI
pytorch-msssim 1.0.0 pypi:pytorch-msssim/1.0.0
Copyright (c) 2019 Gongfan Fang
Copyright 2020 by Gongfan Fang, Zhejiang University.# All rights reserved
pywin32 306 pypi:pywin32/306
COPYRIGHT = 0x0000000BPRSPEC_INVALID = -1PRSPEC_LPWSTR = 0PRSPEC_PROPID = 1
COPYRIGHT = 0x00002000MCI_GETDEVCAPS_ITEM = 0x00000100MCI_GETDEVCAPS_CAN_RECORD = 0x00000001MCI_GETDEVCAPS_HAS_AUDIO = 0x00000002MCI_GETDEVCAPS_HAS_VIDEO = 0x00000003MCI_GETDEVCAPS_DEVICE_TYPE =
COPYRIGHT = 0x0000400CMCI_SEQ_SET_TEMPO = 0x00010000MCI_SEQ_SET_PORT = 0x00020000MCI_SEQ_SET_SLAVE = 0x00040000MCI_SEQ_SET_MASTER = 0x00080000MCI_SEQ_SET_OFFSET = 0x01000000MCI_ANIM_OPEN_WS = 0x
COPYRIGHT = 11PRSPEC_INVALID = -1PRSPEC_LPWSTR = 0PRSPEC_PROPID = 1# From ShObjIdl.hSHCIDS_ALLFIELDS = -2147483648SHCIDS_CANONICALONLY = 268435456SHCIDS_BITMASK = -65536SHCIDS_COLUMNMASK = 655
COPYRIGHT = 7IMAGE_DIRECTORY_ENTRY_GLOBALPTR = 8IMAGE_DIRECTORY_ENTRY_TLS = 9IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG = 10IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT = 11IMAGE_DIRECTORY_ENTRY_IAT = 12IMAGE_SIZE
Copyright# 2003/2004 The Python Software Foundation and is covered by the Python
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
Copyright (C) 2002 Henrik Ekelund
Copyright (C) 2002 Henrik Ekelund, version 2.1 by Vernon Cole
Copyright (C) 2002 Henrik Ekelund, version 2.1 by Vernon Cole* http://sourceforge.net/projects/adodbapi"""import sysimport time
Copyright (C) 2002 Henrik Ekelund, version 2.1 by Vernon Cole* http://sourceforge.net/projects/pywin32* http://sourceforge.net/projects/adodbapi"""
Copyright (C) 2002 Henrik Ekelund, versions 2.1 and later by Vernon Cole
Copyright (c) 1994-2008, Mark HammondAll rights reserved
Copyright (c) 1996-2008, Greg Stein and Mark Hammond.All rights reserved
Copyright (c) 2000 David Abrahams. Permission to copy, use, modify, sell# and distribute this software is granted provided this copyright# notice appears in all copies. This software is provided "as
Copyright (c) 2003 Wavecom Inc. All rights reserved
Copyright (c) 2003-2004 by Chris Nilsson <chris@slort.org>
Copyright 1998-2008 Neil Hodgson (http://www.scintilla.org)"idle = "This program uses IDLE extensions by Guido van Rossum, Tim Peters and others."contributors = "Thanks to the following people for m
Copyright 2002-2003 by Blackdog Software Pty Ltd.
Copyright = (IID("PKEY_DateAccessed = (IID("{B725F130-47EF-101A-A5F1-02608C9EEBAC}"), 16)PKEY_DateAcquired = (IID("{2CBAA8F5-D81F-47CA-B17A-F8D822300131}"), 100)PKEY_DateArchived = (IID("{43F8D7B7-
Copyright © 2003-2012. All Rights Reserved
copyright information.\n" % (win32ui.copyright,) ) else:
copyright message string to embed.""" ) parser.add_option( "", "--description", metavar="DESC", help="The description to embed."
PyYAML 6.0.1 pypi:PyYAML/6.0.1
Copyright (c) 2006-2016 Kirill Simonov
Copyright (c) 2017-2021 Ingy d
pyzmq 25.1.2 pypi:pyzmq/25.1.2
(C) uint8_t public_key
(C) PyZMQ Developers
Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com>
Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com>
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Copyright (C) 2010 The IPython Team
Copyright (C) 2010 The IPython Team
Copyright (C) 2010-2011 IPython Development Team
Copyright (C) 2010-2011 IPython Development Team
Copyright (C) 2011- PyZMQ Developers
Copyright (C) 2011- PyZMQ Developers
Copyright (C) 2011-2012 Travis Cline
Copyright (C) 2011-2012 Travis Cline
Copyright (C) PyZMQ Developers
Copyright (C) PyZMQ Developers */ __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 1, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); if (PyDict_SetItem(__pyx_d, __pyx_n
Copyright (C) PyZMQ Developers
Copyright (c) 2007-2010 iMatix Corporation,# Used under LGPLv3
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
Copyright (c) 2007-2017 Contributors as noted in the AUTHORS file
Copyright (c) 2007-2018 Contributors as noted in the AUTHORS file
Copyright (c) 2007-2019 Contributors as noted in the AUTHORS file
Copyright (c) 2007-2020 Contributors as noted in the AUTHORS file
Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley
Copyright (c) 2009-2012, Brian Granger, Min Ragan-KelleyAll rights reserved
Copyright (c) 2010 Andrew Gwozdziewycz
Copyright (c) 2010 Brian Granger
Copyright (c) 2010 Brian Granger, Fernando Perez
Copyright (c) 2010 Brian Granger, Min Ragan-Kelley
Copyright (c) 2010 Brian Granger, Min Ragan-Kelley
Copyright (c) 2010 Justin Riley
Copyright (c) 2012 Godefroid Chapelle
Copyright (c) 2012 Godefroid Chapelle
Copyright (c) 2016 Contributors as noted in the AUTHORS file
Copyright (c) 2016-2017 Contributors as noted in the AUTHORS file
Copyright (c) 2018 Contributors as noted in the AUTHORS file
Copyright (c) 2019 Contributors as noted in the AUTHORS file
Copyright (c) 2020 Contributors as noted in the AUTHORS file
Copyright (c) 2022 PyZMQ Developers.# This example is in the public domain (CC-0)
Copyright (c) PyZMQ Developers
Copyright (c) PyZMQ Developers
Copyright (c) PyZMQ Developers.
Copyright (c) PyZMQ Developers.# This example is in the public domain (CC-0)
Copyright (c) PyZMQ Developers.
Copyright (c) PyZMQ Development Team.
Copyright (c) PyZMQ Development Team.
Copyright (c) Stef van der Struijk.# This example is in the public domain (CC-0)
Copyright 2009 Facebook
Copyright 2009 Facebook
Copyright 2012-2018, Bert Belder <bertbelder@gmail.com> * All rights reserved
Copyright: 2010-2012, Brian Granger
Copyright: 2003-2007, Robey Pointer <robeypointer@gmail.com>,
Copyright: 2007-2010, iMatix Corporation
Copyright: 2009, Facebook.
Copyright: 2010, Andrew Gwozdziewycz
Copyright: 2010, Brian E. Granger
Copyright: 2010, Justin Riley
Copyright: 2010, Nikolaus Rath <Nikolaus@rath.org>
Copyright: 2010-2011, Brian E. Granger
Copyright: 2010-2011, Miguel Landaeta <miguel@miguel.cc>
copyright in pyzmq core, named after the individual or
copyright of Boris Feld. This
copyright of Brian E. Granger.
copyright of Chris Laws.
copyright of Frank Wiles .
copyright of Julian Taylor.
copyright of LedgerX LLC. This document hereby grants the pyzmq project team permission to relicense pyzmq, including all past, present, and future contributions of the author listed above.
copyright of Min Ragan-Kelley.
copyright of Thomas Kluyver.
copyright their respective authors, and BSD unless otherwise
copyright their respective authors, and licensed
copyright-format/1.0/Upstream-Name: pyzmqUpstream-Contact: Min Ragan-Kelley <benjaminrk@gmail.com>Source: https://github.com/zeromq/pyzmq/downloads
regex 2023.12.25 pypi:regex/2023.12.25
Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved
Copyright (c) 1997-2002 by Secret Labs AB ";
Copyright (c) 1998-2001 by Secret Labs AB. All rights reserved
copyright as Python attribute, not global * 2001-04-28 fl added __copy__ methods (work in progress) * 2001-05-14 fl fixes for 1.5.2 compatibility * 2001-07-01 fl added BIGCHARSET support (fro
rfc3339-validator 0.1.4 pypi:rfc3339-validator/0.1.4
Copyright (c) 2019, Nicolas Aimetti
rfc3986-validator 0.1.1 pypi:rfc3986-validator/0.1.1
Copyright (c) 2019, Nicolas Aimetti
richzhang/PerceptualSimilarity 0.1.4 pypi:lpips/0.1.4
Copyright (c) 2018, Richard Zhang, Phillip Isola, Alexei A. Efros, Eli Shechtman, Oliver WangAll rights reserved
scikit-image 0.22.0 pypi:scikit-image/0.22.0
(C) the variance of the image inside the foreground, (D) the variance of the image outside of the foreground
(C) the variance of the image inside the foreground, (D) the variance of the image outside of the foreground Each value is computed for each pixel, and then summed. The weight of (B)
Copyright David Root. Licensed under CC-0
Copyright David Root. Licensed under CC-0 References
copyright = f"2013-
copyright restrictions, released into the public domain.
copyright restrictions, released into the public domain. Returns
copyright restrictions.
copyright restrictions. Returns
copyright restrictions. CC0 by the photographer (Rachel Michetti).
copyright restrictions. CC0 by the photographer (Rachel Michetti). Returns
copyright restrictions. CC0 by the photographer (Stefan van der Walt).
copyright restrictions. CC0 by the photographer (Stefan van der Walt). Returns
copyright restrictions. CC0 by the photographer (Dayane Machado).
copyright restrictions. CC0 by the photographer (Dayane Machado). Returns
copyright restrictions. CC0 by the photographer (Lav Varshney).
copyright restrictions. CC0 by the photographer (Lav Varshney). .. versionchanged:: 0.18
copyright restrictions. CC0 given by owner (Andreas Maier).
copyright restrictions. CC0 given by owner (Andreas Maier). Returns
copyright restrictions. CC0 given by owner (Andreas Preuss (marauder)).
copyright restrictions. CC0 given by owner (Andreas Preuss (marauder)). Returns
copyright restrictions. For more information, please see [1]_.
copyright restrictions. For more information, please see [1]_. References
copyright: Copyright 2015 Jon Lund Steffensen. Based on extlinks by
send2trash 1.8.2 pypi:Send2Trash/1.8.2
Copyright (c) 2017, Virgil DuprasAll rights reserved
Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
Copyright 2017 Virgil Dupras
soupsieve 2.5 pypi:soupsieve/2.5
Copyright (c) 2018 - 2023 Isaac Muse <isaacmuse@gmail.com>
Copyright (c) 2018 Isaac Muse
tensorboardX 2.6.2.2 pypi:tensorboardX/2.6.2.2
Copyright (c) 2017 Tzu-Wei Huang
Copyright 2015 The TensorFlow Authors. All Rights Reserved
Copyright 2017 The TensorFlow Authors. All Rights Reserved
Copyright 2019 The TensorFlow Authors. All Rights Reserved
copyright = '2017, tensorboardX Contributorsauthor = 'tensorboardX Contributors'
termcolor-pypi 2.4.0 pypi:termcolor/2.4.0
Copyright (c) 2008-2011 Volvox Development Team
terminado 0.18.1 pypi:terminado/0.18.1
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2014, Ramalingam Saravanan <sarava@sarava.net>
Copyright (c) 2014, Ramalingam Saravanan <sarava@sarava.net>
Copyright (c) 2014-, Jupyter development team
Copyright (c) Jupyter Development Team
copyright = True
terminaltables 3.1.10 pypi:terminaltables/3.1.10
Copyright (c) 2017 Robpol86
tinycss2 1.2.1 pypi:tinycss2/1.2.1
Copyright (c) 2013-2020, Simon Sapin and contributors.All rights reserved
copyright = 'Simon Sapin and contributors
copyright assignment is
tomli 2.0.1 pypi:tomli/2.0.1
Copyright (c) 2021 Taneli Hukkinen
tornado 6.4 pypi:tornado/6.4
Copyright 2009 Facebook
Copyright 2009 Facebook
Copyright 2011 Facebook
Copyright 2011 Facebook
Copyright 2012 Facebook
Copyright 2012 Facebook
Copyright 2014 Facebook
Copyright 2014 Facebook
Copyright 2015 The Tornado Authors
Copyright 2015 The Tornado Authors
Traitlets 5.14.2 pypi:traitlets/5.14.2
(C) Copyright ..." is shown in the HTML footer. Default is True.
Copyright (c) 2001-, IPython Development Team
Copyright (c) 2010 Doug Hellmann. All rights reserved
Copyright (c) Enthought, Inc.,
Copyright (c) IPython Development Team.
Copyright (c) Jupyter Development Team.
Copyright Policy
copyright = True
copyright in the commit message of the change, when they commit the
copyright model. Each contributor maintains copyrightover their contributions to IPython. But, it is important to note that thesecontributions are typically only changes to the repositories. Thus, t
copyright of any single person or
copyright of the entire IPythonDevelopment Team. If individual contributors want to maintain a record of whatchanges/contributions they have specific copyright on, they should indicate
copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
wcwidth 0.2.13 pypi:wcwidth/0.2.13
Copyright (c) 2014 Jeff Quast <contact@jeffquast.com>
Copyright Sign (0x000ae, 0x000ae,), # Registered Sign (0x0203c, 0x0203c,), # Double Exclamation Mark (0x02049, 0x02049,), # Exclamation Question Mark (0x02122, 0x021
copyright = '2017, Jeff Quastauthor = 'Jeff Quast'
websocket-client 1.7.0 pypi:websocket-client/1.7.0
Copyright 2023 engn33r
yapf 0.40.2 pypi:yapf/0.40.2
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,The Netherlands. All rights reserved
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.# All rights reserved
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved
Copyright 2006 Google, Inc. All Rights Reserved
Copyright 2015 Google Inc. All Rights Reserved
Copyright 2016 Google Inc. All Rights Reserved
Copyright 2017 Google Inc. All Rights Reserved
Copyright 2018 Google Inc. All Rights Reserved
Copyright 2021 Google Inc. All Rights Reserved
Copyright 2022 Bill Wendling, All Rights Reserved
Copyright 2022 Google Inc. All Rights Reserved
copyright to your changes, even after your contribution becomes part of ourcodebase, so we need your permission to use and distribute your code. We alsoneed to be sure of various other things—for in
Licenses:
Apache License 2.0
(asttokens 2.4.1, cglib 2.1_3, client_python 0.20.0, jsocol's bleach 6.1.0, jupyterlab 4.1.5, kornia 0.7.1, kornia-rs 0.1.1, lightning-utilities 0.10.1, mmcls 0.25.0, mmengine 0.10.3, mmsegmentation 1.2.2, ninja 1.11.1.1, open-mmlab/mmcv 1.7.2, open-mmlab/mmcv v1.3.2, open-mmlab/mmcv v1.3.7, open-mmlab/mmdetection 3.3.0, opencv-python 4.9.0.80, overrides 7.7.0, Packaging 24.0, psf-requests 2.31.0, pyjson5 0.9.22, Python tzdata 2024.1, python-dateutil 2.9.0.post0, python/importlib_metadata 7.0.2, regex 2023.12.25, sniffio 1.3.1, torchmetrics 1.3.1, tornado 6.4, websocket-client 1.7.0, yapf 0.40.2)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to