shubhamgantayat commited on
Commit
6b98234
·
verified ·
1 Parent(s): 76b4c3b

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,56 +1,54 @@
1
  {
2
- "_name_or_path": "bert-large-uncased",
 
3
  "architectures": [
4
- "BertForTokenClassification"
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": 1024,
12
  "id2label": {
13
- "0": "I-URL_PERSONAL",
14
- "1": "B-PHONE_NUM",
15
- "2": "B-URL_PERSONAL",
16
  "3": "I-ID_NUM",
17
- "4": "B-NAME_STUDENT",
18
- "5": "B-EMAIL",
19
- "6": "I-STREET_ADDRESS",
20
  "7": "B-ID_NUM",
21
- "8": "I-PHONE_NUM",
22
- "9": "I-NAME_STUDENT",
23
- "10": "B-STREET_ADDRESS",
24
  "11": "O",
25
- "12": "B-USERNAME"
26
  },
27
  "initializer_range": 0.02,
28
- "intermediate_size": 4096,
29
  "label2id": {
30
- "B-EMAIL": 5,
31
  "B-ID_NUM": 7,
32
- "B-NAME_STUDENT": 4,
33
- "B-PHONE_NUM": 1,
34
- "B-STREET_ADDRESS": 10,
35
- "B-URL_PERSONAL": 2,
36
- "B-USERNAME": 12,
37
  "I-ID_NUM": 3,
38
- "I-NAME_STUDENT": 9,
39
- "I-PHONE_NUM": 8,
40
- "I-STREET_ADDRESS": 6,
41
- "I-URL_PERSONAL": 0,
42
  "O": 11
43
  },
44
- "layer_norm_eps": 1e-12,
45
  "max_position_embeddings": 512,
46
- "model_type": "bert",
47
- "num_attention_heads": 16,
48
- "num_hidden_layers": 24,
49
  "pad_token_id": 0,
50
- "position_embedding_type": "absolute",
 
 
 
51
  "torch_dtype": "float32",
52
- "transformers_version": "4.35.2",
53
- "type_vocab_size": 2,
54
- "use_cache": true,
55
  "vocab_size": 30522
56
  }
 
1
  {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForTokenClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
 
 
11
  "id2label": {
12
+ "0": "B-USERNAME",
13
+ "1": "B-STREET_ADDRESS",
14
+ "2": "B-NAME_STUDENT",
15
  "3": "I-ID_NUM",
16
+ "4": "I-PHONE_NUM",
17
+ "5": "I-STREET_ADDRESS",
18
+ "6": "B-URL_PERSONAL",
19
  "7": "B-ID_NUM",
20
+ "8": "I-URL_PERSONAL",
21
+ "9": "B-PHONE_NUM",
22
+ "10": "B-EMAIL",
23
  "11": "O",
24
+ "12": "I-NAME_STUDENT"
25
  },
26
  "initializer_range": 0.02,
 
27
  "label2id": {
28
+ "B-EMAIL": 10,
29
  "B-ID_NUM": 7,
30
+ "B-NAME_STUDENT": 2,
31
+ "B-PHONE_NUM": 9,
32
+ "B-STREET_ADDRESS": 1,
33
+ "B-URL_PERSONAL": 6,
34
+ "B-USERNAME": 0,
35
  "I-ID_NUM": 3,
36
+ "I-NAME_STUDENT": 12,
37
+ "I-PHONE_NUM": 4,
38
+ "I-STREET_ADDRESS": 5,
39
+ "I-URL_PERSONAL": 8,
40
  "O": 11
41
  },
 
42
  "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 6,
46
  "pad_token_id": 0,
47
+ "qa_dropout": 0.1,
48
+ "seq_classif_dropout": 0.2,
49
+ "sinusoidal_pos_embds": false,
50
+ "tie_weights_": true,
51
  "torch_dtype": "float32",
52
+ "transformers_version": "4.38.2",
 
 
53
  "vocab_size": 30522
54
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a97cb3ecba695104fa5858d432a25602be646a24467a48f9ce39839a7b31c97e
3
- size 1336469268
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b22da7496a9b097570953434d79dc3bdfc7f9f63e9753964809861d5fb7bf4f1
3
+ size 265503852
runs/Mar29_03-29-18_341bed32227e/events.out.tfevents.1711682960.341bed32227e.152.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbf03ceb8a2466b4b8a7a6cbd348a2f257c2dbd33439a129ef9d4311a2ce2905
3
+ size 5338
tokenizer_config.json CHANGED
@@ -50,6 +50,6 @@
50
  "sep_token": "[SEP]",
51
  "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
- "tokenizer_class": "BertTokenizer",
54
  "unk_token": "[UNK]"
55
  }
 
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:c2092b81867d9594d639b09a6e0f1c006cee259c000191dc458f41a50eb1dab7
3
- size 4600
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17c20ad625e783bfbcb15b0a6cc3082ec8cc92a405060693325d39bc9ba630a3
3
+ size 4920