-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
274 lines (235 loc) · 8.28 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
'''Train CIFAR10 with PyTorch.'''
from __future__ import print_function
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
import torch.backends.cudnn as cudnn
import torchvision
import torchvision.transforms as transforms
import os
import argparse
import time
from models import *
from utils import progress_bar
from utils import *
from torch.autograd import Variable
parser = argparse.ArgumentParser(description='PyTorch CIFAR10 Training')
parser.add_argument('--lr', default=0.01, type=float, help='learning rate')
parser.add_argument('--resume', '-r', action='store_true', help='resume from checkpoint')
parser.add_argument('--ngpu', default=1, type=int,
help='number of GPUs to use for training')
parser.add_argument('--gpu_id', default='0', type=str,
help='id(s) for CUDA_VISIBLE_DEVICES')
parser.add_argument('--mode', '-m', action = 'store_true',
help = 'test mode')
parser.add_argument('--cpu', '-c', action = 'store_true',
help = 'use cpu for test')
args = parser.parse_args()
print('parsed options:', vars(args))
if not args.cpu:
cudnn.benchmark = True
os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu_id
torch.randn(8).cuda()
os.environ['CUDA_VISIBLE_DEVICES'] = ''
#epoch_step = json.loads(opt.epoch_step)
use_cuda = torch.cuda.is_available()
best_acc = 0 # best test accuracy
start_epoch = 0 # start from epoch 0 or last checkpoint epoch
# Data
print('==> Preparing data..')
transform_train = transforms.Compose([
transforms.RandomCrop(32, padding=4),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010)),
])
transform_test = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010)),
])
trainset = torchvision.datasets.CIFAR10(root='./data', train=True, download=True, transform=transform_train)
trainloader = torch.utils.data.DataLoader(trainset, batch_size=128, shuffle=True, num_workers=2)
testset = torchvision.datasets.CIFAR10(root='./data', train=False, download=True, transform=transform_test)
if args.mode:
testloader = torch.utils.data.DataLoader(testset, batch_size=1, shuffle=False, num_workers=2)
else:
testloader = torch.utils.data.DataLoader(testset, batch_size=100, shuffle=False, num_workers=2)
classes = ('plane', 'car', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck')
# Model
if args.resume:
# Load checkpoint.
print('==> Resuming from checkpoint..')
assert os.path.isdir('checkpoint'), 'Error: no checkpoint directory found!'
if not args.cpu:
checkpoint = torch.load('./checkpoint/ckpt.t7')
else:
checkpoint = torch.load('./checkpoint/ckpt.t7', map_location=lambda storage, loc: storage)
net = checkpoint['net']
best_acc = checkpoint['acc']
start_epoch = checkpoint['epoch']
else:
print('==> Building model..')
# net = VGG('VGG19')
# net = ResNet18()
# net = PreActResNet18()
# net = GoogLeNet()
# net = DenseNet121()
# net = ResNeXt29_2x64d()
# net = MobileNet()
# net = DPN92()
# net = ShuffleNetG2()
# net = SENet18()
# net = squeezenet.squeezenet1_0()
# net = alexnet()
net = squeezemob.squeezenet1_0()
if not args.cpu:
if use_cuda:
net.cuda()
net = torch.nn.DataParallel(net, device_ids=range(torch.cuda.device_count()))
cudnn.benchmark = True
else:
net.cpu()
criterion = nn.CrossEntropyLoss()
#optimizer = optim.SGD(net.parameters(), lr=args.lr, momentum=0.9, weight_decay=5e-4)
optimizer = optim.Adam(net.parameters(), lr=args.lr) #, weight_decay=5e-4)
#optimizer = optim.RMSprop(net.parameters(), lr=args.lr)
if args.mode:
with open("tempos.txt", mode = 'w') as filetime:
filetime.close()
else:
with open("Loss.txt", mode = 'w') as fileloss:
fileloss.close()
def format_time(seconds):
# days = int(seconds / 3600/24)
# seconds = seconds - days*3600*24
# hours = int(seconds / 3600)
# seconds = seconds - hours*3600
# minutes = int(seconds / 60)
# seconds = seconds - minutes*60
# secondsf = int(seconds)
# seconds = seconds - secondsf
# millis = int(seconds*1000)
# seconds = seconds - millis/1000
micros = int(seconds*1000000)
f = ''
i = 1
# if days > 0:
# f += str(days) + 'D'
# i += 1
# if hours > 0 and i <= 2:
# f += str(hours) + 'h'
# i += 1
# if minutes > 0 and i <= 2:
# f += str(minutes) + 'm'
# i += 1
# if secondsf > 0 and i <= 2:
# f += str(secondsf) + 's'
# i += 1
# if millis > 0 and i <= 2:
# f += str(millis) + 'ms'
# i += 1
if micros > 0 and i <= 2:
# f += str(micros) + 'us'
f += str(micros)
i += 1
if f == '':
f = '0ms'
return f
# Training
def train(epoch):
print('\nEpoch: %d' % epoch)
net.train()
train_loss = 0
correct = 0
total = 0
for batch_idx, (inputs, targets) in enumerate(trainloader):
if use_cuda:
inputs, targets = inputs.cuda(), targets.cuda()
else:
inputs, targets = inputs.cpu(), targets.cpu()
optimizer.zero_grad()
inputs, targets = Variable(inputs), Variable(targets)
outputs = net(inputs)
loss = criterion(outputs, targets)
loss.backward()
optimizer.step()
train_loss += loss.data[0]
_, predicted = torch.max(outputs.data, 1)
total += targets.size(0)
correct += predicted.eq(targets.data).cpu().sum()
progress_bar(batch_idx, len(trainloader), 'Loss: %.3f | Acc: %.3f%% (%d/%d)'
% (train_loss/(batch_idx+1), 100.*correct/total, correct, total))
return train_loss/(batch_idx+1)
def test(epoch):
global best_acc
net.eval()
test_loss = 0
correct = 0
total = 0
for batch_idx, (inputs, targets) in enumerate(testloader):
if not args.cpu:
if use_cuda:
inputs, targets = inputs.cuda(), targets.cuda()
else:
inputs, targets = inputs.cpu(), targets.cpu()
inputs, targets = Variable(inputs, volatile=True), Variable(targets)
initial_time = time.time()
outputs = net(inputs)
final_time = time.time()
loss = criterion(outputs, targets)
test_loss += loss.data[0]
_, predicted = torch.max(outputs.data, 1)
total += targets.size(0)
correct += predicted.eq(targets.data).cpu().sum()
time_passed = final_time - initial_time
if args.mode:
with open("tempos.txt", mode = 'a') as filetime:
filetime.write('\n%s' % format_time(time_passed))
filetime.close()
progress_bar(batch_idx, len(testloader), 'Loss: %.3f | Acc: %.3f%% (%d/%d)'
% (test_loss/(batch_idx+1), 100.*correct/total, correct, total))
if not args.mode:
# Save checkpoint.
acc = 100.*correct/total
if acc > best_acc:
print('Saving..')
state = {
'net': net.module if use_cuda else net,
'acc': acc,
'epoch': epoch,
}
if not os.path.isdir('checkpoint'):
os.mkdir('checkpoint')
torch.save(state, './checkpoint/ckpt.t7')
best_acc = acc
if args.resume:
print(torch_summarize(net))
loss = 0
delta = 0
drop = 0
if args.mode:
test(1)
else:
for epoch in range(200 - start_epoch):
oldloss = loss
loss = train(epoch)
print('Epoch Loss: %s' % loss)
with open("Loss.txt", mode = 'a') as fileloss:
if epoch == 0:
fileloss.write('EPOCH,LOSS,LR')
fileloss.write('\n%d,%f,%f' % (epoch,loss,optimizer.param_groups[0]['lr']))
test(epoch)
lr = optimizer.param_groups[0]['lr']
if (oldloss-loss < 0.01)and(epoch!=0):
delta = delta+1
if delta==10:
optimizer.param_groups[0]['lr'] = lr*0.1
drop = drop + 1
delta = 0
else: delta = 0
if drop == 4:
print('The end')
print(lr, delta, drop, epoch)
fileloss.close()
break