Tile.md 644 字节
Newer Older
S
sunyanfang01 已提交
1 2 3 4 5 6 7 8 9 10
## Tile


### [Tile](http://caffe.berkeleyvision.org/tutorial/layers/tile.html)
```
layer {
    name: "tile"
    type: "Tile"
    bottom: "data"
    top: "concat"
S
SunAhong1993 已提交
11
    tile_param {
S
sunyanfang01 已提交
12 13 14 15 16 17 18
        axis: 1
        tiles: 2
    }
}
```


S
SunAhong1993 已提交
19
### [paddle.fluid.layers.concat](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/layers_cn.html#permalink-219-concat)
S
sunyanfang01 已提交
20 21 22 23 24 25 26 27 28
```python
paddle.fluid.layers.concat(
    x, 
    expand_times, 
    name=None
)
```  

### 功能差异
J
Jason 已提交
29
#### 输入参数
S
sunyanfang01 已提交
30 31
Caffe:只能在一个维度上进行复制。                    
PaddlePaddle:`expand_times`为一个list或tuple,它存放的是每个维度复制的倍数。