forked from salesforce/GeDi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_GeDi.py
389 lines (282 loc) · 14.2 KB
/
generate_GeDi.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# Adapted from https://github.com/huggingface/transformers/blob/21da895013a95e60df645b7d6b95f4a38f604759/examples/run_glue.py and https://github.com/huggingface/transformers/blob/21da895013a95e60df645b7d6b95f4a38f604759/examples/run_generation.py
import argparse
import glob
import json
import logging
import os
import time
import numpy as np
import torch
from tqdm import tqdm, trange
import sys
import codecs
import math
from modeling_gpt2 import GPT2LMHeadModel
from transformers import (
GPT2Config,
GPT2Tokenizer
)
import os.path
import time
try:
from torch.utils.tensorboard import SummaryWriter
except ImportError:
from tensorboardX import SummaryWriter
logger = logging.getLogger(__name__)
MODEL_CLASSES = {
"gpt2": (GPT2Config, GPT2LMHeadModel, GPT2Tokenizer),
}
#GPT2 added as per - https://huggingface.co/transformers/model_doc/gpt2.html
def set_seed(args):
np.random.seed(args.seed)
torch.manual_seed(args.seed)
if args.n_gpu > 0:
torch.cuda.manual_seed_all(args.seed)
def adjust_length_to_model(length, max_sequence_length):
if length < 0 and max_sequence_length > 0:
length = max_sequence_length
elif 0 < max_sequence_length < length:
length = max_sequence_length # No generation bigger than model size
elif length < 0:
length = MAX_LENGTH # avoid infinite loop
return length
def main():
parser = argparse.ArgumentParser()
# Required parameters
parser.add_argument(
"--model_type",
default="gpt2",
type=str,
help="Model type selected in the list: " + ", ".join(MODEL_CLASSES.keys()),
)
parser.add_argument(
"--gen_model_name_or_path",
default="gpt2-xl",
type=str,
help="Path to language model (usually `gpt2-xl' can also use `gpt2-large', `gpt2-medium', `gpt2')",
)
parser.add_argument(
"--gedi_model_name_or_path",
default=None,
type=str,
help="Path to GeDi model. Assumes path from --mode if set to None",
)
parser.add_argument("--fp16",action="store_true", help="convert GPT-2 XL weights to fp16 (saves signifcant GPU RAM). May sometimes change samples slighty.")
parser.add_argument("--load_in_half_prec",action="store_true", help="loads in half precision to save CPU memory. May sometimes change samples slighty.")
# Other parameters
parser.add_argument(
"--config_name", default="", type=str, help="Pretrained config name or path if not the same as model_name",
)
parser.add_argument(
"--tokenizer_name",
default="",
type=str,
help="Pretrained tokenizer name or path if not the same as model_name",
)
parser.add_argument(
"--cache_dir",
default="",
type=str,
help="Where do you want to store the pre-trained models downloaded from s3",
)
parser.add_argument(
"--do_lower_case", action="store_true", help="Set this flag if you are using an uncased model.",
)
parser.add_argument("--no_cuda", action="store_true", help="Avoid using CUDA when available")
##arguments for generation
parser.add_argument("--gen_length", type=int, default=128, help= "generation length")
parser.add_argument("--stop_token", type=str, default=None, help="Token at which text generation is stopped")
parser.add_argument("--temperature", type=float, default=1.0,
help="lower tend toward greedy sampling",
)
parser.add_argument("--disc_weight", type=float, default=30.0,
help="weight for GeDi discriminator",
)
parser.add_argument("--filter_p", type=float, default=0.8,
help="filters at up to filter_p cumulative probability from next token distribution."
)
parser.add_argument("--class_bias", type=float, default=None,
help="biases GeDi's classification probabilties"
)
parser.add_argument("--target_p", type=float, default=0.8,
help="In comination with filter_p, saves tokens with above target p probability of being in the correct class "
)
parser.add_argument("--do_sample", action="store_true",
help="If set to False greedy decoding is used. Otherwise sampling is used. Defaults to True.")
parser.add_argument("--repetition_penalty",
default=1.2,
type=float,
help="The parameter for repetition penalty. Between 1.0 and infinity. 1.0 means no penalty. Default to 1.0.")
parser.add_argument("--rep_penalty_scale",
default=10.0,
type=float,
help="can use positive number to set max logit. rep penalty works better with positive logits")
parser.add_argument("--penalize_cond", action="store_true",
help="apply repetition penalty to tokens in coditioning text")
parser.add_argument("--k", type=float, default=None,
help="The number of highest probability vocabulary tokens to keep for top-k-filtering. Between 1 and infinity. Default to 50.",)
parser.add_argument("--p", type=float, default=None,
help="The cumulative probability of parameter highest probability vocabulary tokens to keep for nucleus sampling. Must be between 0 and 1. Default to 1.",
)
parser.add_argument("--gen_type", type=str, default="gedi", help="gedi, cclm, or gpt2")
parser.add_argument("--mode", type=str, default="topic", help="topic, sentiment, detoxify")
parser.add_argument("--secondary_code", type=str, default="business", help="secondary topic control code")
parser.add_argument("--gpt3_api_key", type=str, default=None, help= "GPT-3 api key" )
parser.add_argument("--prompt", type=str, default="", help= "prompt for generation" )
args = parser.parse_args()
assert(args.gen_type=="gedi" or args.gen_type=="cclm" or args.gen_type=="gpt2")
assert(args.mode=="topic" or args.mode=="sentiment" or args.mode=="detoxify")
if args.mode == "topic":
args.code_desired = "true"
args.code_undesired = "false"
if not args.gen_type == "gpt2":
if args.gedi_model_name_or_path is None:
args.gedi_model_name_or_path = "../pretrained_models/gedi_topic"
if not os.path.isdir(args.gedi_model_name_or_path):
raise Exception("GeDi model path not found, must either run `get_models.sh' or set `args.gedi_model_name_or_path'")
if args.class_bias is None:
args.class_bias = 0.0
if args.mode == "sentiment":
args.code_desired = "positive"
args.code_undesired = "negative"
if not args.gen_type == "gpt2":
if args.gedi_model_name_or_path is None:
args.gedi_model_name_or_path = "../pretrained_models/gedi_sentiment"
if not os.path.isdir(args.gedi_model_name_or_path):
raise Exception("GeDi model path not found, must either run `get_models.sh' or set `args.gedi_model_name_or_path'")
if args.class_bias is None:
args.class_bias = 0.0
if args.mode == "detoxify":
args.code_desired = "clean"
args.code_undesired = "dirty"
if not args.gen_type == "gpt2":
if args.gedi_model_name_or_path is None:
args.gedi_model_name_or_path = "../pretrained_models/gedi_detoxifier"
if not os.path.isdir(args.gedi_model_name_or_path):
raise Exception("GeDi model path not found, must either run `get_models.sh' or set `args.gedi_model_name_or_path'")
if args.class_bias is None:
args.class_bias = 2.0
if args.target_p<1 and args.target_p>0:
inv_p = math.log(args.target_p/(1-args.target_p))+args.class_bias
args.target_p = 1/(1+math.exp(-1*inv_p))
print("changing target p to " + str(args.target_p) + " to account for class bias term.")
device = torch.device("cuda" if torch.cuda.is_available() and not args.no_cuda else "cpu")
args.n_gpu = torch.cuda.device_count()
args.device = device
args.model_type = args.model_type.lower()
config_class, model_class, tokenizer_class = MODEL_CLASSES["gpt2"]
tokenizer = tokenizer_class.from_pretrained(args.gen_model_name_or_path,do_lower_case=False)
if args.gen_type == "cclm":
model = model_class.from_pretrained(args.gedi_model_name_or_path)
model.to(args.device)
args.length = adjust_length_to_model(args.gen_length,
max_sequence_length=model.config.max_position_embeddings)
else:
if not(args.gpt3_api_key is None):
print("It's a bit wasteful but our code needs to load GPT-2 even if using GPT-3")
if args.load_in_half_prec:
model = model_class.from_pretrained(args.gen_model_name_or_path,load_in_half_prec=True)
model.to(args.device)
#even if using --fp16, apex doesn't accept half prec models, so requires converting to full prec before converting back
model = model.float()
else:
model = model_class.from_pretrained(args.gen_model_name_or_path)
model.to(args.device)
#using fp16 option with GPT2-XL can prevent OOM errors
if args.fp16:
try:
from apex import amp
except ImportError:
raise ImportError("Please install apex from https://www.github.com/nvidia/apex to use fp16 training.")
#opt_level O3 gives fully half precision weights. Okay for GPT-2 as long as we don't need to finetune
model = amp.initialize(model, opt_level='O3')
torch.cuda.empty_cache()
args.length = adjust_length_to_model(args.gen_length,
max_sequence_length=1024)
if args.gen_type == "gedi" :
gedi_model = model_class.from_pretrained(args.gedi_model_name_or_path)
gedi_model.to(args.device)
else:
gedi_model=None
user_prompt = len(args.prompt)==0
while True:
if user_prompt:
if args.mode=="topic":
while True:
code = input("Give a secondary code or hit enter to keep as " + str(args.secondary_code) + ": ")
if len(code)==0:
break
else:
bpe_tokens = tokenizer.encode(code)
if len(bpe_tokens)>1:
print("Warning! number of bpe tokens for " + code + " is greater than 1, model isn't trained for this, generation is less likely to match topic.")
args.secondary_code = code
else:
args.secondary_code = code
break
if args.mode=="sentiment":
args.code_desired = "positive"
args.code_undesired = "negative"
yn = input("Generates positive by default. Press 'enter' to continue or 'n' to switch to negative (Warning, negative can lead to toxic generations at a higher rate than normal GPT-2 (or GPT-3)): " )
if yn == "n":
args.code_desired = "negative"
args.code_undesired = "positive"
while True:
args.prompt = input("Give a generation prompt (or type q to quit): ")
if len(args.prompt)>0:
break
if args.prompt=="q":
break
if args.gen_type=="cclm":
prefix = tokenizer.encode(args.code_desired)[0]
start_len=0
text_ids = tokenizer.encode(args.prompt)
if args.gen_type == "cclm":
if args.mode=="topic":
text_ids=[prefix]+tokenizer.encode(args.secondary_code)+text_ids
start_len = len(tokenizer.decode([prefix]+tokenizer.encode(args.secondary_code)))
else:
text_ids=[prefix]+text_ids
start_len = len(tokenizer.decode([prefix]))
encoded_prompts=torch.LongTensor(text_ids).unsqueeze(0).to(args.device)
if args.gen_type=="gedi" and args.mode=="topic":
multi_code = tokenizer.encode(args.secondary_code)
attr_class = 1
else:
multi_code = None
attr_class = 1
generated_sequence = model.generate(
input_ids=encoded_prompts,
pad_lens=None,
max_length= args.length,
temperature=args.temperature,
top_k=args.k,
top_p=args.p,
repetition_penalty=args.repetition_penalty,
rep_penalty_scale=args.rep_penalty_scale,
eos_token_ids = tokenizer.eos_token_id,
pad_token_id = 0,
do_sample=args.do_sample,
penalize_cond=args.penalize_cond,
gedi_model=gedi_model,
gpt3_api_key = args.gpt3_api_key,
tokenizer=tokenizer,
disc_weight=args.disc_weight,
filter_p = args.filter_p,
target_p = args.target_p,
class_bias = args.class_bias,
attr_class = attr_class,
code_0 = args.code_undesired,
code_1 = args.code_desired,
multi_code=multi_code
)
text = tokenizer.decode(generated_sequence.tolist()[0], clean_up_tokenization_spaces=True)
if args.gen_type == "cclm":
text = text[start_len:]
print("\n")
print(text)
print("\n")
if not user_prompt:
break
if __name__ == "__main__":
main()