-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuperpixels_GCN.py
More file actions
314 lines (240 loc) · 12 KB
/
Copy pathsuperpixels_GCN.py
File metadata and controls
314 lines (240 loc) · 12 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
import os
import torch
import numpy as np
import cv2
from pycocotools.coco import COCO
from skimage.segmentation import slic
from skimage.future import graph
import networkx as nx
import matplotlib.pyplot as plt
from torch_geometric.data import Data, DataLoader
import torch.nn.functional as F
from torch_geometric.nn import GCNConv
from pycocotools.coco import COCO
import json
import torch_geometric
import time
import pandas as pd
import matplotlib.pyplot as plt
# Path to the data
data_dir = './Data/'
annotation_file_training = data_dir + 'stuff_train2017.json'
annotation_file_val = data_dir + 'stuff_val2017.json'
image_dir_training = data_dir + 'train2017/'
image_dir_val = data_dir + 'val2017/'
segmentation_dir = data_dir + 'segmentations/'
val_segmentation_dir = data_dir + 'val_segmentations/'
def load_graphs_from_json(directory):
dataset = []
for filename in os.listdir(directory):
if filename.endswith('.json'):
path = os.path.join(directory, filename)
with open(path, 'r') as f:
graph_data = json.load(f)
nx_graph = nx.node_link_graph(graph_data)
x = torch.tensor([nx_graph.nodes[node]['features'] for node in nx_graph.nodes], dtype=torch.float)
y = torch.tensor([max(nx_graph.nodes[node]['label']) for node in nx_graph.nodes], dtype=torch.long) # Assuming one-hot encoding
edge_index_list = [[src, dest] for src, dest in nx_graph.edges() if src < len(nx_graph.nodes) and dest < len(nx_graph.nodes)]
edge_index = torch.tensor(edge_index_list, dtype=torch.long).t().contiguous()
if edge_index.size(1) == 0: # Skip if no edges
continue
dataset.append(Data(x=x, edge_index=edge_index, y=y))
return dataset
# GCN Model Definition
class GCN(torch.nn.Module):
def __init__(self, num_features, num_classes):
super(GCN, self).__init__()
self.conv1 = GCNConv(num_features, 16)
self.conv2 = GCNConv(16, num_classes)
def forward(self, data):
x, edge_index = data.x, data.edge_index
x = self.conv1(x, edge_index)
x = F.relu(x)
x = F.dropout(x, training=self.training)
x = self.conv2(x, edge_index)
return F.log_softmax(x, dim=1)
# Setup Training and Validation Procedures
def train(model, train_loader, optimizer):
model.train()
total_loss = 0
for data in train_loader:
data = data.to(device)
optimizer.zero_grad()
out = model(data)
loss = F.nll_loss(out, data.y, reduction='mean') # `data.y` should match the output shape
loss.backward()
optimizer.step()
total_loss += loss.item()
# print("Output shape:", out.shape)
# print("Labels shape:", data.y.shape)
return total_loss / len(train_loader)
def validate(model, val_loader):
model.eval()
correct = 0
total = 0 # Total number of nodes processed
for data in val_loader:
data = data.to(device)
out = model(data)
pred = out.max(1)[1]
correct += pred.eq(data.y).sum().item()
total += data.y.size(0) # Update total count
if total == 0:
return 0 # Avoid division by zero
accuracy = 100 * correct / total # Calculate as percentage
print(f'Validating: Total Nodes={total}, Correct Predictions={correct}, Accuracy={accuracy}%')
return accuracy
def print_epoch_stats(epoch, loss, accuracy, epoch_time, train_size, val_size):
print(f'Epoch {epoch:2d}: '
f'Train Loss: {loss:.4f}, '
f'Validation Accuracy: {accuracy:.2f}%, '
f'Epoch Time: {epoch_time:.2f}s, '
f'Train Size: {train_size}, '
f'Validation Size: {val_size}')
# Define a function to plot your results with detailed configuration information
def plot_results(hyperparameters, train_losses, val_accuracies):
for i, (params, train_loss, val_accuracy) in enumerate(zip(hyperparameters, train_losses, val_accuracies)):
fig, axs = plt.subplots(1, 2, figsize=(14, 6))
# Plot training loss
axs[0].plot(range(1, len(train_loss) + 1), train_loss, label='Train Loss', color='blue')
axs[0].set_title(f'Configuration {i+1} - Training Loss')
axs[0].set_xlabel('Epoch')
axs[0].set_ylabel('Loss')
axs[0].legend()
axs[0].grid(True)
# Plot validation accuracy
axs[1].plot(range(1, len(val_accuracy) + 1), val_accuracy, label='Validation Accuracy', color='orange')
axs[1].set_title(f'Configuration {i+1} - Validation Accuracy')
axs[1].set_xlabel('Epoch')
axs[1].set_ylabel('Accuracy (%)')
axs[1].legend()
axs[1].grid(True)
# Mark the highest validation accuracy and its corresponding training loss
max_val_acc_index = val_accuracy.index(max(val_accuracy))
max_val_acc = max(val_accuracy)
corresponding_train_loss = train_loss[max_val_acc_index]
axs[1].plot(max_val_acc_index + 1, max_val_acc, 'ro') # red dot
axs[0].plot(max_val_acc_index + 1, corresponding_train_loss, 'go') # green dot
axs[1].annotate(f'({max_val_acc_index + 1}, {max_val_acc:.2f}%)',
xy=(max_val_acc_index + 1, max_val_acc), xytext=(3, 3),
textcoords="offset points", ha='left', va='bottom', color='red')
axs[0].annotate(f'({max_val_acc_index + 1}, {corresponding_train_loss:.4f})',
xy=(max_val_acc_index + 1, corresponding_train_loss), xytext=(3, -15),
textcoords="offset points", ha='left', va='top', color='green')
# Configuration details as text below the graphs
config_details = '\n'.join(f'{key}: {value}' for key, value in params.items())
plt.figtext(0.5, 0.01, f"Configuration {i+1} Details:\n{config_details}",
ha="center", fontsize=9, bbox={"facecolor":"orange", "alpha":0.5, "pad":5})
plt.tight_layout(rect=[0, 0.1, 1, 0.95]) # Adjust the layout to make space for the configuration details
plt.show()
def collect_epoch_stats(epoch, loss, accuracy, epoch_time, train_size, val_size, config_id):
epoch_stats = {
'Epoch': epoch,
'Train Loss': loss,
'Validation Accuracy': accuracy,
'Epoch Time': epoch_time,
'Train Size': train_size,
'Validation Size': val_size,
'Configuration ID': config_id
}
epoch_statistics.append(epoch_stats)
coco = COCO(annotation_file_val)
# Load the categories
categories = coco.loadCats(coco.getCatIds())
category_names = [cat['name'] for cat in categories]
print('COCO categories: \n{}\n'.format(' '.join(json.dumps(categories))))
# Load datasets
train_dataset = load_graphs_from_json(segmentation_dir)
print('Done processing training images')
val_dataset = load_graphs_from_json(val_segmentation_dir)
print('Done processing val images')
# # Create DataLoaders
# train_loader = torch_geometric.loader.DataLoader(train_dataset, batch_size=10, shuffle=True)
# val_loader = DataLoader(val_dataset, batch_size=10, shuffle=False)
# print('Done Training and Validation Data Loaders')
# # GCN Model and Optimizer Initialization
# device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# model = GCN(num_features=3, num_classes=len(categories)).to(device)
# optimizer = torch.optim.Adam(model.parameters(), lr=0.01)
# print('Model and Optimizer Initialized')
# # Run Training and Validation
# for epoch in range(20):
# start_time = time.time()
# train_loss = train(model, train_loader, optimizer)
# end_time = time.time()
# val_acc = validate(model, val_loader)
# epoch_time = end_time - start_time
# train_size = len(train_dataset)
# val_size = len(val_dataset)
# # Calling the function to print epoch statistics
# print_epoch_stats(epoch+1, train_loss, val_acc, epoch_time, train_size, val_size)
# Run Training and Validation
# for epoch in range(20):
# start_time = time.time()
# train_loss = train(model, train_loader, optimizer)
# end_time = time.time()
# val_acc = validate(model, val_loader)
# epoch_time = end_time - start_time
# train_size = len(train_dataset)
# val_size = len(val_dataset)
# # Calling the function to print epoch statistics
# print_epoch_stats(epoch+1, train_loss, val_acc, epoch_time, train_size, val_size)
# Collect epoch statistics in a list for later analysis
epoch_statistics = []
# Prepare for storing results
train_loss_histories = []
val_accuracy_histories = []
# Define your hyperparameters to try
configurations = [
{'batch_size': 10, 'lr': 0.01, 'optimizer': torch.optim.Adam, 'optimizer_name': 'Adam', 'weight_decay': 0},
{'batch_size': 20, 'lr': 0.01, 'optimizer': torch.optim.Adam, 'optimizer_name': 'Adam', 'weight_decay': 1e-5},
{'batch_size': 10, 'lr': 0.001, 'optimizer': torch.optim.SGD, 'optimizer_name': 'SGD', 'momentum': 0.9, 'weight_decay': 0},
{'batch_size': 20, 'lr': 0.001, 'optimizer': torch.optim.SGD, 'optimizer_name': 'SGD', 'momentum': 0.9, 'weight_decay': 1e-5},
{'batch_size': 10, 'lr': 0.001, 'optimizer': torch.optim.RMSprop, 'optimizer_name': 'RMSprop', 'weight_decay': 0},
{'batch_size': 20, 'lr': 0.001, 'optimizer': torch.optim.RMSprop, 'optimizer_name': 'RMSprop', 'weight_decay': 1e-5},
{'batch_size': 10, 'lr': 0.0001, 'optimizer': torch.optim.Adagrad, 'optimizer_name': 'Adagrad', 'weight_decay': 0},
{'batch_size': 20, 'lr': 0.0001, 'optimizer': torch.optim.Adagrad, 'optimizer_name': 'Adagrad', 'weight_decay': 1e-5},
{'batch_size': 10, 'lr': 0.01, 'optimizer': torch.optim.Adamax, 'optimizer_name': 'Adamax', 'weight_decay': 0},
{'batch_size': 20, 'lr': 0.01, 'optimizer': torch.optim.Adamax, 'optimizer_name': 'Adamax', 'weight_decay': 1e-5},
]
# Iterate over configurations
for i, config in enumerate(configurations):
# Update DataLoaders for the new configuration
train_loader = torch_geometric.loader.DataLoader(train_dataset, batch_size=config['batch_size'], shuffle=True)
val_loader = torch_geometric.loader.DataLoader(val_dataset, batch_size=config['batch_size'], shuffle=False)
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# If you want to test different feature sizes, you would modify 'num_features' here
model = GCN(num_features=3, num_classes=len(categories)).to(device) # Replace '3' with the actual feature size if it varies
# Initialize the optimizer for this configuration
optimizer_class = config['optimizer']
if 'momentum' in config:
optimizer_weight_decay = config['momentum']
else:
optimizer_weight_decay = config['weight_decay']
optimizer = optimizer_class(model.parameters(), lr=config['lr'], weight_decay=optimizer_weight_decay)
train_loss_history = []
val_accuracy_history = []
# Run Training and Validation for a number of epochs
for epoch in range(10): # Replace '20' with the desired number of epochs
start_time = time.time()
train_loss = train(model, train_loader, optimizer)
train_loss_history.append(train_loss)
end_time = time.time()
val_acc = validate(model, val_loader)
val_accuracy_history.append(val_acc)
epoch_time = end_time - start_time
train_size = len(train_loader.dataset)
val_size = len(val_loader.dataset)
# Print statistics for each epoch
print_epoch_stats(epoch+1, train_loss, val_acc, epoch_time, train_size, val_size)
collect_epoch_stats(epoch + 1, train_loss, val_acc, epoch_time, train_size, val_size, i+1)
# Add the history for this configuration to the lists of results
train_loss_histories.append(train_loss_history)
val_accuracy_histories.append(val_accuracy_history)
# Convert the list of statistics to a DataFrame
stats_df = pd.DataFrame(epoch_statistics)
# Save the DataFrame to a CSV file
stats_df.to_csv('epoch_statistics.csv', index=False)
# Print DataFrame to console (optional)
print(stats_df)
# Call function to plot results
plot_results(configurations, train_loss_histories, val_accuracy_histories)