Camilovelez1 commited on
Commit
3d0ea40
·
verified ·
1 Parent(s): dd2aaa1

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,52 +1,35 @@
1
  {
2
- "_name_or_path": "facebook/bart-large-mnli",
3
- "_num_labels": 3,
4
- "activation_dropout": 0.0,
5
- "activation_function": "gelu",
6
- "add_final_layer_norm": false,
7
  "architectures": [
8
- "BartForSequenceClassification"
9
  ],
10
- "attention_dropout": 0.0,
11
- "bos_token_id": 0,
12
- "classif_dropout": 0.0,
13
- "classifier_dropout": 0.0,
14
- "d_model": 1024,
15
- "decoder_attention_heads": 16,
16
- "decoder_ffn_dim": 4096,
17
- "decoder_layerdrop": 0.0,
18
- "decoder_layers": 12,
19
- "decoder_start_token_id": 2,
20
  "dropout": 0.1,
21
- "encoder_attention_heads": 16,
22
- "encoder_ffn_dim": 4096,
23
- "encoder_layerdrop": 0.0,
24
- "encoder_layers": 12,
25
- "eos_token_id": 2,
26
- "forced_eos_token_id": 2,
27
- "gradient_checkpointing": false,
28
  "id2label": {
29
  "0": "negative",
30
  "1": "neutral",
31
  "2": "positive"
32
  },
33
- "init_std": 0.02,
34
- "is_encoder_decoder": true,
35
  "label2id": {
36
  "negative": 0,
37
  "neutral": 1,
38
  "positive": 2
39
  },
40
- "max_position_embeddings": 1024,
41
- "model_type": "bart",
42
- "normalize_before": false,
43
- "num_hidden_layers": 12,
44
- "output_past": false,
45
- "pad_token_id": 1,
46
  "problem_type": "single_label_classification",
47
- "scale_embedding": false,
 
 
 
48
  "torch_dtype": "float32",
49
  "transformers_version": "4.40.2",
50
- "use_cache": true,
51
- "vocab_size": 50265
52
  }
 
1
  {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
3
+ "activation": "gelu",
 
 
 
4
  "architectures": [
5
+ "DistilBertForSequenceClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
 
 
 
 
 
 
 
 
9
  "dropout": 0.1,
10
+ "hidden_dim": 3072,
 
 
 
 
 
 
11
  "id2label": {
12
  "0": "negative",
13
  "1": "neutral",
14
  "2": "positive"
15
  },
16
+ "initializer_range": 0.02,
 
17
  "label2id": {
18
  "negative": 0,
19
  "neutral": 1,
20
  "positive": 2
21
  },
22
+ "max_position_embeddings": 512,
23
+ "model_type": "distilbert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "pad_token_id": 0,
 
27
  "problem_type": "single_label_classification",
28
+ "qa_dropout": 0.1,
29
+ "seq_classif_dropout": 0.2,
30
+ "sinusoidal_pos_embds": false,
31
+ "tie_weights_": true,
32
  "torch_dtype": "float32",
33
  "transformers_version": "4.40.2",
34
+ "vocab_size": 30522
 
35
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:843e770a6582a868a23ff895dd456fba51ad14f8a8b8fcde40105fbdaece8636
3
- size 1629436964
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cca5145d524138de61d748db2dc05319e8f017f2caea2e58e12fbb379de70fe
3
+ size 267835644
special_tokens_map.json CHANGED
@@ -1,15 +1,7 @@
1
  {
2
- "bos_token": "<s>",
3
- "cls_token": "<s>",
4
- "eos_token": "</s>",
5
- "mask_token": {
6
- "content": "<mask>",
7
- "lstrip": true,
8
- "normalized": true,
9
- "rstrip": false,
10
- "single_word": false
11
- },
12
- "pad_token": "<pad>",
13
- "sep_token": "</s>",
14
- "unk_token": "<unk>"
15
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
7
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,57 +1,55 @@
1
  {
2
- "add_prefix_space": false,
3
  "added_tokens_decoder": {
4
  "0": {
5
- "content": "<s>",
6
  "lstrip": false,
7
- "normalized": true,
8
  "rstrip": false,
9
  "single_word": false,
10
  "special": true
11
  },
12
- "1": {
13
- "content": "<pad>",
14
  "lstrip": false,
15
- "normalized": true,
16
  "rstrip": false,
17
  "single_word": false,
18
  "special": true
19
  },
20
- "2": {
21
- "content": "</s>",
22
  "lstrip": false,
23
- "normalized": true,
24
  "rstrip": false,
25
  "single_word": false,
26
  "special": true
27
  },
28
- "3": {
29
- "content": "<unk>",
30
  "lstrip": false,
31
- "normalized": true,
32
  "rstrip": false,
33
  "single_word": false,
34
  "special": true
35
  },
36
- "50264": {
37
- "content": "<mask>",
38
- "lstrip": true,
39
- "normalized": true,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
43
  }
44
  },
45
- "bos_token": "<s>",
46
  "clean_up_tokenization_spaces": true,
47
- "cls_token": "<s>",
48
- "eos_token": "</s>",
49
- "errors": "replace",
50
- "mask_token": "<mask>",
51
- "model_max_length": 1024,
52
- "pad_token": "<pad>",
53
- "sep_token": "</s>",
54
- "tokenizer_class": "BartTokenizer",
55
- "trim_offsets": true,
56
- "unk_token": "<unk>"
57
  }
 
1
  {
 
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "[PAD]",
5
  "lstrip": false,
6
+ "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
+ "100": {
12
+ "content": "[UNK]",
13
  "lstrip": false,
14
+ "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
+ "101": {
20
+ "content": "[CLS]",
21
  "lstrip": false,
22
+ "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "102": {
28
+ "content": "[SEP]",
29
  "lstrip": false,
30
+ "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f15268bee85aec42089e12372b6de9dd430e8f42f7a7ec8e6dd35a10adae6e71
3
  size 4984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f2922f4a8ffc0bca73a9bbc77bc4a174dc82f12f29922f4a6f19e335d0589c6
3
  size 4984
vocab.txt ADDED
The diff for this file is too large to render. See raw diff