-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
404 lines (338 loc) · 8.13 KB
/
config.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
from sacred import Experiment
ex = Experiment("LLM-Image-Sharing")
@ex.config
def config():
seed = 0
framework = None
# for huggingface configures
model = {
#'device_map': None,
'name': None,
'id': None,
}
hf_params = {
"max_new_tokens": None,
#"early_stopping": False,
#"num_beams": None,
"do_sample": False,
#"top_k": None,
"top_p": None,
#"num_return_sequences": None
}
skip_special_tokens = False
mode = None
batch_size = None
openai_params = {
"max_tokens": None,
"temperature": None,
"frequency_penalty": None,
"presence_penalty": None,
"top_p": None
}
together_params = {
"max_tokens": None,
"temperature": None,
"top_k": None,
"top_p": None,
"repetition_penalty": None
}
data_dir = None
dataset_name = None
datatype = None
# prompt template
template_name = None
name_type = None
do_sample_prompt = None
num_sample_prompt = None
result_save_dir = None
file_version = None
gpu_id = None
num_gpus = None
do_sample = False
sample_num = None
apply_original_prompt = False
task_num = None
t2i_model_name = None
do_cot = None
task2_restriction_types = None
vllm_model_name = None
@ex.named_config
def sample_debug():
do_sample = True
sample_num = 5
@ex.named_config
def photochat_config():
data_dir = '/home/work/workspace/LM_image_sharing/data/photochat/test.json'
dataset_name = 'photochat'
@ex.named_config
def photochat_train_config():
data_dir = '/home/work/workspace/LM_image_sharing/data/photochat/train.json'
dataset_name = 'photochat'
datatype = 'train'
@ex.named_config
def photochat_valid_config():
data_dir = '/home/work/workspace/LM_image_sharing/data/photochat/valid.json'
dataset_name = 'photochat'
datatype = 'valid'
@ex.named_config
def photochat_test_config():
data_dir = '/home/work/workspace/LM_image_sharing/data/photochat/test.json'
dataset_name = 'photochat'
datatype = 'test'
@ex.named_config
def photochat_plus_config():
data_dir = './photochat++/test.json'
dataset_name = 'photochat++'
@ex.named_config
def openai_llm_config():
framework = "openai"
openai_params = {
"max_tokens": 1024,
"temperature": 0.0,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"top_p": 0.0
}
@ex.named_config
def openai_llm_task2_config():
framework = "openai"
openai_params = {
"max_tokens": 512,
"temperature": 0.9,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"top_p": 0.95,
}
@ex.named_config
def openai_llm_augment_config():
framework = "openai"
openai_params = {
"max_tokens": 2048,
"temperature": 0.0,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"top_p": 0.0
}
@ex.named_config
def together_llm_augment_config():
framework = "together"
together_params = {
"max_tokens": 2048,
"temperature": 0.0,
"top_k": 1,
"top_p": 0.0,
"repetition_penalty": 1.0
}
@ex.named_config
def huggingface_llm_config():
framework = "huggingface"
# mode = "AutoModelForCausalLM"
skip_special_tokens = True
hf_params = {
"max_new_tokens": 256,
#"early_stopping": True,
#"num_beams": 3,
"do_sample": True,
#"temperature": 0.9,
#"top_k": 50,
#"num_return_sequences": 1,
"top_p": 1.0
}
@ex.named_config
def together_llm_config():
framework = "together"
together_params = {
"max_tokens": 512,
"temperature": 0.0,
"top_k": 1,
"top_p": 0.0,
"repetition_penalty": 1.0
}
@ex.named_config
def together_llm_task2_config():
framework = "together"
together_params = {
"max_tokens": 256,
"temperature": 0.9,
"top_k": 1,
"top_p": 0.95,
"repetition_penalty": 1.0
}
@ex.named_config
def vicuna_13b_config():
model = {
'name': "lmsys/vicuna-13b-v1.5",
'id': "vicuna-13b"
}
num_gpus = 2
@ex.named_config
def tg_vicuna_13b_config():
model = {
'name': "lmsys/vicuna-13b-v1.5",
'id': "together-vicuna-13b"
}
num_gpus = 2
@ex.named_config
def openassist_12b_config():
model = {
'name': "OpenAssistant/oasst-sft-1-pythia-12b",
'id': 'oasst1-12b'
}
num_gpus = 2
@ex.named_config
def falcon_7b_instruct_config():
model = {
'name': "tiiuae/falcon-7b-instruct",
'id': 'falcon-7b-instruct'
}
num_gpus = 1
@ex.named_config
def tg_falcon_7b_instruct_config():
model = {
'name': "togethercomputer/falcon-7b-instruct",
'id': 'together-falcon-7b-instruct'
}
num_gpus = 1
@ex.named_config
def tg_falcon_40b_instruct_config():
model = {
'name': "togethercomputer/falcon-40b-instruct",
'id': 'together-falcon-40b-instruct'
}
num_gpus = 1
@ex.named_config
def dolly_v2_12b_config():
model = {
'name': "databricks/dolly-v2-12b",
'id': 'dolly-v2-12b'
}
num_gpus = 2
# trust_remote_code = True
@ex.named_config
def baize_v2_13b_config():
model = {
'name': "project-baize/baize-v2-13b",
'id': 'baize-v2-13b'
}
num_gpus = 2
@ex.named_config
def llama_2_chat_13b_config():
model = {
'name': "meta-llama/Llama-2-13b-chat-hf",
'id': 'llama-2-13b-chat-hf'
}
num_gpus = 2
@ex.named_config
def llama_2_chat_70b_config():
model = {
'name': "meta-llama/Llama-2-70b-chat-hf",
'id': 'llama-2-70b-chat-hf'
}
num_gpus = 8
@ex.named_config
def tg_llama_2_chat_7b_config():
model = {
'name': "togethercomputer/llama-2-7b-chat",
'id': 'together-llama-2-7b-chat'
}
@ex.named_config
def tg_llama_2_chat_13b_config():
model = {
'name': "togethercomputer/llama-2-13b-chat",
'id': 'together-llama-2-13b-chat'
}
@ex.named_config
def tg_llama_2_chat_70b_config():
model = {
'name': "togethercomputer/llama-2-70b-chat",
'id': 'together-llama-2-70b-chat'
}
@ex.named_config
def wizard_13b_config():
model = {
'name': "WizardLM/WizardLM-13B-V1.2",
'id': 'wizard-13b'
}
num_gpus = 2
@ex.named_config
def mpt_7b_instruct_config():
model = {
'name': "mosaicml/mpt-7b-instruct",
'id': 'mpt-7b-instruct'
}
num_gpus = 1
@ex.named_config
def mpt_30b_instruct_config():
model = {
'name': "mosaicml/mpt-30b-instruct",
'id': 'mpt-30b-instruct'
}
num_gpus = 8
@ex.named_config
def mistral_7b_instruct_config():
model = {
'name': "mistralai/Mistral-7B-Instruct-v0.1",
'id': 'mistral-7b-instruct'
}
num_gpus = 1
@ex.named_config
def tg_mistral_7b_instruct_config():
model = {
'name': "mistralai/Mistral-7B-Instruct-v0.1",
'id': 'together-mistral-7b-instruct'
}
num_gpus = 1
@ex.named_config
def blip2_opt_2_7b_config():
model = {
'name': 'Salesforce/blip2-opt-2.7b',
'id': 'blip2-opt-2.7b'
}
num_gpus = 1
@ex.named_config
def chatgpt_0613_config():
# 0613
model = {
'name': 'gpt-3.5-turbo',
'id': 'gpt-3.5-turbo-0613'
}
mode = "chat"
@ex.named_config
def chatgpt_1106_config():
model = {
'name': 'gpt-3.5-turbo-1106',
'id': 'gpt-3.5-turbo-1106'
}
mode = "chat"
@ex.named_config
def gpt4_0613_Nov_config():
# 0613 nov
model = {
'name': 'gpt-4',
'id': 'gpt-4-0613-Nov'
}
mode = "chat"
@ex.named_config
def gpt4_0613_June_config():
# 0613 nov
model = {
'name': 'gpt-4-0613',
'id': 'gpt-4-0613-june'
}
mode = "chat"
@ex.named_config
def gpt4_0314_config():
# 0613
model = {
'name': 'gpt-4-0314',
'id': 'gpt-4-0314'
}
mode = "chat"
@ex.named_config
def gpt4_1106_config():
# 0613
model = {
'name': 'gpt-4-1106-preview',
'id': 'gpt-4-1106-preview'
}
mode = "chat"