-
Notifications
You must be signed in to change notification settings - Fork 4
/
load_roberta.py
43 lines (38 loc) · 1.8 KB
/
load_roberta.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
# Author Toshihiko Aoki
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Convert TensorFlow Bert Model to my-torch-bert."""
import torch
from mptb.models.bert import BertModel, Config
from mptb.utils import load_from_pt_roberta_model
def load_roberta(
config_path='config/bert_config.json',
roberta_path="data/roberta.base/model.pt",
output_path="pretrain/roberta_base.pt"
):
config = Config.from_json(config_path)
model = BertModel(config)
loading_dict = torch.load(roberta_path, map_location='cpu')
print(loading_dict['args'])
load_from_pt_roberta_model(model, loading_dict['model'])
torch.save(model.state_dict(), output_path)
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description='Convert from fairseq roberta to my-pytorch-bert model.',
usage='%(prog)s [options]')
parser.add_argument('--config_path', help='JSON file path for defines BERT.', nargs='?',
type=str, default='config/bert_base.json')
parser.add_argument('--roberta_path', help='Roberta model path.', required=True, type=str)
parser.add_argument('--output_path', help='Output model path.', required=True, type=str)
args = parser.parse_args()
load_roberta(args.config_path, args.tfmodel_path, args.output_path)