harsh13333 commited on
Commit
feb5bec
1 Parent(s): 3da5e9f

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,62 +1,55 @@
1
  {
2
- "_name_or_path": "xlm-roberta-large",
 
3
  "architectures": [
4
- "XLMRobertaForTokenClassification"
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": 1024,
13
  "id2label": {
14
  "0": "O",
15
- "1": "B-GCNUM",
16
- "2": "I-GCNUM",
17
- "3": "B-BGNUM",
18
- "4": "I-BGNUM",
19
- "5": "B-DATE",
20
- "6": "I-DATE",
21
- "7": "B-ORG",
22
- "8": "I-ORG",
23
  "9": "B-LOCATION",
24
  "10": "I-LOCATION",
25
- "11": "B-NAME",
26
- "12": "I-NAME",
27
- "13": "B-BARCODE",
28
- "14": "I-BARCODE"
29
  },
30
  "initializer_range": 0.02,
31
- "intermediate_size": 4096,
32
  "label2id": {
33
- "B-BARCODE": 13,
34
- "B-BGNUM": 3,
35
- "B-DATE": 5,
36
- "B-GCNUM": 1,
37
  "B-LOCATION": 9,
38
- "B-NAME": 11,
39
- "B-ORG": 7,
40
- "I-BARCODE": 14,
41
- "I-BGNUM": 4,
42
- "I-DATE": 6,
43
- "I-GCNUM": 2,
44
  "I-LOCATION": 10,
45
- "I-NAME": 12,
46
- "I-ORG": 8,
47
  "O": 0
48
  },
49
- "layer_norm_eps": 1e-05,
50
- "max_position_embeddings": 514,
51
- "model_type": "xlm-roberta",
52
- "num_attention_heads": 16,
53
- "num_hidden_layers": 24,
54
  "output_past": true,
55
- "pad_token_id": 1,
56
- "position_embedding_type": "absolute",
 
 
 
57
  "torch_dtype": "float32",
58
  "transformers_version": "4.39.1",
59
- "type_vocab_size": 1,
60
- "use_cache": true,
61
- "vocab_size": 250002
62
  }
 
1
  {
2
+ "_name_or_path": "distilbert-base-cased",
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": "O",
13
+ "1": "B-ORG",
14
+ "2": "I-ORG",
15
+ "3": "B-GCNUMBER",
16
+ "4": "I-GCNUMBER",
17
+ "5": "B-BGNUMBER",
18
+ "6": "I-BGNUMBER",
19
+ "7": "B-NAME",
20
+ "8": "I-NAME",
21
  "9": "B-LOCATION",
22
  "10": "I-LOCATION",
23
+ "11": "B-COUNTRY",
24
+ "12": "I-COUNTRY"
 
 
25
  },
26
  "initializer_range": 0.02,
 
27
  "label2id": {
28
+ "B-BGNUMBER": 5,
29
+ "B-COUNTRY": 11,
30
+ "B-GCNUMBER": 3,
 
31
  "B-LOCATION": 9,
32
+ "B-NAME": 7,
33
+ "B-ORG": 1,
34
+ "I-BGNUMBER": 6,
35
+ "I-COUNTRY": 12,
36
+ "I-GCNUMBER": 4,
 
37
  "I-LOCATION": 10,
38
+ "I-NAME": 8,
39
+ "I-ORG": 2,
40
  "O": 0
41
  },
42
+ "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 6,
 
46
  "output_past": true,
47
+ "pad_token_id": 0,
48
+ "qa_dropout": 0.1,
49
+ "seq_classif_dropout": 0.2,
50
+ "sinusoidal_pos_embds": false,
51
+ "tie_weights_": true,
52
  "torch_dtype": "float32",
53
  "transformers_version": "4.39.1",
54
+ "vocab_size": 28996
 
 
55
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1ed4e8eaa451e94485ba892e8553dca04ba675f5a4002b607a9b8419c0b36623
3
- size 2235473356
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc48b79aa22f8d405344b4b84be18703be0c91b08a4469d0190befecc6fee07c
3
+ size 260815972
runs/Mar27_05-22-59_4912d2a8deb3/events.out.tfevents.1711516984.4912d2a8deb3.761.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba3dd9319afb0e303dd235e8937de30130f9cb2b7516dacf601b2e6c59a0f6d1
3
+ size 5974
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
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9a4661b2cb6b8a1007906509fe18cbfbc03062a086102bf7b80cfedb80f16c37
3
- size 17082854
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb26b43c98e8266ae3e99c2a583cf8315d73b33a17e6b20b4df7ff1f22392d34
3
+ size 669021
tokenizer_config.json CHANGED
@@ -1,54 +1,55 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "<s>",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
- "1": {
12
- "content": "<pad>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "2": {
20
- "content": "</s>",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "3": {
28
- "content": "<unk>",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "250001": {
36
- "content": "<mask>",
37
- "lstrip": true,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
- "bos_token": "<s>",
45
  "clean_up_tokenization_spaces": true,
46
- "cls_token": "<s>",
47
- "eos_token": "</s>",
48
- "mask_token": "<mask>",
49
  "model_max_length": 512,
50
- "pad_token": "<pad>",
51
- "sep_token": "</s>",
52
- "tokenizer_class": "XLMRobertaTokenizer",
53
- "unk_token": "<unk>"
 
 
54
  }
 
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": false,
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:80aa69e3833c673c739daa7dd9edac9864e00a653bb6392fa3021a21901a2813
3
  size 4920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad9161d8770180991aa7b1b25e04dd570f1f8c61cfc32d52b3387bd2b0e45920
3
  size 4920
vocab.txt ADDED
The diff for this file is too large to render. See raw diff