ericntay commited on
Commit
7c61f1a
1 Parent(s): 4a0c398

Training in progress, step 500

Browse files
config.json CHANGED
@@ -1,14 +1,13 @@
1
  {
2
- "_name_or_path": "bert-base-cased",
 
3
  "architectures": [
4
- "BertForSequenceClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.1,
7
- "classifier_dropout": null,
8
- "gradient_checkpointing": false,
9
- "hidden_act": "gelu",
10
- "hidden_dropout_prob": 0.1,
11
- "hidden_size": 768,
12
  "id2label": {
13
  "0": "LABEL_0",
14
  "1": "LABEL_1",
@@ -18,7 +17,6 @@
18
  "5": "LABEL_5"
19
  },
20
  "initializer_range": 0.02,
21
- "intermediate_size": 3072,
22
  "label2id": {
23
  "LABEL_0": 0,
24
  "LABEL_1": 1,
@@ -27,17 +25,17 @@
27
  "LABEL_4": 4,
28
  "LABEL_5": 5
29
  },
30
- "layer_norm_eps": 1e-12,
31
  "max_position_embeddings": 512,
32
- "model_type": "bert",
33
- "num_attention_heads": 12,
34
- "num_hidden_layers": 12,
35
  "pad_token_id": 0,
36
- "position_embedding_type": "absolute",
37
  "problem_type": "single_label_classification",
 
 
 
 
38
  "torch_dtype": "float32",
39
  "transformers_version": "4.19.4",
40
- "type_vocab_size": 2,
41
- "use_cache": true,
42
- "vocab_size": 28996
43
  }
 
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": "LABEL_0",
13
  "1": "LABEL_1",
 
17
  "5": "LABEL_5"
18
  },
19
  "initializer_range": 0.02,
 
20
  "label2id": {
21
  "LABEL_0": 0,
22
  "LABEL_1": 1,
 
25
  "LABEL_4": 4,
26
  "LABEL_5": 5
27
  },
 
28
  "max_position_embeddings": 512,
29
+ "model_type": "distilbert",
30
+ "n_heads": 12,
31
+ "n_layers": 6,
32
  "pad_token_id": 0,
 
33
  "problem_type": "single_label_classification",
34
+ "qa_dropout": 0.1,
35
+ "seq_classif_dropout": 0.2,
36
+ "sinusoidal_pos_embds": false,
37
+ "tie_weights_": true,
38
  "torch_dtype": "float32",
39
  "transformers_version": "4.19.4",
40
+ "vocab_size": 30522
 
 
41
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dc9b8bda00158a09e3c12ada1c8e7bd2fbc848c9b5b90ae3f29908b9c91e25bb
3
- size 433330541
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65ff3a6b2334feb1882372193c074500c47059513055889b16ea0cb9d5a0bc95
3
+ size 267866609
runs/Jun13_15-02-17_a30db051be23/events.out.tfevents.1655133094.a30db051be23.928.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:053edbac1f05ce0d90e9889f29a38564527c59b3451158acddd5c611faca4c1a
3
- size 40
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e0694c1dc24a092883c5f0f34e3c72039d684960cce5170c97410a77d700322
3
+ size 3786
runs/Jun13_15-19-05_a30db051be23/1655133583.4357321/events.out.tfevents.1655133583.a30db051be23.1311.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9dc4e2e81c33df4a232770d650e09cb01ba336dfee1e1754399bfa2e3993b5
3
+ size 5175
runs/Jun13_15-19-05_a30db051be23/events.out.tfevents.1655133583.a30db051be23.1311.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eea5140f048e41901b36542c6c17e3265a86bf3241e7c9f633c284499a7f2ab
3
+ size 4360
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1 +1 @@
1
- {"do_lower_case": false, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-cased", "tokenizer_class": "BertTokenizer"}
 
1
+ {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ef08a385e05f14cdf61a6d4f590275fb07f2afd3fe360ac86a492d3670984d36
3
  size 3183
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63dd9b185ba543b9275cb9a3fa23f5ac94f613b5d0f74434d43630a266715fa9
3
  size 3183
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff