首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Deformable-DETR模型代码

人工智能 1MB 39 需要积分: 1
立即下载

资源介绍:

Deformable-DETR模型代码
# Deformable DETR By [Xizhou Zhu](https://scholar.google.com/citations?user=02RXI00AAAAJ), [Weijie Su](https://www.weijiesu.com/), [Lewei Lu](https://www.linkedin.com/in/lewei-lu-94015977/), [Bin Li](http://staff.ustc.edu.cn/~binli/), [Xiaogang Wang](http://www.ee.cuhk.edu.hk/~xgwang/), [Jifeng Dai](https://jifengdai.org/). This repository is an official implementation of the paper [Deformable DETR: Deformable Transformers for End-to-End Object Detection](https://arxiv.org/abs/2010.04159). ## Introduction **TL; DR.** Deformable DETR is an efficient and fast-converging end-to-end object detector. It mitigates the high complexity and slow convergence issues of DETR via a novel sampling-based efficient attention mechanism. ![deformable_detr](./figs/illustration.png) ![deformable_detr](./figs/convergence.png) **Abstract.** DETR has been recently proposed to eliminate the need for many hand-designed components in object detection while demonstrating good performance. However, it suffers from slow convergence and limited feature spatial resolution, due to the limitation of Transformer attention modules in processing image feature maps. To mitigate these issues, we proposed Deformable DETR, whose attention modules only attend to a small set of key sampling points around a reference. Deformable DETR can achieve better performance than DETR (especially on small objects) with 10× less training epochs. Extensive experiments on the COCO benchmark demonstrate the effectiveness of our approach. ## License This project is released under the [Apache 2.0 license](./LICENSE). ## Changelog See [changelog.md](./docs/changelog.md) for detailed logs of major changes. ## Citing Deformable DETR If you find Deformable DETR useful in your research, please consider citing: ```bibtex @article{zhu2020deformable, title={Deformable DETR: Deformable Transformers for End-to-End Object Detection}, author={Zhu, Xizhou and Su, Weijie and Lu, Lewei and Li, Bin and Wang, Xiaogang and Dai, Jifeng}, journal={arXiv preprint arXiv:2010.04159}, year={2020} } ``` ## Main Results | Method | Epochs | AP | APS | APM | APL | params
(M)
| FLOPs
(G)
| Total
Train
Time
(GPU
hours)
| Train
Speed
(GPU
hours
/epoch)
| Infer
Speed
(FPS)
| Batch
Infer
Speed
(FPS)
| URL | | ----------------------------------- | :----: | :--: | :----: | :---: | :------------------------------: | :--------------------:| :----------------------------------------------------------: | :--: | :---: | :---: | ----- | ----- | | Faster R-CNN + FPN | 109 | 42.0 | 26.6 | 45.4 | 53.4 | 42 | 180 | 380 | 3.5 | 25.6 | 28.0 | - | | DETR | 500 | 42.0 | 20.5 | 45.8 | 61.1 | 41 | 86 | 2000 | 4.0 | 27.0 | 38.3 | - | | DETR-DC5 | 500 | 43.3 | 22.5 | 47.3 | 61.1 | 41 |187|7000|14.0|11.4|12.4| - | | DETR-DC5 | 50 | 35.3 | 15.2 | 37.5 | 53.6 | 41 |187|700|14.0|11.4|12.4| - | | DETR-DC5+ | 50 | 36.2 | 16.3 | 39.2 | 53.9 | 41 |187|700|14.0|11.4|12.4| - | | **Deformable DETR
(single scale)
** | 50 | 39.4 | 20.6 | 43.0 | 55.5 | 34 |78|160|3.2|27.0|42.4| [config](./configs/r50_deformable_detr_single_scale.sh)
[log](https://drive.google.com/file/d/1n3ZnZ-UAqmTUR4AZoM4qQntIDn6qCZx4/view?usp=sharing)
[model](https://drive.google.com/file/d/1WEjQ9_FgfI5sw5OZZ4ix-OKk-IJ_-SDU/view?usp=sharing)
| | **Deformable DETR
(single scale, DC5)
** | 50 | 41.5 | 24.1 | 45.3 | 56.0 | 34 |128|215|4.3|22.1|29.4| [config](./configs/r50_deformable_detr_single_scale_dc5.sh)
[log](https://drive.google.com/file/d/1-UfTp2q4GIkJjsaMRIkQxa5k5vn8_n-B/view?usp=sharing)
[model](https://drive.google.com/file/d/1m_TgMjzH7D44fbA-c_jiBZ-xf-odxGdk/view?usp=sharing)
| | **Deformable DETR** | 50 | 44.5 | 27.1 | 47.6 | 59.6 | 40 |173|325|6.5|15.0|19.4|[config](./configs/r50_deformable_detr.sh)
[log](https://drive.google.com/file/d/18YSLshFjc_erOLfFC-hHu4MX4iyz1Dqr/view?usp=sharing)
[model](https://drive.google.com/file/d/1nDWZWHuRwtwGden77NLM9JoWe-YisJnA/view?usp=sharing)
| | **+ iterative bounding box refinement** | 50 | 46.2 | 28.3 | 49.2 | 61.5 | 41 |173|325|6.5|15.0|19.4|[config](./configs/r50_deformable_detr_plus_iterative_bbox_refinement.sh)
[log](https://drive.google.com/file/d/1DFNloITi1SFBWjYzvVEAI75ndwmGM1Uj/view?usp=sharing)
[model](https://drive.google.com/file/d/1JYKyRYzUH7uo9eVfDaVCiaIGZb5YTCuI/view?usp=sharing)
| | **++ two-stage Deformable DETR** | 50 | 46.9 | 29.6 | 50.1 | 61.6 | 41 |173|340|6.8|14.5|18.8|[config](./configs/r50_deformable_detr_plus_iterative_bbox_refinement_plus_plus_two_stage.sh)
[log](https://drive.google.com/file/d/1ozi0wbv5-Sc5TbWt1jAuXco72vEfEtbY/view?usp=sharing)
[model](https://drive.google.com/file/d/15I03A7hNTpwuLNdfuEmW9_taZMNVssEp/view?usp=sharing)
| *Note:* 1. All models of Deformable DETR are trained with total batch size of 32. 2. Training and inference speed are measured on NVIDIA Tesla V100 GPU. 3. "Deformable DETR (single scale)" means only using res5 feature map (of stride 32) as input feature maps for Deformable Transformer Encoder. 4. "DC5" means removing the stride in C5 stage of ResNet and add a dilation of 2 instead. 5. "DETR-DC5+" indicates DETR-DC5 with some modifications, including using Focal Loss for bounding box classification and increasing number of object queries to 300. 6. "Batch Infer Speed" refer to inference with batch size = 4 to maximize GPU utilization. 7. The original implementation is based on our internal codebase. There are slight differences in the final accuracy and running time due to the plenty details in platform switch. ## Installation ### Requirements * Linux, CUDA>=9.2, GCC>=5.4 * Python>=3.7 We recommend you to use Anaconda to create a conda environment: ```bash conda create -n deformable_detr python=3.7 pip ``` Then, activate the environment: ```bash conda activate deformable_detr ``` * PyTorch>=1.5.1, torchvision>=0.6.1 (following instructions [here](https://pytorch.org/)) For example, if your CUDA version is 9.2, you coul

资源文件列表:

Deformable-DETR-main.zip 大约有308个文件
  1. Deformable-DETR-main/
  2. Deformable-DETR-main/LICENSE 11.68KB
  3. Deformable-DETR-main/README.md 10.27KB
  4. Deformable-DETR-main/benchmark.py 2.39KB
  5. Deformable-DETR-main/configs/
  6. Deformable-DETR-main/configs/r50_deformable_detr.sh 143B
  7. Deformable-DETR-main/configs/r50_deformable_detr_plus_iterative_bbox_refinement.sh 198B
  8. Deformable-DETR-main/configs/r50_deformable_detr_plus_iterative_bbox_refinement_plus_plus_two_stage.sh 236B
  9. Deformable-DETR-main/configs/r50_deformable_detr_single_scale.sh 185B
  10. Deformable-DETR-main/configs/r50_deformable_detr_single_scale_dc5.sh 206B
  11. Deformable-DETR-main/datasets/
  12. Deformable-DETR-main/datasets/__init__.py 1.31KB
  13. Deformable-DETR-main/datasets/coco.py 5.88KB
  14. Deformable-DETR-main/datasets/coco_eval.py 8.96KB
  15. Deformable-DETR-main/datasets/coco_panoptic.py 4.06KB
  16. Deformable-DETR-main/datasets/data_prefetcher.py 3.01KB
  17. Deformable-DETR-main/datasets/panoptic_eval.py 1.88KB
  18. Deformable-DETR-main/datasets/samplers.py 5.48KB
  19. Deformable-DETR-main/datasets/torchvision_datasets/
  20. Deformable-DETR-main/datasets/torchvision_datasets/__init__.py 329B
  21. Deformable-DETR-main/datasets/torchvision_datasets/coco.py 3.21KB
  22. Deformable-DETR-main/datasets/transforms.py 8.75KB
  23. Deformable-DETR-main/docs/
  24. Deformable-DETR-main/docs/changelog.md 383B
  25. Deformable-DETR-main/engine.py 7.33KB
  26. Deformable-DETR-main/figs/
  27. Deformable-DETR-main/figs/convergence.png 53.36KB
  28. Deformable-DETR-main/figs/illustration.png 265.79KB
  29. Deformable-DETR-main/main.py 15.18KB
  30. Deformable-DETR-main/models/
  31. Deformable-DETR-main/models/__init__.py 591B
  32. Deformable-DETR-main/models/backbone.py 5.17KB
  33. Deformable-DETR-main/models/deformable_detr.py 22.82KB
  34. Deformable-DETR-main/models/deformable_transformer.py 21.98KB
  35. Deformable-DETR-main/models/matcher.py 4.85KB
  36. Deformable-DETR-main/models/ops/
  37. Deformable-DETR-main/models/ops/functions/
  38. Deformable-DETR-main/models/ops/functions/__init__.py 598B
  39. Deformable-DETR-main/models/ops/functions/ms_deform_attn_func.py 3.22KB
  40. Deformable-DETR-main/models/ops/make.sh 593B
  41. Deformable-DETR-main/models/ops/modules/
  42. Deformable-DETR-main/models/ops/modules/__init__.py 584B
  43. Deformable-DETR-main/models/ops/modules/ms_deform_attn.py 6.12KB
  44. Deformable-DETR-main/models/ops/setup.py 2.5KB
  45. Deformable-DETR-main/models/ops/src/
  46. Deformable-DETR-main/models/ops/src/cpu/
  47. Deformable-DETR-main/models/ops/src/cpu/ms_deform_attn_cpu.cpp 1.23KB
  48. Deformable-DETR-main/models/ops/src/cpu/ms_deform_attn_cpu.h 1.11KB
  49. Deformable-DETR-main/models/ops/src/cuda/
  50. Deformable-DETR-main/models/ops/src/cuda/ms_deform_attn_cuda.cu 7.14KB
  51. Deformable-DETR-main/models/ops/src/cuda/ms_deform_attn_cuda.h 1.11KB
  52. Deformable-DETR-main/models/ops/src/cuda/ms_deform_im2col_cuda.cuh 53.41KB
  53. Deformable-DETR-main/models/ops/src/ms_deform_attn.h 1.79KB
  54. Deformable-DETR-main/models/ops/src/vision.cpp 799B
  55. Deformable-DETR-main/models/ops/test.py 3.99KB
  56. Deformable-DETR-main/models/position_encoding.py 3.7KB
  57. Deformable-DETR-main/models/segmentation.py 15.55KB
  58. Deformable-DETR-main/requirements.txt 30B
  59. Deformable-DETR-main/tools/
  60. Deformable-DETR-main/tools/launch.py 9.09KB
  61. Deformable-DETR-main/tools/run_dist_launch.sh 812B
  62. Deformable-DETR-main/tools/run_dist_slurm.sh 1.13KB
  63. Deformable-DETR-main/util/
  64. Deformable-DETR-main/util/__init__.py 506B
  65. Deformable-DETR-main/util/box_ops.py 2.93KB
  66. Deformable-DETR-main/util/misc.py 17.16KB
  67. Deformable-DETR-main/util/plot_utils.py 4.55KB
  68. Deformable-DETR-main/.idea/
  69. Deformable-DETR-main/.idea/.gitignore 50B
  70. Deformable-DETR-main/.idea/modules.xml 299B
  71. Deformable-DETR-main/.idea/inspectionProfiles/
  72. Deformable-DETR-main/.idea/inspectionProfiles/profiles_settings.xml 174B
  73. Deformable-DETR-main/.idea/vcs.xml 185B
  74. Deformable-DETR-main/.idea/Deformable-DETR-main.iml 492B
  75. Deformable-DETR-main/.idea/misc.xml 195B
  76. Deformable-DETR-main/.idea/workspace.xml 2.41KB
  77. Deformable-DETR-main/venv/
  78. Deformable-DETR-main/venv/Lib/
  79. Deformable-DETR-main/venv/Lib/site-packages/
  80. Deformable-DETR-main/venv/Scripts/
  81. Deformable-DETR-main/venv/Scripts/python.exe 89.5KB
  82. Deformable-DETR-main/venv/Scripts/pythonw.exe 89.5KB
  83. Deformable-DETR-main/venv/pyvenv.cfg 327B
  84. Deformable-DETR-main/.git/
  85. Deformable-DETR-main/.git/description 73B
  86. Deformable-DETR-main/.git/hooks/
  87. Deformable-DETR-main/.git/hooks/applypatch-msg.sample 478B
  88. Deformable-DETR-main/.git/hooks/commit-msg.sample 896B
  89. Deformable-DETR-main/.git/hooks/fsmonitor-watchman.sample 3.25KB
  90. Deformable-DETR-main/.git/hooks/post-update.sample 189B
  91. Deformable-DETR-main/.git/hooks/pre-applypatch.sample 424B
  92. Deformable-DETR-main/.git/hooks/pre-commit.sample 1.6KB
  93. Deformable-DETR-main/.git/hooks/pre-push.sample 1.32KB
  94. Deformable-DETR-main/.git/hooks/pre-rebase.sample 4.78KB
  95. Deformable-DETR-main/.git/hooks/pre-receive.sample 544B
  96. Deformable-DETR-main/.git/hooks/prepare-commit-msg.sample 1.46KB
  97. Deformable-DETR-main/.git/hooks/update.sample 3.53KB
  98. Deformable-DETR-main/.git/info/
  99. Deformable-DETR-main/.git/info/exclude 240B
  100. Deformable-DETR-main/.git/refs/
  101. Deformable-DETR-main/.git/refs/heads/
  102. Deformable-DETR-main/.git/refs/heads/master 41B
  103. Deformable-DETR-main/.git/refs/heads/CCFM-Deformable-DETR 41B
  104. Deformable-DETR-main/.git/refs/tags/
  105. Deformable-DETR-main/.git/refs/remotes/
  106. Deformable-DETR-main/.git/refs/remotes/origin/
  107. Deformable-DETR-main/.git/refs/remotes/origin/master 41B
  108. Deformable-DETR-main/.git/objects/
  109. Deformable-DETR-main/.git/objects/pack/
  110. Deformable-DETR-main/.git/objects/info/
  111. Deformable-DETR-main/.git/objects/26/
  112. Deformable-DETR-main/.git/objects/26/d33521af10bcc7fd8cea344038eaaeb78d0ef5 63B
  113. Deformable-DETR-main/.git/objects/26/d35d6a4974669dbe52a4fdbe29f1fb84020ac1 176B
  114. Deformable-DETR-main/.git/objects/26/9d7b9efd113c197a008ecd4a338350d783c8fa 61B
  115. Deformable-DETR-main/.git/objects/8b/
  116. Deformable-DETR-main/.git/objects/8b/8c395472a5a6b3598af42086e590417ace9933 271B
  117. Deformable-DETR-main/.git/objects/10/
  118. Deformable-DETR-main/.git/objects/10/5ce2da2d6447d11dfe32bfb846c3d5b199fc99 142B
  119. Deformable-DETR-main/.git/objects/10/6b685722bc6ed70a06bf04309e75e62f73a430 255B
  120. Deformable-DETR-main/.git/objects/af/
  121. Deformable-DETR-main/.git/objects/af/51596716f57f7fe7371a9771e5abf57631ff99 195B
  122. Deformable-DETR-main/.git/objects/52/
  123. Deformable-DETR-main/.git/objects/52/2e5bd3b6cb82fa3c601acd0a0044396c5ea18f 4.43KB
  124. Deformable-DETR-main/.git/objects/c9/
  125. Deformable-DETR-main/.git/objects/c9/db56351160b25f179cbe11ef2602fac15b315a 3.91KB
  126. Deformable-DETR-main/.git/objects/59/
  127. Deformable-DETR-main/.git/objects/59/19477899ffa7925222831853368b8a1f8d6626 998B
  128. Deformable-DETR-main/.git/objects/a4/
  129. Deformable-DETR-main/.git/objects/a4/2953f266110410618cfa040018bcf206bbe7b8 141B
  130. Deformable-DETR-main/.git/objects/8e/
  131. Deformable-DETR-main/.git/objects/8e/a20006b1614184499bfbb9c8dc26bb3df63a10 171B
  132. Deformable-DETR-main/.git/objects/72/
  133. Deformable-DETR-main/.git/objects/72/2c658e45ffd652ad8cbb2c5adced04b6f66237 189B
  134. Deformable-DETR-main/.git/objects/a2/
  135. Deformable-DETR-main/.git/objects/a2/4e54718df35979b93cb64a0f4348f26b3dfc96 167B
  136. Deformable-DETR-main/.git/objects/a2/f000d31603b3f2fca3bbe8878f62243782892c 86B
  137. Deformable-DETR-main/.git/objects/f5/
  138. Deformable-DETR-main/.git/objects/f5/bd85699269dd97b743056fe4c0c557995111ea 533B
  139. Deformable-DETR-main/.git/objects/1b/
  140. Deformable-DETR-main/.git/objects/1b/e8308c847ac6d79e584520e3003074f659bf37 2.07KB
  141. Deformable-DETR-main/.git/objects/9a/
  142. Deformable-DETR-main/.git/objects/9a/3ebe7e7d12d07b35d655d1f8f192d44e885cac 2.69KB
  143. Deformable-DETR-main/.git/objects/9a/59c33484884af523013d1ed2ef57032646336a 275B
  144. Deformable-DETR-main/.git/objects/e8/
  145. Deformable-DETR-main/.git/objects/e8/56e49d84853e5feb78ec0cf002677375cff2bb 1.46KB
  146. Deformable-DETR-main/.git/objects/e8/a4bcb9769a17fbfad7d4a4d32ae354c32db387 302B
  147. Deformable-DETR-main/.git/objects/7d/
  148. Deformable-DETR-main/.git/objects/7d/28d9fdd7f90d2689590c9a126226c068081bd5 1.01KB
  149. Deformable-DETR-main/.git/objects/0d/
  150. Deformable-DETR-main/.git/objects/0d/abffdb584210af1836d9ee7e5b12532926e9b0 753B
  151. Deformable-DETR-main/.git/objects/0d/97e763e8e04b5ed4289556241b48b01e7e31bf 301B
  152. Deformable-DETR-main/.git/objects/14/
  153. Deformable-DETR-main/.git/objects/14/c0af2f9892d1636f079664b18cc71e3c20c78f 1.34KB
  154. Deformable-DETR-main/.git/objects/14/78430e73065fc0f00c5c278f5f1a13eb66628f 100B
  155. Deformable-DETR-main/.git/objects/14/c0f97b2a5d2b5299c432db2b372231b4dc49ff 92B
  156. Deformable-DETR-main/.git/objects/16/
  157. Deformable-DETR-main/.git/objects/16/2303c4cea0a2c0c6ecd65143c28b1752cae49a 177B
  158. Deformable-DETR-main/.git/objects/45/
  159. Deformable-DETR-main/.git/objects/45/b5f52fa9945145dbd48630bac2c2fd42d672b7 1.21KB
  160. Deformable-DETR-main/.git/objects/8f/
  161. Deformable-DETR-main/.git/objects/8f/4baeb51ca79b5756b5e3565eecd564ad32e3e2 2.69KB
  162. Deformable-DETR-main/.git/objects/1e/
  163. Deformable-DETR-main/.git/objects/1e/d5e79a4d0d293b0a7c878b66225e983c98df88 284B
  164. Deformable-DETR-main/.git/objects/1e/543751d80842cd7a85c94074955c182f6256ad 237B
  165. Deformable-DETR-main/.git/objects/1a/
  166. Deformable-DETR-main/.git/objects/1a/e2ae959178aa61407982d710f0db65e56e2960 2.14KB
  167. Deformable-DETR-main/.git/objects/37/
  168. Deformable-DETR-main/.git/objects/37/cf241dce72a765aee1d5d3b5f6a8cf39d42f32 49.16KB
  169. Deformable-DETR-main/.git/objects/4e/
  170. Deformable-DETR-main/.git/objects/4e/3d3301b2213d218b5a0c1045be3335a08aad1b 255.91KB
  171. Deformable-DETR-main/.git/objects/4e/bdc90b7f3ac2ed5a085066dcf20722b90cbc77 228B
  172. Deformable-DETR-main/.git/objects/fc/
  173. Deformable-DETR-main/.git/objects/fc/6ccfac28eecba32b29c98d554367303d66e179 4.49KB
  174. Deformable-DETR-main/.git/objects/4b/
  175. Deformable-DETR-main/.git/objects/4b/fe7053e900089693e3c9e5db3ff7422ea7a600 1.88KB
  176. Deformable-DETR-main/.git/objects/f1/
  177. Deformable-DETR-main/.git/objects/f1/415e856228d8c5ff4a37a2f366467e33be22cf 7.36KB
  178. Deformable-DETR-main/.git/objects/08/
  179. Deformable-DETR-main/.git/objects/08/ca377798bf0916c3d62a225434c4a2019bcb2a 4.44KB
  180. Deformable-DETR-main/.git/objects/63/
  181. Deformable-DETR-main/.git/objects/63/ef0294252e38d073d2c6d11e420e7cd306a7e2 1.76KB
  182. Deformable-DETR-main/.git/objects/8a/
  183. Deformable-DETR-main/.git/objects/8a/2197bda3199aa32cafc5b9d396479609853dd2 261B
  184. Deformable-DETR-main/.git/objects/8c/
  185. Deformable-DETR-main/.git/objects/8c/5df8cf5d23aca963eec6c1133c180b37289607 1.08KB
  186. Deformable-DETR-main/.git/objects/f8/
  187. Deformable-DETR-main/.git/objects/f8/2cb1ad9d634a87b54ba6a71b58a230bcade5fe 253B
  188. Deformable-DETR-main/.git/objects/66/
  189. Deformable-DETR-main/.git/objects/66/3d64a3d2c33f56474b1f01ce7b1162f4966986 2.08KB
  190. Deformable-DETR-main/.git/objects/a0/
  191. Deformable-DETR-main/.git/objects/a0/131bc21cf1b45b90fcf174e2c53e4c08e9c641 976B
  192. Deformable-DETR-main/.git/objects/e1/
  193. Deformable-DETR-main/.git/objects/e1/bf854de1f3860d20b6fef5c1a17817c268e70a 437B
  194. Deformable-DETR-main/.git/objects/81/
  195. Deformable-DETR-main/.git/objects/81/b7b58a3d9502bbb684dc84687a526dedf94cae 395B
  196. Deformable-DETR-main/.git/objects/d6/
  197. Deformable-DETR-main/.git/objects/d6/d583647cce987196d5ad1968a8a365a379e774 1.46KB
  198. Deformable-DETR-main/.git/objects/d6/2683cf6be4201f2e9524432692f641745a1185 484B
  199. Deformable-DETR-main/.git/objects/c7/
  200. Deformable-DETR-main/.git/objects/c7/ae53f99c820ce6193b608ad344550348a0b42c 395B
  201. Deformable-DETR-main/.git/objects/6b/
  202. Deformable-DETR-main/.git/objects/6b/c2acb7aea0eab2e9e91e769a16861e1652c284 4.96KB
  203. Deformable-DETR-main/.git/objects/ac/
  204. Deformable-DETR-main/.git/objects/ac/0ef2ec25f7d0ee51ca2d807b159ddf85652017 566B
  205. Deformable-DETR-main/.git/objects/22/
  206. Deformable-DETR-main/.git/objects/22/01f63a51dca16d0b31148ed2c9e8e47ec15bdc 335B
  207. Deformable-DETR-main/.git/objects/8d/
  208. Deformable-DETR-main/.git/objects/8d/bf6d5547d131f01a8c5c28b76557bd27a9334b 1.12KB
  209. Deformable-DETR-main/.git/objects/a9/
  210. Deformable-DETR-main/.git/objects/a9/2f0d36aec69ed8d918de0214bae57d335aeb10 1.35KB
  211. Deformable-DETR-main/.git/objects/a9/0a0dd9d31c9e4820b7ad6b4d0cf470d7fd0d6d 182B
  212. Deformable-DETR-main/.git/objects/c8/
  213. Deformable-DETR-main/.git/objects/c8/01c0eaada3df0f286f6288266a00053b82472e 5.17KB
  214. Deformable-DETR-main/.git/objects/fd/
  215. Deformable-DETR-main/.git/objects/fd/846723be9b45b180042a945eddc6a2122d660f 46B
  216. Deformable-DETR-main/.git/objects/2b/
  217. Deformable-DETR-main/.git/objects/2b/3ceaa7bc985484a3c11cc06c0ddd09351c01e6 3.16KB
  218. Deformable-DETR-main/.git/objects/f6/
  219. Deformable-DETR-main/.git/objects/f6/f6c4fb6f77dde561acfb97495d638703a56150 406B
  220. Deformable-DETR-main/.git/objects/f6/4def6005908b60e0b0569e92794808376cebf4 152B
  221. Deformable-DETR-main/.git/objects/bd/
  222. Deformable-DETR-main/.git/objects/bd/73d0bbb76e8c513590efc844c12dd3f51c8ece 496B
  223. Deformable-DETR-main/.git/objects/ca/
  224. Deformable-DETR-main/.git/objects/ca/29592f8077cba5f934bb364370ac09adca9e76 1.2KB
  225. Deformable-DETR-main/.git/objects/6d/
  226. Deformable-DETR-main/.git/objects/6d/4d076720ae82961c7a9e9673ad6ca94b6ff9e5 5.88KB
  227. Deformable-DETR-main/.git/objects/75/
  228. Deformable-DETR-main/.git/objects/75/9f34d252493fd93187ea3cf2ab0d63a3e2b280 1.9KB
  229. Deformable-DETR-main/.git/objects/57/
  230. Deformable-DETR-main/.git/objects/57/6917dc18f15cbdff9fd2c816c93d11d8b4ebf6 44.82KB
  231. Deformable-DETR-main/.git/objects/d8/
  232. Deformable-DETR-main/.git/objects/d8/8ac18e56c7b702971558b972394b3313fc3552 180B
  233. Deformable-DETR-main/.git/objects/d8/7e485d05b12191ca929690892a1f9ef77da0f9 97B
  234. Deformable-DETR-main/.git/objects/97/
  235. Deformable-DETR-main/.git/objects/97/824ec9b0149e48c91dce4fee530335b327c686 66B
  236. Deformable-DETR-main/.git/objects/3d/
  237. Deformable-DETR-main/.git/objects/3d/d8fd0d2d327508a741b307acbdd4791e5569d2 227B
  238. Deformable-DETR-main/.git/objects/3b/
  239. Deformable-DETR-main/.git/objects/3b/696dbd6d7f4818f58332a7970e3caafc1ad595 330B
  240. Deformable-DETR-main/.git/objects/21/
  241. Deformable-DETR-main/.git/objects/21/9eba6d3f5951582cad1a747da86caaeeb3262d 56B
  242. Deformable-DETR-main/.git/objects/54/
  243. Deformable-DETR-main/.git/objects/54/b21c35e82f146ddbd462a8c0f4c5715173bef6 95B
  244. Deformable-DETR-main/.git/objects/44/
  245. Deformable-DETR-main/.git/objects/44/e581c1dc336962619f2a9092e299cc24c628a7 127B
  246. Deformable-DETR-main/.git/objects/38/
  247. Deformable-DETR-main/.git/objects/38/5d8f9e1937b625ce1201db2ed92ec61da920b4 153B
  248. Deformable-DETR-main/.git/objects/64/
  249. Deformable-DETR-main/.git/objects/64/5990d3afdf846bc3162f393ef5c9ac0f79aecd 207B
  250. Deformable-DETR-main/.git/objects/7b/
  251. Deformable-DETR-main/.git/objects/7b/24fc1c2172b2e656b629a0df90c3d0349c83c5 124B
  252. Deformable-DETR-main/.git/objects/df/
  253. Deformable-DETR-main/.git/objects/df/76a27727b52accf9f6b7fd10b5b1bdf637f12a 88B
  254. Deformable-DETR-main/.git/objects/cd/
  255. Deformable-DETR-main/.git/objects/cd/3e5e7825a227df4fc1c988f5d7176d7eb24857 485B
  256. Deformable-DETR-main/.git/objects/71/
  257. Deformable-DETR-main/.git/objects/71/2a50ced4d46818c473f8278bb8a072fb200e83 142B
  258. Deformable-DETR-main/.git/objects/0b/
  259. Deformable-DETR-main/.git/objects/0b/767b754def782e368a0dce89d0bc3ff0b057e9 2.06KB
  260. Deformable-DETR-main/.git/objects/ee/
  261. Deformable-DETR-main/.git/objects/ee/27c95b88fdc3c0740076a56a8ad1690a938d6e 4.49KB
  262. Deformable-DETR-main/.git/objects/9d/
  263. Deformable-DETR-main/.git/objects/9d/0113683c0cda1cf43878bd44f6e8d1d7d69fa3 7.37KB
  264. Deformable-DETR-main/.git/objects/cc/
  265. Deformable-DETR-main/.git/objects/cc/7ba75fc37b851205799adc3fdbe13dee95292a 5.89KB
  266. Deformable-DETR-main/.git/objects/94/
  267. Deformable-DETR-main/.git/objects/94/a25f7f4cb416c083d265558da75d457237d671 155B
  268. Deformable-DETR-main/.git/objects/73/
  269. Deformable-DETR-main/.git/objects/73/b1b0c83243422a7ddaed4ecfdd93edf280a595 209B
  270. Deformable-DETR-main/.git/objects/0c/
  271. Deformable-DETR-main/.git/objects/0c/780361ce8fc5545af744b9d9808fbebb9bf0ac 330B
  272. Deformable-DETR-main/.git/objects/dc/
  273. Deformable-DETR-main/.git/objects/dc/71d031238b675d3a07c19389ff9d01e47171ba 302B
  274. Deformable-DETR-main/.git/objects/86/
  275. Deformable-DETR-main/.git/objects/86/5cf7b8eb929385363c52a42a48361ca0534f24 152B
  276. Deformable-DETR-main/.git/objects/e2/
  277. Deformable-DETR-main/.git/objects/e2/186a93e372e4dfca3aa7ae9091bfcda13a6e5f 485B
  278. Deformable-DETR-main/.git/objects/b5/
  279. Deformable-DETR-main/.git/objects/b5/f8527a53a42eaaf3c838bce6d56af54dcf70eb 179B
  280. Deformable-DETR-main/.git/objects/d9/
  281. Deformable-DETR-main/.git/objects/d9/68d1dd6da2588609255d9f758ac011acb4c653 295B
  282. Deformable-DETR-main/.git/objects/d1/
  283. Deformable-DETR-main/.git/objects/d1/8cc250a23b0512de7a5c26c0c5cbe204da1644 4.96KB
  284. Deformable-DETR-main/.git/objects/7e/
  285. Deformable-DETR-main/.git/objects/7e/8347393ddfe33eee013e518e748882791bd313 153B
  286. Deformable-DETR-main/.git/objects/da/
  287. Deformable-DETR-main/.git/objects/da/b4e12273b6ae8bcb9ca87aa6fb5a861dc24813 485B
  288. Deformable-DETR-main/.git/objects/25/
  289. Deformable-DETR-main/.git/objects/25/bcae7d03d80bd6815a1554127f729ad56ea31a 150B
  290. Deformable-DETR-main/.git/objects/b2/
  291. Deformable-DETR-main/.git/objects/b2/df051d145d89f340d160b668d279b32c62fe81 5.88KB
  292. Deformable-DETR-main/.git/objects/2e/
  293. Deformable-DETR-main/.git/objects/2e/31b19d763019fa6be556244d76aa98c40c6720 302B
  294. Deformable-DETR-main/.git/objects/3a/
  295. Deformable-DETR-main/.git/objects/3a/245a5880f715cb31b108d05a4bed1a4e94cbd9 157B
  296. Deformable-DETR-main/.git/COMMIT_EDITMSG 9B
  297. Deformable-DETR-main/.git/logs/
  298. Deformable-DETR-main/.git/logs/HEAD 761B
  299. Deformable-DETR-main/.git/logs/refs/
  300. Deformable-DETR-main/.git/logs/refs/heads/
  301. Deformable-DETR-main/.git/logs/refs/heads/master 309B
  302. Deformable-DETR-main/.git/logs/refs/heads/CCFM-Deformable-DETR 425B
  303. Deformable-DETR-main/.git/logs/refs/remotes/
  304. Deformable-DETR-main/.git/logs/refs/remotes/origin/
  305. Deformable-DETR-main/.git/logs/refs/remotes/origin/master 276B
  306. Deformable-DETR-main/.git/config 306B
  307. Deformable-DETR-main/.git/HEAD 37B
  308. Deformable-DETR-main/.git/index 6.09KB
0评论
提交 加载更多评论
其他资源 STM32F103ZET6-cubemx-FreeRTOS使用串口2和KQM6600进行通信
屎山代码仅供参考
8c4d788f-26d8-463b-97d4-79aceb9e7b88.zip
8c4d788f-26d8-463b-97d4-79aceb9e7b88.zip
2025届毕业论文(设计)相关材料(1).zip
2025届毕业论文(设计)相关材料(1).zip
2025届毕业论文(设计)相关材料(1).zip 2025届毕业论文(设计)相关材料(1).zip 2025届毕业论文(设计)相关材料(1).zip
ultralytics_obb_segment.zip
ultralytics_obb_segment.zip
ultralytics_obb_segment.zip ultralytics_obb_segment.zip ultralytics_obb_segment.zip
串口工具,嵌入式调试工具
串口工具,嵌入式调试工具,自己在用的,稳定可靠!!!
串口工具,嵌入式调试工具
Axure RP 8.0中文版图文安装教程(附软件),AxureRP是一个专业的快速原型设计工具,让负责定义需求和规格、设计功能
Axure RP 8.0中文版图文安装教程(附软件),AxureRP是一个专业的快速原型设计工具,让负责定义需求和规格、设计功能和界面的专家能够快速创建应用软件或We网站的线框图、流程图、原型
(亲测有效)这款截图工具的功能很多,目前所用过的当中
这款截图工具的功能很多,目前所用过的当中,其最方便,强烈安利
(亲测有效)微力同步官网 - 私有云盘 企业文件同步 团队文件共享协助
简单易用的多平台文件同步软件,惊人的传输速度是不同于其他产品的最大优势, 微力同步 的智能 P2P 技术加速同步,会将文件分割成若干份仅 KB 的数据同步,而文件都会进行 AES 加密处理。 免费下载 告...