GlobalAveragePooling1D class
A Global Average Pooling layer for 1D data.
This layer takes a matrix of shape [sequence_length, features] and
computes the average across the sequence dimension, resulting in a single
vector of shape [features].
It is a simple way to aggregate sequence information for a final classification.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- name ↔ String
-
A user-friendly name for the layer (e.g., 'dense', 'lstm').
getter/setter pairoverride-getter
-
parameters
→ List<
Tensor> -
A list of all trainable tensors (weights and biases) in the layer.
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sequenceLength ↔ int
-
getter/setter pair
Methods
-
build(
Tensor input) → void -
Initializes the layer's parameters based on the shape of the first input.
override
-
call(
Tensor input) → Tensor -
The public, callable interface for the layer.
inherited
-
forward(
Tensor input) → Tensor< Vector> -
The core logic of the layer's transformation.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited