-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathtrain_supervised_cnn.py
157 lines (139 loc) · 5.06 KB
/
train_supervised_cnn.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
# coding:utf-8
import torch
import numpy as np
import json
import opennre
from opennre import encoder, model, framework
import sys
import os
import argparse
import logging
import random
def set_seed(seed):
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
parser = argparse.ArgumentParser()
parser.add_argument('--ckpt', default='',
help='Checkpoint name')
parser.add_argument('--only_test', action='store_true',
help='Only run test')
parser.add_argument('--encoder', default='pcnn', choices=['pcnn', 'cnn'])
# Data
parser.add_argument('--metric', default='micro_f1', choices=['micro_f1', 'acc'],
help='Metric for picking up best checkpoint')
parser.add_argument('--dataset', default='none', choices=['none', 'semeval', 'wiki80', 'tacred'],
help='Dataset. If not none, the following args can be ignored')
parser.add_argument('--train_file', default='', type=str,
help='Training data file')
parser.add_argument('--val_file', default='', type=str,
help='Validation data file')
parser.add_argument('--test_file', default='', type=str,
help='Test data file')
parser.add_argument('--rel2id_file', default='', type=str,
help='Relation to ID file')
# Hyper-parameters
parser.add_argument('--batch_size', default=160, type=int,
help='Batch size')
parser.add_argument('--lr', default=1e-1, type=float,
help='Learning rate')
parser.add_argument('--weight_decay', default=1e-5, type=float,
help='Weight decay')
parser.add_argument('--max_length', default=128, type=int,
help='Maximum sentence length')
parser.add_argument('--max_epoch', default=100, type=int,
help='Max number of training epochs')
# Others
parser.add_argument('--seed', default=42, type=int,
help='Random seed')
args = parser.parse_args()
# Set random seed
set_seed(args.seed)
# Some basic settings
root_path = '.'
sys.path.append(root_path)
if not os.path.exists('ckpt'):
os.mkdir('ckpt')
if len(args.ckpt) == 0:
args.ckpt = '{}_{}'.format(args.dataset, 'cnn')
ckpt = 'ckpt/{}.pth.tar'.format(args.ckpt)
if args.dataset != 'none':
opennre.download(args.dataset, root_path=root_path)
args.train_file = os.path.join(root_path, 'benchmark', args.dataset, '{}_train.txt'.format(args.dataset))
args.val_file = os.path.join(root_path, 'benchmark', args.dataset, '{}_val.txt'.format(args.dataset))
args.test_file = os.path.join(root_path, 'benchmark', args.dataset, '{}_test.txt'.format(args.dataset))
args.rel2id_file = os.path.join(root_path, 'benchmark', args.dataset, '{}_rel2id.json'.format(args.dataset))
if args.dataset == 'wiki80':
args.metric = 'acc'
else:
args.metric = 'micro_f1'
else:
if not (os.path.exists(args.train_file) and os.path.exists(args.val_file) and os.path.exists(args.test_file) and os.path.exists(args.rel2id_file)):
raise Exception('--train_file, --val_file, --test_file and --rel2id_file are not specified or files do not exist. Or specify --dataset')
logging.info('Arguments:')
for arg in vars(args):
logging.info(' {}: {}'.format(arg, getattr(args, arg)))
rel2id = json.load(open(args.rel2id_file))
# Download glove
opennre.download('glove', root_path=root_path)
word2id = json.load(open(os.path.join(root_path, 'pretrain/glove/glove.6B.50d_word2id.json')))
word2vec = np.load(os.path.join(root_path, 'pretrain/glove/glove.6B.50d_mat.npy'))
# Define the sentence encoder
if args.encoder == 'pcnn':
sentence_encoder = opennre.encoder.PCNNEncoder(
token2id=word2id,
max_length=args.max_length,
word_size=50,
position_size=5,
hidden_size=230,
blank_padding=True,
kernel_size=3,
padding_size=1,
word2vec=word2vec,
dropout=0.5
)
elif args.encoder == 'cnn':
sentence_encoder = opennre.encoder.CNNEncoder(
token2id=word2id,
max_length=args.max_length,
word_size=50,
position_size=5,
hidden_size=230,
blank_padding=True,
kernel_size=3,
padding_size=1,
word2vec=word2vec,
dropout=0.5
)
else:
raise NotImplementedError
# Define the model
model = opennre.model.SoftmaxNN(sentence_encoder, len(rel2id), rel2id)
# Define the whole training framework
framework = opennre.framework.SentenceRE(
train_path=args.train_file,
val_path=args.val_file,
test_path=args.test_file,
model=model,
ckpt=ckpt,
batch_size=args.batch_size,
max_epoch=args.max_epoch,
lr=args.lr,
weight_decay=args.weight_decay,
opt='sgd'
)
# Train the model
if not args.only_test:
framework.train_model(args.metric)
# Test
framework.load_state_dict(torch.load(ckpt)['state_dict'])
result = framework.eval_model(framework.test_loader)
# Print the result
logging.info('Test set results:')
if args.metric == 'acc':
logging.info('Accuracy: {}'.format(result['acc']))
else:
logging.info('Micro precision: {}'.format(result['micro_p']))
logging.info('Micro recall: {}'.format(result['micro_r']))
logging.info('Micro F1: {}'.format(result['micro_f1']))