Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

mypy.ini 2.2 KB

You have to be logged in to leave a comment. Sign In
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
  1. [mypy]
  2. files = torchvision
  3. show_error_codes = True
  4. pretty = True
  5. allow_redefinition = True
  6. no_implicit_optional = True
  7. warn_redundant_casts = True
  8. [mypy-torchvision.prototype.datapoints.*]
  9. ; untyped definitions and calls
  10. disallow_untyped_defs = True
  11. ; None and Optional handling
  12. no_implicit_optional = True
  13. ; warnings
  14. warn_unused_ignores = True
  15. ; miscellaneous strictness flags
  16. allow_redefinition = True
  17. [mypy-torchvision.prototype.transforms.*]
  18. ignore_errors = True
  19. [mypy-torchvision.prototype.datasets.*]
  20. ignore_errors = True
  21. [mypy-torchvision.io.image.*]
  22. ignore_errors = True
  23. [mypy-torchvision.io.video.*]
  24. ignore_errors = True
  25. [mypy-torchvision.io.video_reader]
  26. ignore_errors = True
  27. [mypy-torchvision.models.densenet.*]
  28. ignore_errors=True
  29. [mypy-torchvision.models.maxvit.*]
  30. ignore_errors=True
  31. [mypy-torchvision.models.detection.anchor_utils]
  32. ignore_errors = True
  33. [mypy-torchvision.models.detection.transform]
  34. ignore_errors = True
  35. [mypy-torchvision.models.detection.roi_heads]
  36. ignore_errors = True
  37. [mypy-torchvision.models.detection.faster_rcnn]
  38. ignore_errors = True
  39. [mypy-torchvision.models.detection.mask_rcnn]
  40. ignore_errors = True
  41. [mypy-torchvision.models.detection.keypoint_rcnn]
  42. ignore_errors = True
  43. [mypy-torchvision.models.detection.retinanet]
  44. ignore_errors = True
  45. [mypy-torchvision.models.detection.ssd]
  46. ignore_errors = True
  47. [mypy-torchvision.models.detection.ssdlite]
  48. ignore_errors = True
  49. [mypy-torchvision.models.detection.fcos]
  50. ignore_errors = True
  51. [mypy-torchvision.ops.*]
  52. ignore_errors = True
  53. [mypy-torchvision.transforms._functional_pil]
  54. ignore_errors = True
  55. [mypy-torchvision.transforms.functional.*]
  56. ignore_errors = True
  57. [mypy-torchvision.transforms.transforms.*]
  58. ignore_errors = True
  59. [mypy-PIL.*]
  60. ignore_missing_imports = True
  61. [mypy-numpy.*]
  62. ignore_missing_imports = True
  63. [mypy-scipy.*]
  64. ignore_missing_imports = True
  65. [mypy-pycocotools.*]
  66. ignore_missing_imports = True
  67. [mypy-lmdb.*]
  68. ignore_missing_imports = True
  69. [mypy-accimage.*]
  70. ignore_missing_imports = True
  71. [mypy-av.*]
  72. ignore_missing_imports = True
  73. [mypy-defusedxml.*]
  74. ignore_missing_imports = True
  75. [mypy-torchdata.*]
  76. ignore_missing_imports = True
  77. [mypy-h5py.*]
  78. ignore_missing_imports = True
  79. [mypy-gdown.*]
  80. ignore_missing_imports = True
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...