1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
use ;
/// Container for different types of neural network layer weights
///
/// This enum serves as a polymorphic container for the weights of various
/// neural network layer types. Each variant corresponds to a specific layer
/// type and contains the appropriate weight structure for that layer.
///
/// # Variants
///
/// - `Dense` - Contains weights for dense (fully connected) layers
/// - `SimpleRNN` - Contains weights for simple recurrent neural network layers
/// - `LSTM` - Contains weights for long short-term memory layers
/// - `Conv1D` - Contains weights for 1D convolutional layers
/// - `Conv2D` - Contains weights for 2D convolutional layers
/// - `Conv3D` - Contains weights for 3D convolutional layers
/// - `BatchNormalization` - Contains weights for batch normalization layers
/// - `LayerNormalizationLayer` - Contains weights for layer normalization layers
/// - `InstanceNormalizationLayer` - Contains weights for instance normalization layers
/// - `GroupNormalizationLayer` - Contains weights for group normalization layers
/// - `Empty` - Represents a layer with no trainable parameters
/// Weights for a dense (fully connected) neural network layer
///
/// # Fields
///
/// - `weight` - Weight matrix with shape (input_features, output_features)
/// - `bias` - Bias vector with shape (1, output_features)
/// Weights for a simple recurrent neural network layer
///
/// # Fields
///
/// - `kernel` - Weight matrix for input features
/// - `recurrent_kernel` - Weight matrix for recurrent connections
/// - `bias` - Bias vector
/// Weights for a single gate in an LSTM layer
///
/// # Fields
///
/// - `kernel` - Weight matrix for input features
/// - `recurrent_kernel` - Weight matrix for recurrent connections
/// - `bias` - Bias vector for the gate
/// Weights for a Long Short-Term Memory (LSTM) layer
///
/// Contains weights for the four gates that control information flow in an LSTM cell:
/// input gate, forget gate, cell gate, and output gate.
///
/// # Fields
///
/// - `input` - Weights for the input gate, which controls what new information to store
/// - `forget` - Weights for the forget gate, which controls what information to discard
/// - `cell` - Weights for the cell gate, which proposes new cell state values
/// - `output` - Weights for the output gate, which controls what to output
/// Weights for a single gate in a GRU layer
///
/// # Fields
///
/// - `kernel` - Weight matrix for input features
/// - `recurrent_kernel` - Weight matrix for recurrent connections
/// - `bias` - Bias vector for the gate
/// Weights for a Gated Recurrent Unit (GRU) layer
///
/// Contains weights for the three gates that control information flow in a GRU cell:
/// reset gate, update gate, and candidate gate.
///
/// # Fields
///
/// - `reset` - Weights for the reset gate, which controls what information to forget
/// - `update` - Weights for the update gate, which controls how much to update the hidden state
/// - `candidate` - Weights for the candidate gate, which proposes new hidden state values
/// Weights for a 1D convolutional layer
///
/// # Fields
///
/// - `weight` - 3D convolution kernel with shape (output_channels, input_channels, kernel_size)
/// - `bias` - Bias vector with shape (1, output_channels)
/// Weights for a 2D convolutional layer
///
/// # Fields
///
/// - `weight` - 4D convolution kernel with shape (output_channels, input_channels, kernel_height, kernel_width)
/// - `bias` - Bias vector with shape (1, output_channels)
/// Weights for a 3D convolutional layer
///
/// # Fields
///
/// - `weight` - 5D convolution kernel with shape (output_channels, input_channels, kernel_depth, kernel_height, kernel_width)
/// - `bias` - Bias vector with shape (1, output_channels)
/// Weights for a 2D separable convolutional layer
///
/// # Fields
///
/// - `depthwise_weight` - 4D weight tensor for depthwise convolution filters with shape (depth_multiplier, input_channels, kernel_height, kernel_width)
/// - `pointwise_weight` - 4D weight tensor for pointwise (1x1) convolution filters with shape (output_filters, input_channels * depth_multiplier, 1, 1)
/// - `bias` - Bias vector with shape (1, output_filters)
/// Weights for a 2D depthwise convolutional layer
///
/// # Fields
///
/// - `weight` - 4D weight tensor for depthwise filters with shape (depth_multiplier, input_channels, kernel_height, kernel_width)
/// - `bias` - Bias vector with shape (one bias per input channel)
/// Weights for a batch normalization layer
///
/// # Fields
///
/// - `gamma` - Scale parameter (learned during training) that controls the variance of normalized values
/// - `beta` - Shift parameter (learned during training) that controls the mean of normalized values
/// - `running_mean` - Exponentially weighted moving average of batch means (updated during training, used during inference)
/// - `running_var` - Exponentially weighted moving average of batch variances (updated during training, used during inference)
/// Weights for a layer normalization layer
///
/// # Fields
///
/// - `gamma` - Scale parameter (learned during training) that controls the variance of normalized values
/// - `beta` - Shift parameter (learned during training) that controls the mean of normalized values
/// Weights for an instance normalization layer
///
/// # Fields
///
/// - `gamma` - Scale parameter (learned during training) that controls the variance of normalized values
/// - `beta` - Shift parameter (learned during training) that controls the mean of normalized values
/// Weights for a group normalization layer
///
/// # Fields
///
/// - `gamma` - Scale parameter (learned during training) that controls the variance of normalized values
/// - `beta` - Shift parameter (learned during training) that controls the mean of normalized values