ReorgYolo レイヤー¶
バージョン名: ReorgYolo-1
カテゴリー: 物体検出
簡単な説明: ReorgYolo は、ストライドを考慮して入力テンソルを再構成します。
詳細説明: リファレンス
属性:
-
stride
説明: stride は、出力ブロブのカットスロー間の距離です。
値の範囲: 正の整数
タイプ:
int
必須: はい
入力:
1: 任意のタイプと形状
[N, C, H, W]
の 4D 入力テンソル。H
とW
は、stride
とC >= (stride*stride)
で割り切れる必要があります。必須。
出力:
1: 入力テンソルと同じタイプおよび形状
[N, C*stride*stride, H/stride, W/stride]
の 4D 出力テンソル。
例:
<layer id="89" name="reorg" type="ReorgYolo">
<data stride="2"/>
<input>
<port id="0">
<dim>1</dim>
<dim>64</dim>
<dim>26</dim>
<dim>26</dim>
</port>
</input>
<output>
<port id="1" precision="f32">
<dim>1</dim>
<dim>256</dim>
<dim>13</dim>
<dim>13</dim>
</port>
</output>
</layer>