Click or drag to resize

GraphFractionalAvgPool Method

https://www.emgu.com/wiki/index.php/Emgu_TF
FractionalAvgPool

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation FractionalAvgPool(
	Output value,
	float[] pooling_ratio,
	bool pseudo_random = false,
	bool overlapping = false,
	bool deterministic = false,
	long seed = 0,
	long seed2 = 0,
	string opName = "FractionalAvgPool"
)

Parameters

value
Type: Emgu.TFOutput
Input to the operation.
pooling_ratio
Type: SystemSingle
pooling ratio
pseudo_random (Optional)
Type: SystemBoolean
pseudo random
overlapping (Optional)
Type: SystemBoolean
overlapping
deterministic (Optional)
Type: SystemBoolean
deterministic
seed (Optional)
Type: SystemInt64
seed
seed2 (Optional)
Type: SystemInt64
seed2
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid). [1] row_pooling_sequence(type: DtInt64). [2] col_pooling_sequence(type: DtInt64).
See Also