MCPcopy Create free account
hub / github.com/CodingBeard/tfkg / AveragePooling3D

Function AveragePooling3D

layer/AveragePooling3D.go:18–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16}
17
18func AveragePooling3D() *LAveragePooling3D {
19 return &LAveragePooling3D{
20 dataFormat: nil,
21 dtype: Float32,
22 name: UniqueName("average_pooling3d"),
23 padding: "valid",
24 poolSize: []interface{}{2, 2, 2},
25 strides: nil,
26 trainable: true,
27 }
28}
29
30func (l *LAveragePooling3D) SetDataFormat(dataFormat interface{}) *LAveragePooling3D {
31 l.dataFormat = dataFormat

Callers

nothing calls this directly

Calls 1

UniqueNameFunction · 0.70

Tested by

no test coverage detected