This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 122
/
main.py
448 lines (407 loc) · 14 KB
/
main.py
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
# -*- coding: utf-8 -*-
"""
DEEP LEARNING FOR HYPERSPECTRAL DATA.
This script allows the user to run several deep models (and SVM baselines)
against various hyperspectral datasets. It is designed to quickly benchmark
state-of-the-art CNNs on various public hyperspectral datasets.
This code is released under the GPLv3 license for non-commercial and research
purposes only.
For commercial use, please contact the authors.
"""
# Python 2/3 compatiblity
from __future__ import print_function
from __future__ import division
# Torch
import torch
import torch.utils.data as data
from torchsummary import summary
# Numpy, scipy, scikit-image, spectral
import numpy as np
import sklearn.svm
import sklearn.model_selection
from skimage import io
# Visualization
import seaborn as sns
import visdom
import os
from utils import (
metrics,
convert_to_color_,
convert_from_color_,
display_dataset,
display_predictions,
explore_spectrums,
plot_spectrums,
sample_gt,
build_dataset,
show_results,
compute_imf_weights,
get_device,
)
from datasets import get_dataset, HyperX, open_file, DATASETS_CONFIG
from models import get_model, train, test, save_model
import argparse
dataset_names = [
v["name"] if "name" in v.keys() else k for k, v in DATASETS_CONFIG.items()
]
# Argument parser for CLI interaction
parser = argparse.ArgumentParser(
description="Run deep learning experiments on" " various hyperspectral datasets"
)
parser.add_argument(
"--dataset", type=str, default=None, choices=dataset_names, help="Dataset to use."
)
parser.add_argument(
"--model",
type=str,
default=None,
help="Model to train. Available:\n"
"SVM (linear), "
"SVM_grid (grid search on linear, poly and RBF kernels), "
"baseline (fully connected NN), "
"hu (1D CNN), "
"hamida (3D CNN + 1D classifier), "
"lee (3D FCN), "
"chen (3D CNN), "
"li (3D CNN), "
"he (3D CNN), "
"luo (3D CNN), "
"sharma (2D CNN), "
"boulch (1D semi-supervised CNN), "
"liu (3D semi-supervised CNN), "
"mou (1D RNN)",
)
parser.add_argument(
"--folder",
type=str,
help="Folder where to store the "
"datasets (defaults to the current working directory).",
default="./Datasets/",
)
parser.add_argument(
"--cuda",
type=int,
default=-1,
help="Specify CUDA device (defaults to -1, which learns on CPU)",
)
parser.add_argument("--runs", type=int, default=1, help="Number of runs (default: 1)")
parser.add_argument(
"--restore",
type=str,
default=None,
help="Weights to use for initialization, e.g. a checkpoint",
)
# Dataset options
group_dataset = parser.add_argument_group("Dataset")
group_dataset.add_argument(
"--training_sample",
type=float,
default=10,
help="Percentage of samples to use for training (default: 10%%)",
)
group_dataset.add_argument(
"--sampling_mode",
type=str,
help="Sampling mode" " (random sampling or disjoint, default: random)",
default="random",
)
group_dataset.add_argument(
"--train_set",
type=str,
default=None,
help="Path to the train ground truth (optional, this "
"supersedes the --sampling_mode option)",
)
group_dataset.add_argument(
"--test_set",
type=str,
default=None,
help="Path to the test set (optional, by default "
"the test_set is the entire ground truth minus the training)",
)
# Training options
group_train = parser.add_argument_group("Training")
group_train.add_argument(
"--epoch",
type=int,
help="Training epochs (optional, if" " absent will be set by the model)",
)
group_train.add_argument(
"--patch_size",
type=int,
help="Size of the spatial neighbourhood (optional, if "
"absent will be set by the model)",
)
group_train.add_argument(
"--lr", type=float, help="Learning rate, set by the model if not specified."
)
group_train.add_argument(
"--class_balancing",
action="store_true",
help="Inverse median frequency class balancing (default = False)",
)
group_train.add_argument(
"--batch_size",
type=int,
help="Batch size (optional, if absent will be set by the model",
)
group_train.add_argument(
"--test_stride",
type=int,
default=1,
help="Sliding window step stride during inference (default = 1)",
)
# Data augmentation parameters
group_da = parser.add_argument_group("Data augmentation")
group_da.add_argument(
"--flip_augmentation", action="store_true", help="Random flips (if patch_size > 1)"
)
group_da.add_argument(
"--radiation_augmentation",
action="store_true",
help="Random radiation noise (illumination)",
)
group_da.add_argument(
"--mixture_augmentation", action="store_true", help="Random mixes between spectra"
)
parser.add_argument(
"--with_exploration", action="store_true", help="See data exploration visualization"
)
parser.add_argument(
"--download",
type=str,
default=None,
nargs="+",
choices=dataset_names,
help="Download the specified datasets and quits.",
)
args = parser.parse_args()
CUDA_DEVICE = get_device(args.cuda)
# % of training samples
SAMPLE_PERCENTAGE = args.training_sample
# Data augmentation ?
FLIP_AUGMENTATION = args.flip_augmentation
RADIATION_AUGMENTATION = args.radiation_augmentation
MIXTURE_AUGMENTATION = args.mixture_augmentation
# Dataset name
DATASET = args.dataset
# Model name
MODEL = args.model
# Number of runs (for cross-validation)
N_RUNS = args.runs
# Spatial context size (number of neighbours in each spatial direction)
PATCH_SIZE = args.patch_size
# Add some visualization of the spectra ?
DATAVIZ = args.with_exploration
# Target folder to store/download/load the datasets
FOLDER = args.folder
# Number of epochs to run
EPOCH = args.epoch
# Sampling mode, e.g random sampling
SAMPLING_MODE = args.sampling_mode
# Pre-computed weights to restore
CHECKPOINT = args.restore
# Learning rate for the SGD
LEARNING_RATE = args.lr
# Automated class balancing
CLASS_BALANCING = args.class_balancing
# Training ground truth file
TRAIN_GT = args.train_set
# Testing ground truth file
TEST_GT = args.test_set
TEST_STRIDE = args.test_stride
if args.download is not None and len(args.download) > 0:
for dataset in args.download:
get_dataset(dataset, target_folder=FOLDER)
quit()
viz = visdom.Visdom(env=DATASET + " " + MODEL)
if not viz.check_connection:
print("Visdom is not connected. Did you run 'python -m visdom.server' ?")
hyperparams = vars(args)
# Load the dataset
img, gt, LABEL_VALUES, IGNORED_LABELS, RGB_BANDS, palette = get_dataset(DATASET, FOLDER)
# Number of classes
N_CLASSES = len(LABEL_VALUES)
# Number of bands (last dimension of the image tensor)
N_BANDS = img.shape[-1]
# Parameters for the SVM grid search
SVM_GRID_PARAMS = [
{"kernel": ["rbf"], "gamma": [1e-1, 1e-2, 1e-3], "C": [1, 10, 100, 1000]},
{"kernel": ["linear"], "C": [0.1, 1, 10, 100, 1000]},
{"kernel": ["poly"], "degree": [3], "gamma": [1e-1, 1e-2, 1e-3]},
]
if palette is None:
# Generate color palette
palette = {0: (0, 0, 0)}
for k, color in enumerate(sns.color_palette("hls", len(LABEL_VALUES) - 1)):
palette[k + 1] = tuple(np.asarray(255 * np.array(color), dtype="uint8"))
invert_palette = {v: k for k, v in palette.items()}
def convert_to_color(x):
return convert_to_color_(x, palette=palette)
def convert_from_color(x):
return convert_from_color_(x, palette=invert_palette)
# Instantiate the experiment based on predefined networks
hyperparams.update(
{
"n_classes": N_CLASSES,
"n_bands": N_BANDS,
"ignored_labels": IGNORED_LABELS,
"device": CUDA_DEVICE,
}
)
hyperparams = dict((k, v) for k, v in hyperparams.items() if v is not None)
# Show the image and the ground truth
display_dataset(img, gt, RGB_BANDS, LABEL_VALUES, palette, viz)
color_gt = convert_to_color(gt)
if DATAVIZ:
# Data exploration : compute and show the mean spectrums
mean_spectrums = explore_spectrums(
img, gt, LABEL_VALUES, viz, ignored_labels=IGNORED_LABELS
)
plot_spectrums(mean_spectrums, viz, title="Mean spectrum/class")
results = []
# run the experiment several times
for run in range(N_RUNS):
if TRAIN_GT is not None and TEST_GT is not None:
train_gt = open_file(TRAIN_GT)
test_gt = open_file(TEST_GT)
elif TRAIN_GT is not None:
train_gt = open_file(TRAIN_GT)
test_gt = np.copy(gt)
w, h = test_gt.shape
test_gt[(train_gt > 0)[:w, :h]] = 0
elif TEST_GT is not None:
test_gt = open_file(TEST_GT)
else:
# Sample random training spectra
train_gt, test_gt = sample_gt(gt, SAMPLE_PERCENTAGE, mode=SAMPLING_MODE)
print(
"{} samples selected (over {})".format(
np.count_nonzero(train_gt), np.count_nonzero(gt)
)
)
print(
"Running an experiment with the {} model".format(MODEL),
"run {}/{}".format(run + 1, N_RUNS),
)
display_predictions(convert_to_color(train_gt), viz, caption="Train ground truth")
display_predictions(convert_to_color(test_gt), viz, caption="Test ground truth")
if MODEL == "SVM_grid":
print("Running a grid search SVM")
# Grid search SVM (linear and RBF)
X_train, y_train = build_dataset(img, train_gt, ignored_labels=IGNORED_LABELS)
class_weight = "balanced" if CLASS_BALANCING else None
clf = sklearn.svm.SVC(class_weight=class_weight)
clf = sklearn.model_selection.GridSearchCV(
clf, SVM_GRID_PARAMS, verbose=5, n_jobs=4
)
clf.fit(X_train, y_train)
print("SVM best parameters : {}".format(clf.best_params_))
prediction = clf.predict(img.reshape(-1, N_BANDS))
save_model(clf, MODEL, DATASET)
prediction = prediction.reshape(img.shape[:2])
elif MODEL == "SVM":
X_train, y_train = build_dataset(img, train_gt, ignored_labels=IGNORED_LABELS)
class_weight = "balanced" if CLASS_BALANCING else None
clf = sklearn.svm.SVC(class_weight=class_weight)
clf.fit(X_train, y_train)
save_model(clf, MODEL, DATASET)
prediction = clf.predict(img.reshape(-1, N_BANDS))
prediction = prediction.reshape(img.shape[:2])
elif MODEL == "SGD":
X_train, y_train = build_dataset(img, train_gt, ignored_labels=IGNORED_LABELS)
X_train, y_train = sklearn.utils.shuffle(X_train, y_train)
scaler = sklearn.preprocessing.StandardScaler()
X_train = scaler.fit_transform(X_train)
class_weight = "balanced" if CLASS_BALANCING else None
clf = sklearn.linear_model.SGDClassifier(
class_weight=class_weight, learning_rate="optimal", tol=1e-3, average=10
)
clf.fit(X_train, y_train)
save_model(clf, MODEL, DATASET)
prediction = clf.predict(scaler.transform(img.reshape(-1, N_BANDS)))
prediction = prediction.reshape(img.shape[:2])
elif MODEL == "nearest":
X_train, y_train = build_dataset(img, train_gt, ignored_labels=IGNORED_LABELS)
X_train, y_train = sklearn.utils.shuffle(X_train, y_train)
class_weight = "balanced" if CLASS_BALANCING else None
clf = sklearn.neighbors.KNeighborsClassifier(weights="distance")
clf = sklearn.model_selection.GridSearchCV(
clf, {"n_neighbors": [1, 3, 5, 10, 20]}, verbose=5, n_jobs=4
)
clf.fit(X_train, y_train)
clf.fit(X_train, y_train)
save_model(clf, MODEL, DATASET)
prediction = clf.predict(img.reshape(-1, N_BANDS))
prediction = prediction.reshape(img.shape[:2])
else:
if CLASS_BALANCING:
weights = compute_imf_weights(train_gt, N_CLASSES, IGNORED_LABELS)
hyperparams["weights"] = torch.from_numpy(weights)
# Neural network
model, optimizer, loss, hyperparams = get_model(MODEL, **hyperparams)
# Split train set in train/val
train_gt, val_gt = sample_gt(train_gt, 0.95, mode="random")
# Generate the dataset
train_dataset = HyperX(img, train_gt, **hyperparams)
train_loader = data.DataLoader(
train_dataset,
batch_size=hyperparams["batch_size"],
# pin_memory=hyperparams['device'],
shuffle=True,
)
val_dataset = HyperX(img, val_gt, **hyperparams)
val_loader = data.DataLoader(
val_dataset,
# pin_memory=hyperparams['device'],
batch_size=hyperparams["batch_size"],
)
print(hyperparams)
print("Network :")
with torch.no_grad():
for input, _ in train_loader:
break
summary(model.to(hyperparams["device"]), input.size()[1:])
# We would like to use device=hyperparams['device'] altough we have
# to wait for torchsummary to be fixed first.
if CHECKPOINT is not None:
model.load_state_dict(torch.load(CHECKPOINT))
try:
train(
model,
optimizer,
loss,
train_loader,
hyperparams["epoch"],
scheduler=hyperparams["scheduler"],
device=hyperparams["device"],
supervision=hyperparams["supervision"],
val_loader=val_loader,
display=viz,
)
except KeyboardInterrupt:
# Allow the user to stop the training
pass
probabilities = test(model, img, hyperparams)
prediction = np.argmax(probabilities, axis=-1)
run_results = metrics(
prediction,
test_gt,
ignored_labels=hyperparams["ignored_labels"],
n_classes=N_CLASSES,
)
mask = np.zeros(gt.shape, dtype="bool")
for l in IGNORED_LABELS:
mask[gt == l] = True
prediction[mask] = 0
color_prediction = convert_to_color(prediction)
display_predictions(
color_prediction,
viz,
gt=convert_to_color(test_gt),
caption="Prediction vs. test ground truth",
)
results.append(run_results)
show_results(run_results, viz, label_values=LABEL_VALUES)
if N_RUNS > 1:
show_results(results, viz, label_values=LABEL_VALUES, agregated=True)