mirror of
https://gitee.com/nanjing-yimao-information/ieemoo-ai-gift.git
synced 2025-08-23 15:40:25 +00:00
update
This commit is contained in:
140
docs/en/reference/nn/modules/block.md
Normal file
140
docs/en/reference/nn/modules/block.md
Normal file
@ -0,0 +1,140 @@
|
||||
---
|
||||
description: Explore Ultralytics YOLO neural network modules, Proto to BottleneckCSP. Detailed explanation of each module with easy-to-follow code examples.
|
||||
keywords: YOLO, Ultralytics, neural network, nn.modules.block, Proto, HGBlock, SPPF, C2, C3, RepC3, C3Ghost, Bottleneck, BottleneckCSP
|
||||
---
|
||||
|
||||
# Reference for `ultralytics/nn/modules/block.py`
|
||||
|
||||
!!! Note
|
||||
|
||||
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/block.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/block.py). If you spot a problem please help fix it by [contributing](https://docs.ultralytics.com/help/contributing/) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/nn/modules/block.py) 🛠️. Thank you 🙏!
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.DFL
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.Proto
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.HGStem
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.HGBlock
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.SPP
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.SPPF
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C1
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C2
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C2f
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C3
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C3x
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.RepC3
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C3TR
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C3Ghost
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.GhostBottleneck
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.Bottleneck
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.BottleneckCSP
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.ResNetBlock
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.ResNetLayer
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.MaxSigmoidAttnBlock
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.C2fAttn
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.ImagePoolingAttn
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.ContrastiveHead
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.BNContrastiveHead
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.RepBottleneck
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.RepCSP
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.RepNCSPELAN4
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.ADown
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.SPPELAN
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.Silence
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.CBLinear
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.block.CBFuse
|
||||
|
||||
<br><br>
|
68
docs/en/reference/nn/modules/conv.md
Normal file
68
docs/en/reference/nn/modules/conv.md
Normal file
@ -0,0 +1,68 @@
|
||||
---
|
||||
description: Explore various Ultralytics convolution modules including Conv2, DWConv, ConvTranspose, GhostConv, Channel Attention and more.
|
||||
keywords: Ultralytics, Convolution Modules, Conv2, DWConv, ConvTranspose, GhostConv, ChannelAttention, CBAM, autopad
|
||||
---
|
||||
|
||||
# Reference for `ultralytics/nn/modules/conv.py`
|
||||
|
||||
!!! Note
|
||||
|
||||
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/conv.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/conv.py). If you spot a problem please help fix it by [contributing](https://docs.ultralytics.com/help/contributing/) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/nn/modules/conv.py) 🛠️. Thank you 🙏!
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.Conv
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.Conv2
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.LightConv
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.DWConv
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.DWConvTranspose2d
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.ConvTranspose
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.Focus
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.GhostConv
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.RepConv
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.ChannelAttention
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.SpatialAttention
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.CBAM
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.Concat
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.conv.autopad
|
||||
|
||||
<br><br>
|
40
docs/en/reference/nn/modules/head.md
Normal file
40
docs/en/reference/nn/modules/head.md
Normal file
@ -0,0 +1,40 @@
|
||||
---
|
||||
description: Explore docs covering Ultralytics YOLO detection, pose & RTDETRDecoder. Comprehensive guides to help you understand Ultralytics nn modules.
|
||||
keywords: Ultralytics, YOLO, Detection, Pose, RTDETRDecoder, nn modules, guides
|
||||
---
|
||||
|
||||
# Reference for `ultralytics/nn/modules/head.py`
|
||||
|
||||
!!! Note
|
||||
|
||||
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/head.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/head.py). If you spot a problem please help fix it by [contributing](https://docs.ultralytics.com/help/contributing/) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/nn/modules/head.py) 🛠️. Thank you 🙏!
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.Detect
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.Segment
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.OBB
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.Pose
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.Classify
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.WorldDetect
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.head.RTDETRDecoder
|
||||
|
||||
<br><br>
|
52
docs/en/reference/nn/modules/transformer.md
Normal file
52
docs/en/reference/nn/modules/transformer.md
Normal file
@ -0,0 +1,52 @@
|
||||
---
|
||||
description: Learn about Ultralytics transformer encoder, layer, MLP block, LayerNorm2d and the deformable transformer decoder layer. Expand your understanding of these crucial AI modules.
|
||||
keywords: Ultralytics, Ultralytics documentation, TransformerEncoderLayer, TransformerLayer, MLPBlock, LayerNorm2d, DeformableTransformerDecoderLayer
|
||||
---
|
||||
|
||||
# Reference for `ultralytics/nn/modules/transformer.py`
|
||||
|
||||
!!! Note
|
||||
|
||||
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/transformer.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/transformer.py). If you spot a problem please help fix it by [contributing](https://docs.ultralytics.com/help/contributing/) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/nn/modules/transformer.py) 🛠️. Thank you 🙏!
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.TransformerEncoderLayer
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.AIFI
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.TransformerLayer
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.TransformerBlock
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.MLPBlock
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.MLP
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.LayerNorm2d
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.MSDeformAttn
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.DeformableTransformerDecoderLayer
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.transformer.DeformableTransformerDecoder
|
||||
|
||||
<br><br>
|
32
docs/en/reference/nn/modules/utils.md
Normal file
32
docs/en/reference/nn/modules/utils.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
description: Explore Ultralytics neural network utils, such as bias_init_with_prob, inverse_sigmoid and multi_scale_deformable_attn_pytorch functions.
|
||||
keywords: Ultralytics, neural network, nn.modules.utils, bias_init_with_prob, inverse_sigmoid, multi_scale_deformable_attn_pytorch
|
||||
---
|
||||
|
||||
# Reference for `ultralytics/nn/modules/utils.py`
|
||||
|
||||
!!! Note
|
||||
|
||||
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/utils.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/nn/modules/utils.py). If you spot a problem please help fix it by [contributing](https://docs.ultralytics.com/help/contributing/) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/nn/modules/utils.py) 🛠️. Thank you 🙏!
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.utils._get_clones
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.utils.bias_init_with_prob
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.utils.linear_init
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.utils.inverse_sigmoid
|
||||
|
||||
<br><br>
|
||||
|
||||
## ::: ultralytics.nn.modules.utils.multi_scale_deformable_attn_pytorch
|
||||
|
||||
<br><br>
|
Reference in New Issue
Block a user