-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain.py
More file actions
141 lines (129 loc) · 5.78 KB
/
train.py
File metadata and controls
141 lines (129 loc) · 5.78 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
# coding:utf-8
import torch
import numpy as np
import json
import opennre.model,opennre.framework,opennre.encoder
import sys
import os
import argparse
import logging
parser = argparse.ArgumentParser()
parser.add_argument('--pretrain_path', default='bert-base-uncased',
help='Pre-trained ckpt path / model name (hugginface)')
parser.add_argument('--ckpt', default='MEGA',
help='Checkpoint name')
parser.add_argument('--pooler', default='entity', choices=['cls', 'entity', 'rel'],
help='Sentence representation pooler')
parser.add_argument('--only_test', action='store_true',
help='Only run test')
parser.add_argument('--mask_entity', action='store_true',
help='Mask entity mentions')
# Data
parser.add_argument('--metric', default='micro_f1', choices=['micro_f1', 'acc'],
help='Metric for picking up best checkpoint')
parser.add_argument('--dataset', default='ours', choices=['none', 'semeval', 'wiki80', 'tacred', 'nyt10', 'ours'],
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('-b', '--batch_size', default=64, type=int,
help='Batch size')
parser.add_argument('--lr', default=2e-5, type=float,
help='Learning rate')
parser.add_argument('--max_length', default=128
, type=int,
help='Maximum sentence length')
parser.add_argument('--max_epoch', default=200, type=int,
help='Max number of training epochs')
parser.add_argument('--rel_num', default='1', type=str,
help='Number of aligned weights')
args = parser.parse_args()
# 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, args.pretrain_path, args.pooler)
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,'txt/input_prepare_20_addd.json')
args.val_file = os.path.join(root_path, 'benchmark', args.dataset,'txt/sorted_prepare.json'.format(args.dataset))
args.test_file = os.path.join(root_path, 'benchmark', args.dataset,'txt/{}_test.txt'.format(args.dataset))
args.pic_train_file = os.path.join(root_path, 'benchmark', args.dataset, 'imgSG/train2017')
args.pic_val_file = os.path.join(root_path, 'benchmark', args.dataset, 'imgSG/train2017')
args.pic_test_file = os.path.join(root_path, 'benchmark', args.dataset, 'imgSG/test')
args.rel_train_file = os.path.join(root_path, 'benchmark', args.dataset,'rel_1/train20')
args.rel_val_file = os.path.join(root_path, 'benchmark', args.dataset, 'rel_1/val_hard').format(args.rel_num)
args.rel_test_file = os.path.join(root_path, 'benchmark', args.dataset, 'rel_{}/test').format(args.rel_num)
args.rel2id_file = os.path.join(root_path, 'benchmark', args.dataset, '{}_rel2id.json'.format(args.dataset))
if not os.path.exists(args.test_file):
logging.warn("Test file {} does not exist! Use val file instead".format(args.test_file))
args.test_file = args.val_file
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))
# Define the sentence encoder
if args.pooler == 'entity':
sentence_encoder = opennre.encoder.BERTEntityEncoder(
max_length=args.max_length,
pretrain_path=args.pretrain_path,
mask_entity=args.mask_entity
)
elif args.pooler == 'cls':
sentence_encoder = opennre.encoder.BERTEncoder(
max_length=args.max_length,
pretrain_path=args.pretrain_path,
mask_entity=args.mask_entity
)
else:
raise NotImplementedError
# Define the model
model = opennre.model.SoftmaxNN(sentence_encoder, 10, rel2id)
# Define the whole training framework
framework = opennre.framework.SentenceRE(
train_path=args.train_file,
train_rel_path=args.rel_train_file,
train_pic_path=args.pic_train_file,
val_path=args.val_file,
val_rel_path=args.rel_val_file,
val_pic_path=args.pic_val_file,
test_path=args.test_file,
test_rel_path=args.rel_test_file,
test_pic_path=args.pic_test_file,
model=model,
ckpt=ckpt,
batchsize=args.batch_size,
max_epoch=args.max_epoch,
lr=args.lr,
opt='adamw'
)
# Train the model
if not args.only_test:
framework.train_model('micro_f1')
# # 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:\n')
# logging.info('Accuracy: {}\n'.format(result['acc']))
# logging.info('Micro precision: {}\n'.format(result['micro_p']))
# logging.info('Micro recall: {}\n'.format(result['micro_r']))
# logging.info('Micro F1: {}'.format(result['micro_f1']))