Kriyans commited on
Commit
d4ed390
1 Parent(s): 143b9a6

Training in progress, epoch 1

Browse files
Files changed (6) hide show
  1. config.json +15 -22
  2. pytorch_model.bin +2 -2
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +2 -5
  5. training_args.bin +1 -1
  6. vocab.txt +0 -0
config.json CHANGED
@@ -1,14 +1,13 @@
1
  {
2
- "_name_or_path": "bert-base-multilingual-cased",
 
3
  "architectures": [
4
- "BertForTokenClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.1,
7
- "classifier_dropout": null,
8
- "directionality": "bidi",
9
- "hidden_act": "gelu",
10
- "hidden_dropout_prob": 0.1,
11
- "hidden_size": 768,
12
  "id2label": {
13
  "0": "O",
14
  "1": "B-corporation",
@@ -17,7 +16,6 @@
17
  "4": "I-person"
18
  },
19
  "initializer_range": 0.02,
20
- "intermediate_size": 3072,
21
  "label2id": {
22
  "B-corporation": 1,
23
  "B-person": 3,
@@ -25,21 +23,16 @@
25
  "I-person": 4,
26
  "O": 0
27
  },
28
- "layer_norm_eps": 1e-12,
29
  "max_position_embeddings": 512,
30
- "model_type": "bert",
31
- "num_attention_heads": 12,
32
- "num_hidden_layers": 12,
33
  "pad_token_id": 0,
34
- "pooler_fc_size": 768,
35
- "pooler_num_attention_heads": 12,
36
- "pooler_num_fc_layers": 3,
37
- "pooler_size_per_head": 128,
38
- "pooler_type": "first_token_transform",
39
- "position_embedding_type": "absolute",
40
  "torch_dtype": "float32",
41
  "transformers_version": "4.33.2",
42
- "type_vocab_size": 2,
43
- "use_cache": true,
44
- "vocab_size": 119547
45
  }
 
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": "O",
13
  "1": "B-corporation",
 
16
  "4": "I-person"
17
  },
18
  "initializer_range": 0.02,
 
19
  "label2id": {
20
  "B-corporation": 1,
21
  "B-person": 3,
 
23
  "I-person": 4,
24
  "O": 0
25
  },
 
26
  "max_position_embeddings": 512,
27
+ "model_type": "distilbert",
28
+ "n_heads": 12,
29
+ "n_layers": 6,
30
  "pad_token_id": 0,
31
+ "qa_dropout": 0.1,
32
+ "seq_classif_dropout": 0.2,
33
+ "sinusoidal_pos_embds": false,
34
+ "tie_weights_": true,
 
 
35
  "torch_dtype": "float32",
36
  "transformers_version": "4.33.2",
37
+ "vocab_size": 30522
 
 
38
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:52b95e29aef9b8973894f34a32345ac7fef0cb6645cb7f0b6e26c7df4218a6aa
3
- size 709134505
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04255bebfc4d7c2075fbe2d1a7357a0f123d8097d90bebe04f44cc8a5a0a8758
3
+ size 265501733
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,16 +1,13 @@
1
  {
2
  "clean_up_tokenization_spaces": true,
3
  "cls_token": "[CLS]",
4
- "do_basic_tokenize": true,
5
- "do_lower_case": false,
6
  "mask_token": "[MASK]",
7
- "max_len": 512,
8
  "model_max_length": 512,
9
- "never_split": null,
10
  "pad_token": "[PAD]",
11
  "sep_token": "[SEP]",
12
  "strip_accents": null,
13
  "tokenize_chinese_chars": true,
14
- "tokenizer_class": "BertTokenizer",
15
  "unk_token": "[UNK]"
16
  }
 
1
  {
2
  "clean_up_tokenization_spaces": true,
3
  "cls_token": "[CLS]",
4
+ "do_lower_case": true,
 
5
  "mask_token": "[MASK]",
 
6
  "model_max_length": 512,
 
7
  "pad_token": "[PAD]",
8
  "sep_token": "[SEP]",
9
  "strip_accents": null,
10
  "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
  "unk_token": "[UNK]"
13
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:67b93ba0beb90cbd54e6ea0d80b0e26ffdd9afd04db0832828df83bd8f0ec8b0
3
  size 4027
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33bf887705d433d12e536dd9b4b12e06c73d4960fc9bfa755b6495a55f261a2f
3
  size 4027
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff