-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
38 lines (38 loc) · 1.07 KB
/
config.example.json
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
{
"MODELS": {
"text-davinci-003": {
"NAME": "google/flan-t5-base",
"TYPE": "Seq2Seq",
"MODEL_CONFIG": {
"device_map": "auto"
},
"MODEL_DEVICE": null
},
"text-curie-001": {
"ENABLED": false,
"NAME": "facebook/opt-350m",
"TYPE": "CausalLM",
"MODEL_CONFIG": {
"torch_dtype": "float16"
},
"GENERATE_CONFIG": {
"max_new_tokens": 2048
}
},
"text-babbage-001": {
"ENABLED": false,
"NAME": "pszemraj/pegasus-x-large-book-summary",
"TYPE": "Seq2Seq",
"GENERATE_CONFIG": {
"max_length": 256,
"min_length": 8,
"no_repeat_ngram_size": 3,
"early_stopping": true,
"repetition_penalty": 3.5,
"length_penalty": 0.2,
"encoder_no_repeat_ngram_size": 3,
"num_beams": 4
}
}
}
}