kashparty commited on
Commit
1f64933
·
verified ·
1 Parent(s): 0626ceb

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,36 +1,33 @@
1
  {
2
- "_name_or_path": "FacebookAI/roberta-base",
 
3
  "architectures": [
4
- "RobertaForSequenceClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.1,
7
- "bos_token_id": 0,
8
- "classifier_dropout": null,
9
- "eos_token_id": 2,
10
- "hidden_act": "gelu",
11
- "hidden_dropout_prob": 0.1,
12
- "hidden_size": 768,
13
  "id2label": {
14
  "0": "NEGATIVE",
15
  "1": "POSITIVE"
16
  },
17
  "initializer_range": 0.02,
18
- "intermediate_size": 3072,
19
  "label2id": {
20
  "NEGATIVE": 0,
21
  "POSITIVE": 1
22
  },
23
- "layer_norm_eps": 1e-05,
24
- "max_position_embeddings": 514,
25
- "model_type": "roberta",
26
- "num_attention_heads": 12,
27
- "num_hidden_layers": 12,
28
- "pad_token_id": 1,
29
- "position_embedding_type": "absolute",
30
  "problem_type": "single_label_classification",
 
 
 
 
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.48.3",
33
- "type_vocab_size": 1,
34
- "use_cache": true,
35
- "vocab_size": 50265
36
  }
 
1
  {
2
+ "_name_or_path": "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": "POSITIVE"
14
  },
15
  "initializer_range": 0.02,
 
16
  "label2id": {
17
  "NEGATIVE": 0,
18
  "POSITIVE": 1
19
  },
20
+ "max_position_embeddings": 512,
21
+ "model_type": "distilbert",
22
+ "n_heads": 12,
23
+ "n_layers": 6,
24
+ "pad_token_id": 0,
 
 
25
  "problem_type": "single_label_classification",
26
+ "qa_dropout": 0.1,
27
+ "seq_classif_dropout": 0.2,
28
+ "sinusoidal_pos_embds": false,
29
+ "tie_weights_": true,
30
  "torch_dtype": "float32",
31
  "transformers_version": "4.48.3",
32
+ "vocab_size": 30522
 
 
33
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:035eec771d1235ea4e230fc2ae0611c62bc3e9a75545c4e9db0806e8d0dfeea5
3
- size 498612824
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5d36b253d209eb02159779fed7800aab138d26d59c0c5def3523dac95b79936
3
+ size 267832560
runs/Mar02_21-07-10_2c57425f6e2b/events.out.tfevents.1740949630.2c57425f6e2b.7010.6 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ad349339cd2a94be8658dcae0976701afac6f60275a65d3b4afe4bfe56c105a
3
- size 23209
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a188b0ec3c79dcb2964c75a6d2caf1d79be47e78f8ac1149399fcfdadb0f8933
3
+ size 25568
runs/Mar02_21-07-10_2c57425f6e2b/events.out.tfevents.1740951600.2c57425f6e2b.7010.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:413ce97fe2e3b1d8d05289d4412aae7f911cd615e0f6b57a35a3aa3b2fd324bd
3
+ size 405
runs/Mar02_21-42-08_2c57425f6e2b/events.out.tfevents.1740951729.2c57425f6e2b.7010.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d557c8352ae2123ae86b084df9978e6e1e84cb8e84731096576f3f9ce047008
3
+ size 4184
runs/Mar02_21-42-57_2c57425f6e2b/events.out.tfevents.1740951777.2c57425f6e2b.37957.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01ee9404823fe9dde1c8272187c5b0d68dd629ae4e3024c5d4e8399c203f89d8
3
+ size 7038
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": false,
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,58 +1,56 @@
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": false,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
43
  }
44
  },
45
- "bos_token": "<s>",
46
  "clean_up_tokenization_spaces": false,
47
- "cls_token": "<s>",
48
- "eos_token": "</s>",
49
- "errors": "replace",
50
  "extra_special_tokens": {},
51
- "mask_token": "<mask>",
52
  "model_max_length": 512,
53
- "pad_token": "<pad>",
54
- "sep_token": "</s>",
55
- "tokenizer_class": "RobertaTokenizer",
56
- "trim_offsets": true,
57
- "unk_token": "<unk>"
 
58
  }
 
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": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
 
47
  "extra_special_tokens": {},
48
+ "mask_token": "[MASK]",
49
  "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "DistilBertTokenizer",
55
+ "unk_token": "[UNK]"
56
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7a19cd01b7b6ac40bee4e04f0390f2f1fa1d31035b3677b8851e753ed92021af
3
  size 5304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31af911e4cf292126872ee82844b3b54acfe2dfc5cadf90f4c1f4ce3e517a205
3
  size 5304