Iulian277 commited on
Commit
78572ee
1 Parent(s): 8a7fb11

initial commit

Browse files
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "ckpts-1024/ckpt30out",
3
+ "activation_dropout": 0.1,
4
+ "activation_function": "gelu",
5
+ "add_final_layer_norm": true,
6
+ "architectures": [
7
+ "BartForConditionalGeneration"
8
+ ],
9
+ "attention_dropout": 0.1,
10
+ "bos_token_id": 0,
11
+ "classifier_dropout": 0.0,
12
+ "d_model": 768,
13
+ "decoder_attention_heads": 12,
14
+ "decoder_ffn_dim": 3072,
15
+ "decoder_layerdrop": 0.0,
16
+ "decoder_layers": 6,
17
+ "decoder_start_token_id": 0,
18
+ "dropout": 0.1,
19
+ "encoder_attention_heads": 12,
20
+ "encoder_ffn_dim": 3072,
21
+ "encoder_layerdrop": 0.0,
22
+ "encoder_layers": 6,
23
+ "eos_token_id": 2,
24
+ "forced_eos_token_id": 2,
25
+ "gradient_checkpointing": false,
26
+ "id2label": {
27
+ "0": "LABEL_0",
28
+ "1": "LABEL_1",
29
+ "2": "LABEL_2"
30
+ },
31
+ "init_std": 0.02,
32
+ "is_encoder_decoder": true,
33
+ "label2id": {
34
+ "LABEL_0": 0,
35
+ "LABEL_1": 1,
36
+ "LABEL_2": 2
37
+ },
38
+ "max_position_embeddings": 2048,
39
+ "model_type": "bart",
40
+ "num_hidden_layers": 6,
41
+ "pad_token_id": 1,
42
+ "scale_embedding": false,
43
+ "torch_dtype": "float32",
44
+ "transformers_version": "4.29.2",
45
+ "use_cache": false,
46
+ "vocab_size": 50000
47
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9be6693176a8187aeee33ae75ec2bbc4558347a414248a26d50b78b7bb28f94f
3
+ size 563443869
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
+ }