-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrain.py
More file actions
1637 lines (1390 loc) · 49.9 KB
/
train.py
File metadata and controls
1637 lines (1390 loc) · 49.9 KB
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import tensorflow as tf
import os
import numpy as np
import ecoset
from sklearn.utils.class_weight import compute_sample_weight
import glob
def create_nested_dataset(
directory, size=224, channel_first=False, batch_size=32, not_birds=True
):
"""
Create tf.Data.Dataset objects from the train and val directories, assumes
that we have one directory that has subdirectories so we will have multi-
class classification. The dataset will be resized to size x size. The
dataset will be batched and shuffled.
"""
# List folders in trainDir
basicClasses = os.listdir(directory)
basicClasses.sort()
nBasic = len(basicClasses)
# Find the basic class that has subdirectories and count the number
nSub = 0
for folder in basicClasses:
files = os.listdir(os.path.join(directory, folder))
if os.path.isdir(os.path.join(directory, folder, files[0])):
nSub = len(files) + 1 if not_birds else len(files) # +1 for non-bird
break
imgPaths = []
labels = []
basicCounts = np.array([])
subCounts = np.array([0])
for i, folder in enumerate(basicClasses):
basicCount = 0
# List files in folder
files = os.listdir(os.path.join(directory, folder))
files.sort()
# Check if this directory has directories in it
if os.path.isdir(
os.path.join(directory, folder, files[0])
): # This is probably birds
# List folders in this directory
subClasses = os.listdir(os.path.join(directory, folder))
subClasses.sort()
subCounts = np.array([])
for j, subDir in enumerate(subClasses):
# List files in this directory
files = os.listdir(os.path.join(directory, folder, subDir))
files.sort()
subCount = 0
for file in files:
imgPaths.append(os.path.join(directory, folder, subDir, file))
labels.append((i, j))
basicCount += 1
subCount += 1
subCounts = np.append(subCounts, subCount)
else: # Not birds
for file in files:
imgPaths.append(os.path.join(directory, folder, file))
labels.append((i, nSub))
basicCount += 1
basicCounts = np.append(basicCounts, basicCount)
# Convert imgPaths and labels to tensors
imgPaths = tf.constant(imgPaths)
labels = tf.ragged.constant(labels)
# Add non-bird count
subCounts = np.append(subCounts, np.sum(basicCounts) - np.sum(subCounts))
@tf.function
def _parse_image(x, y):
# Decode image
x = tf.io.read_file(x)
x = tf.io.decode_image(x, channels=3)
# Cast to float
x = tf.cast(x, tf.float32)
# Resize
x = tf.keras.preprocessing.image.smart_resize(x, (size, size))
# Center features
x = 2 * (x / 255 - 0.5)
# Transpose to channel first format
if channel_first:
x = tf.transpose(x, (2, 0, 1))
# One-hot encode labels
basicLabel = tf.one_hot(y[0], nBasic)
if (not not_birds) and tf.equal(y[1], 200):
subLabel = tf.zeros(nSub)
else:
subLabel = tf.one_hot(y[1], nSub)
return x, (basicLabel, subLabel)
ds = (
tf.data.Dataset.from_tensor_slices((imgPaths, labels))
.shuffle(len(imgPaths))
.map(_parse_image, num_parallel_calls=tf.data.AUTOTUNE)
.batch(batch_size)
.prefetch(tf.data.AUTOTUNE)
)
# Calculate category weights
basicWeights = np.sum(basicCounts) / (nBasic * basicCounts)
subWeights = np.sum(subCounts) / (nSub * subCounts)
# Convert weights to tensors
basicWeights = tf.convert_to_tensor(basicWeights, dtype=tf.float32)
subWeights = tf.convert_to_tensor(subWeights, dtype=tf.float32)
# Print class counts
print(
f"Found {len(imgPaths)} images belonging to {nBasic} basic classes and {nSub} subordinate classes."
)
return ds, basicWeights, subWeights
def create_flat_dataset(
directory, size=224, channel_first=False, batch_size=32, filter=None
):
"""
Return a dataset and class weights from directory where all images are
scaled to size x size.
"""
# List folders in directory
classes = os.listdir(directory)
classes.sort()
# Create lists
imgPaths = []
labels = []
classCounts = np.array([])
for i, folder in enumerate(classes):
if (filter is not None) and (filter not in folder):
classCounts = np.append(classCounts, 0)
continue
# List files in folder
files = os.listdir(os.path.join(directory, folder))
files.sort()
# Check if this folder has folders in it
if os.path.isdir(os.path.join(directory, folder, files[0])):
# List folders in this directory
subClasses = os.listdir(os.path.join(directory, folder))
subClasses.sort()
# Count number of images in this folder
imgCount = 0
for subDir in subClasses:
# List files in this directory
files = os.listdir(os.path.join(directory, folder, subDir))
files.sort()
files = [
os.path.join(directory, folder, subDir, file) for file in files
]
imgPaths += files
labels += [i] * len(files)
imgCount += len(files)
classCounts = np.append(classCounts, imgCount)
else:
imgCount = 0
for file in files:
imgPaths.append(os.path.join(directory, folder, file))
labels.append(i)
imgCount += 1
classCounts = np.append(classCounts, imgCount)
# Calculate class weights
if filter is None:
weights = np.sum(classCounts) / (len(classes) * classCounts)
weights = tf.convert_to_tensor(weights, dtype=tf.float32)
else:
weights = None
def _parse_image(x, y):
# Decode image
x = tf.io.read_file(x)
x = tf.io.decode_image(x, channels=3)
# Cast to float
x = tf.cast(x, tf.float32)
# Resize
x = tf.keras.preprocessing.image.smart_resize(x, (size, size))
# Center features
x = 2 * (x / 255 - 0.5)
# Transpose to channel first format
if channel_first:
x = tf.transpose(x, (2, 0, 1))
# One-hot encode labels
y = tf.one_hot(y, len(classes))
return x, y
# Turn lists into tensors
imgPaths = tf.convert_to_tensor(imgPaths, dtype=tf.string)
labels = tf.convert_to_tensor(labels, dtype=tf.int32)
ds = (
tf.data.Dataset.from_tensor_slices((imgPaths, labels))
.shuffle(len(imgPaths))
.map(_parse_image)
.batch(batch_size)
.prefetch(tf.data.AUTOTUNE)
)
# Print dataset info
print(f"Found {len(imgPaths)} images belonging to {len(classes)} classes.")
return ds, weights
def create_twohot_dataset(
directory,
sub_cat,
size=224,
channel_first=False,
batch_size=32,
softmax_labels=False,
):
"""
Return a dataset given a nested directory structure. If the directory
contains images, those images will be assigned to that class as one-hot. If
the directory contains subdirectories, those subdirectories will be treated
as two-hot where the first class is the parent directory and the second
class is the subdirectory.
"""
# List folders in directory
basicClasses = os.listdir(directory)
basicClasses.sort()
nBasic = len(basicClasses)
# Find the index of the subcategory and the number of subordinate categories it has
twoHots = {}
twoHots[basicClasses.index(sub_cat)] = len(
os.listdir(os.path.join(directory, sub_cat))
)
# Get total number of classes
nSub = sum(twoHots.values())
nClasses = nBasic + nSub
labels = []
imgPaths = []
uniqueLabels = []
basicCounts = np.array([])
subCounts = np.array([])
subClassCount = 0
for i, folder in enumerate(basicClasses):
# List files in folder
files = os.listdir(os.path.join(directory, folder))
files.sort()
# Create label
label = [i]
# Check if this is the sub directory
if folder == sub_cat:
# List folders in this directory
subClasses = os.listdir(os.path.join(directory, folder))
subClasses.sort()
for subDir in subClasses:
# List files in this directory
files = os.listdir(os.path.join(directory, folder, subDir))
files.sort()
# Copy label and add an extra label
subLabel = label[:]
subLabel += [nBasic + subClassCount]
subClassCount += 1
# Add to unique labels
uniqueLabels.append(subLabel)
# Add to labels
labels += [subLabel] * len(files)
# Add to subclass counts
subCounts = np.append(subCounts, len(files))
for file in files:
imgPaths.append(os.path.join(directory, folder, subDir, file))
# Add to basic class counts
basicCounts = np.append(basicCounts, np.sum(subCounts))
# Check if this directory has directories in it
elif os.path.isdir(os.path.join(directory, folder, files[0])):
# Add to unique labels
uniqueLabels.append(label)
# List folders in this directory
subClasses = os.listdir(os.path.join(directory, folder))
subClasses.sort()
subImgCounts = 0
for subDir in subClasses:
# List files in this directory
files = os.listdir(os.path.join(directory, folder, subDir))
files.sort()
# Add to labels
labels += [label] * len(files)
for file in files:
imgPaths.append(os.path.join(directory, folder, subDir, file))
subImgCounts += len(files)
# Add to basic class counts
basicCounts = np.append(basicCounts, subImgCounts)
else:
# Add to unique labels
uniqueLabels.append(label)
# Add to labels
labels += [label] * len(files)
# Add to class counts
basicCounts = np.append(basicCounts, len(files))
for file in files:
imgPaths.append(os.path.join(directory, folder, file))
# Convert imgPaths and labels to tensors
imgPaths = tf.constant(imgPaths)
labels = tf.ragged.constant(labels)
counts = np.append(basicCounts, subCounts)
weights = np.sum(counts) / (len(counts) * counts)
weights = tf.convert_to_tensor(weights, dtype=tf.float32)
def _parse_image(x, y):
# Decode image
x = tf.io.read_file(x)
x = tf.io.decode_image(x, channels=3)
# Cast to float
x = tf.cast(x, tf.float32)
# Resize
x = tf.keras.preprocessing.image.smart_resize(x, (size, size))
# Center features
x = tf.divide(x, 255.0)
x = tf.subtract(x, 0.5)
x = tf.multiply(x, 2.0)
# Transpose to channel first format
if channel_first:
x = tf.transpose(x, (2, 0, 1))
# Make one hot label with the first element of y
label = tf.one_hot(y[0], len(counts))
# If y has a second element, turn that into a one hot and add it to y
if tf.size(y) > 1:
label2 = tf.one_hot(y[1], len(counts))
label = tf.add(label, label2)
if softmax_labels:
label = label / 2.0
return x, label
ds = (
tf.data.Dataset.from_tensor_slices((imgPaths, labels))
.shuffle(len(imgPaths))
.map(_parse_image, num_parallel_calls=tf.data.AUTOTUNE)
.batch(batch_size)
.prefetch(tf.data.AUTOTUNE)
)
print(
f"Found {len(imgPaths)} images belonging to {nClasses} classes with {nSub} subclasses in {int(np.sum(subCounts))} images."
)
return ds, weights, twoHots
class weighted_cce(tf.keras.losses.Loss):
def __init__(self, weights, **kwargs):
super().__init__(**kwargs)
self.weights = weights
def call(self, y_true, y_pred, sample_weight=None):
weights = tf.gather(self.weights, tf.argmax(y_true, axis=-1))
return tf.keras.losses.CategoricalCrossentropy()(y_true, y_pred, weights)
def train_ecocub_model(
model,
trainDs,
valDs,
class_weights,
lr,
epochs,
callbacks=[],
initial_train=False,
l2_reg=True,
batch_norm=False,
reuse_weights=True,
):
"""
Take an AlexNet model and perform transfer learning on it to classify the
ecoCUB dataset.
"""
# Freeze all layers
for layer in model.layers:
layer.trainable = False
# Get old weights in fc8
oldWeights, oldBias = model.layers[-4].get_weights()
# Delete the old bird node (index 25)
newWeights = np.delete(oldWeights, 25, axis=-1)
newBias = np.delete(oldBias, 25)
# Add new nodes
weightInit = tf.keras.initializers.TruncatedNormal(stddev=0.005)
newWeights = np.concatenate(
[newWeights, weightInit(shape=(1, 1, 4096, 200)).numpy()], axis=-1
)
newBias = np.concatenate([newBias, np.zeros(200)])
# Get model output at fc dropout layer
x = model.layers[-5].output
if batch_norm:
x = tf.keras.layers.BatchNormalization()(x)
# Add new classification layer
x = tf.keras.layers.Conv2D(
764,
(1, 1),
padding="same",
activation=None,
name="birdFC",
kernel_regularizer=tf.keras.regularizers.l2(0.0005) if l2_reg else None,
kernel_initializer=weightInit,
bias_initializer=tf.keras.initializers.Zeros(),
)(x)
x = tf.keras.layers.GlobalAveragePooling2D()(x)
x = tf.keras.layers.Flatten()(x)
x = tf.keras.layers.Softmax()(x)
# Create new model
model = tf.keras.Model(inputs=model.input, outputs=[x])
if reuse_weights:
# Change birdFC layer weights and bias
model.get_layer("birdFC").set_weights([newWeights, newBias])
# Turn class weights into dictionary
class_weights = {i: class_weights[i] for i in range(len(class_weights))}
if initial_train:
print("Training one epoch to line up clasification layer")
# Train one epoch to line up the new classification layer
model.compile(
optimizer=tf.keras.optimizers.Adam(epsilon=0.1),
loss=tf.keras.losses.CategoricalCrossentropy(),
)
model.summary()
# Fit one epoch
model.fit(
trainDs,
epochs=1,
validation_data=valDs,
class_weight=class_weights,
)
# Unfreeze penultimate layer and add regularizer
model.layers[-6].trainable = True
model.compile(
optimizer=tf.keras.optimizers.Adam(learning_rate=lr, epsilon=0.1),
loss=tf.keras.losses.CategoricalCrossentropy(),
metrics=[
"accuracy",
"top_k_categorical_accuracy",
OneHotBirdAccuracy(top_k=1, name="bird_top1"),
OneHotBirdAccuracy(top_k=5, name="bird_top5"),
],
)
model.summary()
# Train model
fit = model.fit(
trainDs,
epochs=epochs,
validation_data=valDs,
class_weight=class_weights,
callbacks=callbacks,
)
return fit
def train_twohot_model(
model,
trainDs,
valDs,
class_weights,
lr,
epochs,
two_hots,
sub_layers=0,
thaw_layers=["fc7", "fc8", "subFC"],
softmax=True,
l2_reg=True,
callbacks=[],
batch_norm=False,
reuse_weights=True,
):
_, subNodes = list(two_hots.items())[0]
# Get the output of the previous classification layer
basicOutput = model.layers[-3].output
# Get model output at fc dropout layer
x = model.layers[-4].output
# Add new classification layer
if batch_norm:
x = tf.keras.layers.BatchNormalization()(x)
weightInit = tf.keras.initializers.TruncatedNormal(stddev=0.005)
if sub_layers > 0:
# Add extra layers
for i in range(sub_layers):
x = tf.keras.layers.Conv2D(
4096,
(1, 1),
padding="same",
activation="relu",
kernel_regularizer=tf.keras.regularizers.l2(0.0005) if l2_reg else None,
name=f"sub{i}",
)(x)
# Add layer to unfreeze
thaw_layers.append(f"sub{i}")
x = tf.keras.layers.Conv2D(
subNodes,
(1, 1),
padding="same",
activation=None,
name="subFC",
kernel_initializer=weightInit,
kernel_regularizer=tf.keras.regularizers.l2(0.0005) if l2_reg else None,
)(x)
x = tf.keras.layers.Concatenate()([basicOutput, x])
x = tf.keras.layers.GlobalAveragePooling2D()(x)
x = tf.keras.layers.Flatten()(x)
if softmax:
x = tf.keras.layers.Softmax()(x)
loss = tf.keras.losses.CategoricalCrossentropy()
else:
x = tf.keras.layers.Activation("sigmoid")(x)
loss = tf.keras.losses.BinaryCrossentropy()
# Create new model
model = tf.keras.Model(inputs=model.input, outputs=[x])
# Reinitialize fc8 weights if needed
if not reuse_weights:
# Remake initializer for weights to avoid identical values
weightInit = tf.keras.initializers.TruncatedNormal(stddev=0.005)
oldWeights, oldBias = model.get_layer("fc8").get_weights()
newWeights = weightInit(tf.shape(oldWeights))
newBias = tf.keras.initializers.Zeros()(tf.shape(oldBias))
model.get_layer("fc8").set_weights([newWeights, newBias])
# Freeze all layers
for layer in model.layers:
layer.trainable = False
for layer in thaw_layers:
model.get_layer(layer).trainable = True
# Compile
model.compile(
optimizer=tf.keras.optimizers.Adam(
learning_rate=lr, epsilon=0.1, weight_decay=0.0005
),
loss=loss,
metrics=[
"accuracy" if softmax else tf.keras.metrics.BinaryAccuracy(),
"top_k_categorical_accuracy",
TwoHotSubAccuracy(sub_nodes=subNodes, top_k=1, name="sub_top1"),
TwoHotSubAccuracy(sub_nodes=subNodes, top_k=5, name="sub_top5"),
],
)
model.summary()
# Turn class weights into dictionary
class_weights = {i: class_weights[i] for i in range(len(class_weights))}
# Train model
fit = model.fit(
trainDs,
epochs=epochs,
validation_data=valDs,
callbacks=callbacks,
class_weight=class_weights,
)
return fit
def train_branch_model(
model,
trainDs,
valDs,
basic_weights,
sub_weights,
lr,
epochs,
branch_layer="fc7",
loss_weights=[1, 1],
thaw_layers=["fc7", "fc8", "birdFC"],
l2_reg=True,
callbacks=[],
non_bird_node=True,
):
"""
Take an Alexmodel and modify it to have a branch for basic and subordinate
classification. The branch is added after the layer specified by layer_idx.
"""
# Get output
outputs = model.outputs
# Get the layer to add to
layer = model.get_layer(branch_layer)
print(f"Adding branch to layer {layer.name}")
x = layer.output
# Add expert branch
subNodes = 201 if non_bird_node else 200
x = tf.keras.layers.Conv2D(
subNodes,
5,
activation=None,
padding="same",
name="birdFC",
kernel_initializer=tf.keras.initializers.TruncatedNormal(stddev=0.005),
bias_initializer=tf.keras.initializers.Zeros(),
kernel_regularizer=tf.keras.regularizers.l2(0.0005) if l2_reg else None,
)(x)
x = tf.keras.layers.GlobalAveragePooling2D()(x)
x = tf.keras.layers.Flatten()(x)
x = tf.keras.layers.Softmax(name="birdSub")(x)
# Create new model
model = tf.keras.Model(inputs=model.input, outputs=outputs + [x])
# Freeze all layers
for layer in model.layers:
layer.trainable = False
# Thaw layers
for layer in thaw_layers:
model.get_layer(layer).trainable = True
if basic_weights is None or sub_weights is None:
model.compile(
optimizer=tf.keras.optimizers.Adam(lr=lr, epsilon=0.1),
loss=[
tf.keras.losses.CategoricalCrossentropy(),
tf.keras.losses.CategoricalCrossentropy(),
],
metrics=["accuracy", "top_k_categorical_accuracy"],
loss_weights=loss_weights,
)
else:
model.compile(
optimizer=tf.keras.optimizers.Adam(learning_rate=lr, epsilon=0.1),
loss=[
weighted_cce(basic_weights),
weighted_cce(sub_weights),
],
metrics=["accuracy", "top_k_categorical_accuracy"],
loss_weights=loss_weights,
)
model.summary()
# Train model
fit = model.fit(
trainDs,
epochs=epochs,
validation_data=valDs,
callbacks=callbacks,
)
return fit
def train_control_model(
model,
trainDs,
valDs,
lr,
epochs,
basic_weights=None,
thaw_layers=["fc7", "fc8"],
callbacks=[],
):
"""
Train a model for a few extra epochs without any manipulations to the
original model.
"""
# Freeze all layers
for layer in model.layers:
layer.trainable = False
# Thaw layers
if "all" in thaw_layers:
for layer in model.layers:
layer.trainable = True
else:
for layer in thaw_layers:
model.get_layer(layer).trainable = True
if basic_weights is None:
model.compile(
optimizer=tf.keras.optimizers.Adam(
learning_rate=lr, epsilon=0.1, weight_decay=0.0005
),
loss=tf.keras.losses.CategoricalCrossentropy(),
metrics=["accuracy", "top_k_categorical_accuracy"],
)
else:
model.compile(
optimizer=tf.keras.optimizers.Adam(
learning_rate=lr, epsilon=0.1, weight_decay=0.0005
),
loss=weighted_cce(basic_weights),
metrics=["accuracy", "top_k_categorical_accuracy"],
)
# Train model
fit = model.fit(
trainDs,
epochs=epochs,
validation_data=valDs,
callbacks=callbacks,
)
return fit, model
def train_finetune_model(
model,
trainDs,
valDs,
lr,
epochs,
basic_weights=None,
thaw_layers=["fc7", "fc8"],
callbacks=[],
):
"""
Train a model following the basic fine tuning procedures.
"""
# Freeze all layers
for layer in model.layers:
layer.trainable = False
# Thaw layers
if "all" in thaw_layers:
for layer in model.layers:
layer.trainable = True
else:
for layer in thaw_layers:
model.get_layer(layer).trainable = True
if basic_weights is None:
model.compile(
optimizer=tf.keras.optimizers.Adam(
learning_rate=lr, epsilon=0.1, weight_decay=0.0005
),
loss=tf.keras.losses.CategoricalCrossentropy(),
metrics=["accuracy", "top_k_categorical_accuracy"],
)
else:
model.compile(
optimizer=tf.keras.optimizers.Adam(
learning_rate=lr, epsilon=0.1, weight_decay=0.0005
),
loss=weighted_cce(basic_weights),
metrics=["accuracy", "top_k_categorical_accuracy"],
)
# Train model
fit = model.fit(
trainDs,
epochs=epochs,
validation_data=valDs,
callbacks=callbacks,
)
return fit, model
class TwoHotSubAccuracy(tf.keras.metrics.Metric):
def __init__(self, sub_nodes=200, top_k=1, name="sub_accuracy", **kwargs):
super(TwoHotSubAccuracy, self).__init__(name=name, **kwargs)
self.top_k = top_k
self.sub_nodes = sub_nodes
self.correct = self.add_weight(name="correct", initializer="zeros")
self.count = self.add_weight(name="count", initializer="zeros")
@tf.function
def update_state(self, y_true, y_pred, sample_weight=None):
# Reshape to ensure a batch dimensions
y_true = tf.reshape(y_true, (-1, y_true.shape[-1]))
y_pred = tf.reshape(y_pred, (-1, y_pred.shape[-1]))
# Only keep the last subordinate nodes
y_true = y_true[:, -self.sub_nodes :]
y_pred = y_pred[:, -self.sub_nodes :]
# Find the samples with two-hot
trueSums = tf.reduce_sum(y_true, axis=1)
subIndices = tf.where(tf.greater(trueSums, 0))
subIndices = tf.squeeze(subIndices)
if tf.size(subIndices) != 0:
# Get the true and predicted labels for those samples
y_true = tf.gather(y_true, subIndices)
y_pred = tf.gather(y_pred, subIndices)
# Get labels
y_true = tf.argmax(y_true, axis=-1, output_type=tf.int32)
y_pred = tf.math.top_k(y_pred, k=self.top_k, sorted=True).indices
y_pred = tf.transpose(y_pred)
# Calculate accuracy
correct = tf.cast(tf.equal(y_pred, y_true), tf.float32)
self.correct.assign_add(tf.reduce_sum(correct))
self.count.assign_add(tf.cast(tf.size(subIndices), tf.float32))
@tf.function
def result(self):
return (
self.correct / self.count
if self.count != 0
else tf.constant(0, dtype=tf.float32)
)
class OneHotBirdAccuracy(tf.keras.metrics.Metric):
def __init__(self, top_k=1, name="bird_accuracy", **kwargs):
super(OneHotBirdAccuracy, self).__init__(name=name, **kwargs)
self.top_k = top_k
self.correct = self.add_weight(name="correct", initializer="zeros")
self.count = self.add_weight(name="count", initializer="zeros")
@tf.function
def update_state(self, y_true, y_pred, sample_weight=None):
# Only keep the last 200 classes
y_true = y_true[:, -200:]
y_pred = y_pred[:, -200:]
# Find the samples that ar birds
trueSums = tf.reduce_sum(y_true, axis=-1)
birdIndices = tf.where(tf.equal(trueSums, 1))
birdIndices = tf.squeeze(birdIndices)
if tf.size(birdIndices) != 0:
# Get the true and predicted labels for those samples
y_true = tf.gather(y_true, birdIndices)
y_pred = tf.gather(y_pred, birdIndices)
# Get labels
y_true = tf.argmax(y_true, axis=-1, output_type=tf.int32)
y_pred = tf.math.top_k(y_pred, k=self.top_k, sorted=True).indices
y_pred = tf.transpose(y_pred)
# Calculate accuracy
correct = tf.cast(tf.equal(y_pred, y_true), tf.float32)
self.correct.assign_add(tf.reduce_sum(correct))
self.count.assign_add(tf.cast(tf.size(birdIndices), tf.float32))
@tf.function
def result(self):
return (
self.correct / self.count
if self.count != 0
else tf.constant(0, dtype=tf.float32)
)
def validate_sub_dataset(model, directory, category):
"""
Test the accuracy of the model on the subordinate category contained in
the directory.
"""
# list folders inside directory (and sort)
classes = os.listdir(directory)
classes.sort()
# Find what index the category is
categoryIdx = classes.index(category)
# List the subclasses inside category
subClasses = os.listdir(os.path.join(directory, category))
subClasses.sort()
# Create a flat dataset from the category
ds, _ = create_flat_dataset(
os.path.join(directory, category),
size=224,
channel_first=False,
batch_size=32,
)
# Loop through batches
nCorrect = 0
nIncorrect = 0
incorrectCats = np.empty(0)
for x, y in ds:
y = tf.argmax(y, axis=-1)
# Predict x
y_pred = model.predict(x)
# Check how many match the category index
correct = tf.equal(tf.argmax(y_pred, axis=-1), categoryIdx)
nCorrect += np.sum(correct)
nIncorrect += np.sum(~correct)
# If there are any incorrect
if np.sum(~correct) > 0:
# Get the incorrect categories
incorrectCats = np.append(incorrectCats, y[~correct])
# Print results
print(f"Correct: {nCorrect}")
print(f"Incorrect: {nIncorrect}")
print(f"Accuracy: {nCorrect / (nCorrect + nIncorrect)}")
# Get counts of incorrectCats
uniqueVals, counts = np.unique(incorrectCats, return_counts=True)
uniqueVals = uniqueVals.astype(int)
# Sort by counts
sortIdx = np.argsort(counts)[::-1]
uniqueVals = uniqueVals[sortIdx]
counts = counts[sortIdx]
# Print
print("Incorrect counts:")
for val, count in zip(uniqueVals, counts):
print(f"{subClasses[val]}: {count}")
return uniqueVals, counts
def create_level_dataset(
directory, level, size=224, channel_first=False, batch_size=32
):
"""
Return a dataset given a nested directory structure to specifically train at
a specific level.
"""
# Go through the nested directory and fill in categoryLevels
categoryLevels = {}
# Fill in level 1 first
tmp = [
file for file in glob.glob(os.path.join(directory, "*")) if os.path.isdir(file)
]
tmp.sort()
categoryLevels[1] = tmp