Iulian277 commited on
Commit
e99df8a
1 Parent(s): 1f06ae1

Upload 5 files

Browse files
config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.1,
3
+ "activation_function": "gelu",
4
+ "add_final_layer_norm": true,
5
+ "architectures": [
6
+ "BartForConditionalGeneration"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "bos_token_id": 0,
10
+ "classifier_dropout": 0.0,
11
+ "d_model": 1024,
12
+ "decoder_attention_heads": 16,
13
+ "decoder_ffn_dim": 4096,
14
+ "decoder_layerdrop": 0.0,
15
+ "decoder_layers": 12,
16
+ "decoder_start_token_id": 0,
17
+ "dropout": 0.1,
18
+ "encoder_attention_heads": 16,
19
+ "encoder_ffn_dim": 4096,
20
+ "encoder_layerdrop": 0.0,
21
+ "encoder_layers": 12,
22
+ "eos_token_id": 2,
23
+ "forced_eos_token_id": 2,
24
+ "gradient_checkpointing": false,
25
+ "id2label": {
26
+ "0": "LABEL_0",
27
+ "1": "LABEL_1",
28
+ "2": "LABEL_2"
29
+ },
30
+ "init_std": 0.02,
31
+ "is_encoder_decoder": true,
32
+ "label2id": {
33
+ "LABEL_0": 0,
34
+ "LABEL_1": 1,
35
+ "LABEL_2": 2
36
+ },
37
+ "task_specific_params": {
38
+ "summarization": {
39
+ "early_stopping": true,
40
+ "length_penalty": 2.0,
41
+ "max_length": 100,
42
+ "min_length": 10,
43
+ "no_repeat_ngram_size": 3,
44
+ "num_beams": 4
45
+ }
46
+ },
47
+ "max_position_embeddings": 2048,
48
+ "model_type": "bart",
49
+ "num_hidden_layers": 12,
50
+ "pad_token_id": 1,
51
+ "scale_embedding": false,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.32.1",
54
+ "use_cache": false,
55
+ "vocab_size": 50000
56
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ffde95540db45d2399c7cffcf1acd11ade16c6c61bf3d1b91fdc87b22060dce
3
+ size 1632836365
sentencepiece.bpe.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e080a62f42ea3233c1d71fc775b0f381823d61eed8de355be0e2803c647b9be
3
+ size 1119690
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "unk_token": "<unk>",
5
+ "sep_token": "</s>",
6
+ "cls_token": "<s>",
7
+ "pad_token": "<pad>",
8
+ "mask_token": "<mask>"
9
+ }