-
Notifications
You must be signed in to change notification settings - Fork 85
/
nf_layer_submodule.f90
408 lines (328 loc) · 13.4 KB
/
nf_layer_submodule.f90
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
submodule(nf_layer) nf_layer_submodule
use iso_fortran_env, only: stderr => error_unit
use nf_conv2d_layer, only: conv2d_layer
use nf_dense_layer, only: dense_layer
use nf_flatten_layer, only: flatten_layer
use nf_input1d_layer, only: input1d_layer
use nf_input3d_layer, only: input3d_layer
use nf_maxpool2d_layer, only: maxpool2d_layer
use nf_reshape_layer, only: reshape3d_layer
use nf_optimizers, only: optimizer_base_type
contains
pure module subroutine backward_1d(self, previous, gradient)
implicit none
class(layer), intent(in out) :: self
class(layer), intent(in) :: previous
real, intent(in) :: gradient(:)
! Backward pass from a 1-d layer downstream currently implemented
! only for dense and flatten layers
select type(this_layer => self % p)
type is(dense_layer)
! Upstream layers permitted: input1d, dense, flatten
select type(prev_layer => previous % p)
type is(input1d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(dense_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(flatten_layer)
call this_layer % backward(prev_layer % output, gradient)
end select
type is(flatten_layer)
! Upstream layers permitted: input3d, conv2d, maxpool2d
select type(prev_layer => previous % p)
type is(input3d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(conv2d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(maxpool2d_layer)
call this_layer % backward(prev_layer % output, gradient)
end select
end select
end subroutine backward_1d
pure module subroutine backward_3d(self, previous, gradient)
implicit none
class(layer), intent(in out) :: self
class(layer), intent(in) :: previous
real, intent(in) :: gradient(:,:,:)
! Backward pass from a 3-d layer downstream currently implemented
! only for conv2d and reshape3d layers
select type(this_layer => self % p)
type is(conv2d_layer)
! Upstream layers permitted: conv2d, input3d, maxpool2d, reshape3d
select type(prev_layer => previous % p)
type is(maxpool2d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(input3d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(conv2d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(reshape3d_layer)
call this_layer % backward(prev_layer % output, gradient)
end select
type is(maxpool2d_layer)
! Upstream layers permitted: conv2d, input3d, maxpool2d, reshape3d
select type(prev_layer => previous % p)
type is(conv2d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(maxpool2d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(input3d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(reshape3d_layer)
call this_layer % backward(prev_layer % output, gradient)
end select
type is(reshape3d_layer)
! Upstream layers permitted: input1d, dense, flatten
select type(prev_layer => previous % p)
type is(input1d_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(dense_layer)
call this_layer % backward(prev_layer % output, gradient)
type is(flatten_layer)
call this_layer % backward(prev_layer % output, gradient)
end select
end select
end subroutine backward_3d
pure module subroutine forward(self, input)
implicit none
class(layer), intent(in out) :: self
class(layer), intent(in) :: input
select type(this_layer => self % p)
type is(dense_layer)
! Upstream layers permitted: input1d, dense, flatten
select type(prev_layer => input % p)
type is(input1d_layer)
call this_layer % forward(prev_layer % output)
type is(dense_layer)
call this_layer % forward(prev_layer % output)
type is(flatten_layer)
call this_layer % forward(prev_layer % output)
end select
type is(conv2d_layer)
! Upstream layers permitted: input3d, conv2d, maxpool2d, reshape3d
select type(prev_layer => input % p)
type is(input3d_layer)
call this_layer % forward(prev_layer % output)
type is(conv2d_layer)
call this_layer % forward(prev_layer % output)
type is(maxpool2d_layer)
call this_layer % forward(prev_layer % output)
type is(reshape3d_layer)
call this_layer % forward(prev_layer % output)
end select
type is(maxpool2d_layer)
! Upstream layers permitted: input3d, conv2d, maxpool2d, reshape3d
select type(prev_layer => input % p)
type is(input3d_layer)
call this_layer % forward(prev_layer % output)
type is(conv2d_layer)
call this_layer % forward(prev_layer % output)
type is(maxpool2d_layer)
call this_layer % forward(prev_layer % output)
type is(reshape3d_layer)
call this_layer % forward(prev_layer % output)
end select
type is(flatten_layer)
! Upstream layers permitted: input3d, conv2d, maxpool2d, reshape3d
select type(prev_layer => input % p)
type is(input3d_layer)
call this_layer % forward(prev_layer % output)
type is(conv2d_layer)
call this_layer % forward(prev_layer % output)
type is(maxpool2d_layer)
call this_layer % forward(prev_layer % output)
type is(reshape3d_layer)
call this_layer % forward(prev_layer % output)
end select
type is(reshape3d_layer)
! Upstream layers permitted: input1d, dense, flatten
select type(prev_layer => input % p)
type is(input1d_layer)
call this_layer % forward(prev_layer % output)
type is(dense_layer)
call this_layer % forward(prev_layer % output)
type is(flatten_layer)
call this_layer % forward(prev_layer % output)
end select
end select
end subroutine forward
pure module subroutine get_output_1d(self, output)
implicit none
class(layer), intent(in) :: self
real, allocatable, intent(out) :: output(:)
select type(this_layer => self % p)
type is(input1d_layer)
allocate(output, source=this_layer % output)
type is(dense_layer)
allocate(output, source=this_layer % output)
type is(flatten_layer)
allocate(output, source=this_layer % output)
class default
error stop '1-d output can only be read from an input1d, dense, or flatten layer.'
end select
end subroutine get_output_1d
pure module subroutine get_output_3d(self, output)
implicit none
class(layer), intent(in) :: self
real, allocatable, intent(out) :: output(:,:,:)
select type(this_layer => self % p)
type is(input3d_layer)
allocate(output, source=this_layer % output)
type is(conv2d_layer)
allocate(output, source=this_layer % output)
type is(maxpool2d_layer)
allocate(output, source=this_layer % output)
type is(reshape3d_layer)
allocate(output, source=this_layer % output)
class default
error stop '3-d output can only be read from a conv2d, input3d, maxpool2d, or reshape3d layer.'
end select
end subroutine get_output_3d
impure elemental module subroutine init(self, input)
implicit none
class(layer), intent(in out) :: self
class(layer), intent(in) :: input
if (self % initialized) &
error stop self % name // ' layer is already initialized.'
select type(this_layer => self % p); class default
call this_layer % init(input % layer_shape)
end select
! The shape of conv2d, maxpool2d, or flatten layers is not known
! until we receive an input layer.
select type(this_layer => self % p)
type is(conv2d_layer)
self % layer_shape = shape(this_layer % output)
type is(maxpool2d_layer)
self % layer_shape = shape(this_layer % output)
type is(flatten_layer)
self % layer_shape = shape(this_layer % output)
end select
self % input_layer_shape = input % layer_shape
self % initialized = .true.
end subroutine init
impure elemental module subroutine print_info(self)
implicit none
class(layer), intent(in) :: self
print '("Layer: ", a)', self % name
print '(60("-"))'
if (.not. self % name == 'input') &
print '("Input shape: ", *(i0, 1x))', self % input_layer_shape
print '("Output shape: ", *(i0, 1x))', self % layer_shape
print '("Parameters: ", i0)', self % get_num_params()
if (.not. self % name == 'input') &
print '("Activation: ", a)', self % activation
print *
end subroutine print_info
elemental module function get_num_params(self) result(num_params)
implicit none
class(layer), intent(in) :: self
integer :: num_params
select type (this_layer => self % p)
type is (input1d_layer)
num_params = 0
type is (input3d_layer)
num_params = 0
type is (dense_layer)
num_params = this_layer % get_num_params()
type is (conv2d_layer)
num_params = this_layer % get_num_params()
type is (maxpool2d_layer)
num_params = 0
type is (flatten_layer)
num_params = 0
type is (reshape3d_layer)
num_params = 0
class default
error stop 'Unknown layer type.'
end select
end function get_num_params
module function get_params(self) result(params)
class(layer), intent(in) :: self
real, allocatable :: params(:)
select type (this_layer => self % p)
type is (input1d_layer)
! No parameters to get.
type is (input3d_layer)
! No parameters to get.
type is (dense_layer)
params = this_layer % get_params()
type is (conv2d_layer)
params = this_layer % get_params()
type is (maxpool2d_layer)
! No parameters to get.
type is (flatten_layer)
! No parameters to get.
type is (reshape3d_layer)
! No parameters to get.
class default
error stop 'Unknown layer type.'
end select
end function get_params
module function get_gradients(self) result(gradients)
class(layer), intent(in) :: self
real, allocatable :: gradients(:)
select type (this_layer => self % p)
type is (input1d_layer)
! No gradients to get.
type is (input3d_layer)
! No gradients to get.
type is (dense_layer)
gradients = this_layer % get_gradients()
type is (conv2d_layer)
gradients = this_layer % get_gradients()
type is (maxpool2d_layer)
! No gradients to get.
type is (flatten_layer)
! No gradients to get.
type is (reshape3d_layer)
! No gradients to get.
class default
error stop 'Unknown layer type.'
end select
end function get_gradients
module subroutine set_params(self, params)
class(layer), intent(in out) :: self
real, intent(in) :: params(:)
! Check that the number of parameters is correct.
! This check will still pass if the size(params) == 0 and the layer is a
! non-zero parameter layer; if so, we will warn the user about it below.
if (size(params) /= self % get_num_params()) then
error stop 'layer % set_params: number of parameters does not match.'
end if
! When layer % set_params() is called from network % set_params,
! zero-parameter layers such as input, flatten, reshape, and maxpool layers
! will not be reached because we are guarding against calling
! layer % set_params() with zero-size parameters there.
! However, a user is allowed to call layer % set_params() on a
! zero-parameter layer and pass to it parameters of non-zero size.
! If that happens, we will warn about it here.
select type (this_layer => self % p)
type is (input1d_layer)
! No parameters to set.
write(stderr, '(a)') 'Warning: calling set_params() ' &
// 'on a zero-parameter layer; nothing to do.'
type is (input3d_layer)
! No parameters to set.
write(stderr, '(a)') 'Warning: calling set_params() ' &
// 'on a zero-parameter layer; nothing to do.'
type is (dense_layer)
call this_layer % set_params(params)
type is (conv2d_layer)
call this_layer % set_params(params)
type is (maxpool2d_layer)
! No parameters to set.
write(stderr, '(a)') 'Warning: calling set_params() ' &
// 'on a zero-parameter layer; nothing to do.'
type is (flatten_layer)
! No parameters to set.
write(stderr, '(a)') 'Warning: calling set_params() ' &
// 'on a zero-parameter layer; nothing to do.'
type is (reshape3d_layer)
! No parameters to set.
write(stderr, '(a)') 'Warning: calling set_params() ' &
// 'on a zero-parameter layer; nothing to do.'
class default
error stop 'Unknown layer type.'
end select
end subroutine set_params
end submodule nf_layer_submodule