-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrain.py
88 lines (75 loc) · 3.48 KB
/
train.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
#*
# @file ABSA training driver based on arxiv:1810.01021
# Copyright (c) Zhewei Yao, Amir Gholami
# All rights reserved.
# This file is part of HessianFlow library.
#
# HessianFlow is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# HessianFlow is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with HessianFlow. If not, see <http://www.gnu.org/licenses/>.
#*
from __future__ import print_function
import numpy as np
import argparse
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torchvision import datasets, transforms
from torch.autograd import Variable
from models.c1 import *
from utils import *
import hessianflow as hf
import hessianflow.optimizer as hf_optm
# Training settings
parser = argparse.ArgumentParser(description='PyTorch Example')
parser.add_argument('--name', type = str, default = 'cifar10', metavar = 'N',
help = 'dataset')
parser.add_argument('--batch-size', type = int, default = 128, metavar = 'B',
help = 'input batch size for training (default: 64)')
parser.add_argument('--test-batch-size', type=int, default=200, metavar='TBS',
help = 'input batch size for testing (default: 1000)')
parser.add_argument('--epochs', type = int, default = 160, metavar = 'E',
help = 'number of epochs to train (default: 10)')
parser.add_argument('--lr', type = float, default = 0.1, metavar = 'LR',
help = 'learning rate (default: 0.01)')
parser.add_argument('--lr-decay', type = float, default = 0.1,
help = 'learning rate ratio')
parser.add_argument('--lr-decay-epoch', type = int, nargs = '+', default = [60,120],
help = 'Decrease learning rate at these epochs.')
parser.add_argument('--seed', type = int, default = 1, metavar = 'S',
help = 'random seed (default: 1)')
parser.add_argument('--weight-decay', '--wd', default = 0e-4, type = float,
metavar = 'W', help = 'weight decay (default: 0e-4)')
parser.add_argument('--arch', type = str, default = 'c1',
help = 'choose the archtecure')
parser.add_argument('--large-ratio', type = int, default = 1,
help = 'large ratio')
args = parser.parse_args()
# set random seed to reproduce the work
torch.manual_seed(args.seed)
torch.cuda.manual_seed(args.seed)
# get dataset
train_loader, test_loader = getData(name = args.name, train_bs = args.batch_size, test_bs = args.test_batch_size)
# get model and optimizer
model_list = {
'c1':c1_model(),
'c2':c2_model(),
}
model = model_list[args.arch].cuda()
model = torch.nn.DataParallel(model)
criterion = nn.CrossEntropyLoss()
optimizer = optim.SGD(model.parameters(), lr=args.lr, momentum=0.9, weight_decay=args.weight_decay)
########### training
model, num_updates = hf_optm.baseline(model, train_loader, test_loader, criterion, optimizer, args.epochs, args.lr_decay_epoch,
args.lr_decay, batch_size = args.batch_size, max_large_ratio = args.large_ratio, cuda = True)
torch.save(model.state_dict(), './model_param.pkl')