Or4cl3-1 commited on
Commit
b64f7c1
1 Parent(s): 7e03f67

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +37 -0
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "auto",
3
+ "model_name_or_path": "Or4cl3-1/Daedalus_1",
4
+ "tokenizer_name_or_path": "Or4cl3-1/Daedalus_1",
5
+ "pad_to_max_length": true,
6
+ "max_length": 1024,
7
+ "num_beams": 4,
8
+ "eos_token_id": 2,
9
+ "length_penalty": 2.0,
10
+ "no_repeat_ngram_size": 3,
11
+ "early_stopping": True,
12
+ "skip_special_tokens": True,
13
+ "use_cache": True,
14
+ "output_hidden_states": False,
15
+ "output_attentions": False,
16
+ "return_dict_in_generate": True,
17
+ "forced_bos_token_id": 0,
18
+ "forced_eos_token_id": 2,
19
+ "remove_invalid_values": False,
20
+ "torchscript": False,
21
+ "use_multiprocessing": False,
22
+ "bfloat16": False,
23
+ "past_index": -1,
24
+ "task_specific_params": {
25
+ "summarization": {
26
+ "num_beams": 8,
27
+ "length_penalty": 1.0,
28
+ "max_length": 128
29
+ },
30
+ "question-answering": {
31
+ "num_beams": 8,
32
+ "length_penalty": 1.0,
33
+ "max_length": 384
34
+ }
35
+ }
36
+ }
37
+