Cabooose commited on
Commit
3570e06
1 Parent(s): 6dd9c21

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,32 +1,35 @@
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": "NotAnswer",
13
  "1": "Answer"
14
  },
15
  "initializer_range": 0.02,
 
16
  "label2id": {
17
  "Answer": 1,
18
  "NotAnswer": 0
19
  },
 
20
  "max_position_embeddings": 512,
21
- "model_type": "distilbert",
22
- "n_heads": 12,
23
- "n_layers": 6,
 
24
  "pad_token_id": 0,
25
- "qa_dropout": 0.1,
26
- "seq_classif_dropout": 0.2,
27
- "sinusoidal_pos_embds": false,
28
- "tie_weights_": true,
29
  "torch_dtype": "float32",
30
  "transformers_version": "4.28.0",
31
- "vocab_size": 30522
 
 
32
  }
 
1
  {
2
+ "_name_or_path": "dslim/bert-base-NER",
3
+ "_num_labels": 9,
4
  "architectures": [
5
+ "BertForTokenClassification"
6
  ],
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "classifier_dropout": null,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
  "id2label": {
13
  "0": "NotAnswer",
14
  "1": "Answer"
15
  },
16
  "initializer_range": 0.02,
17
+ "intermediate_size": 3072,
18
  "label2id": {
19
  "Answer": 1,
20
  "NotAnswer": 0
21
  },
22
+ "layer_norm_eps": 1e-12,
23
  "max_position_embeddings": 512,
24
+ "model_type": "bert",
25
+ "num_attention_heads": 12,
26
+ "num_hidden_layers": 12,
27
+ "output_past": true,
28
  "pad_token_id": 0,
29
+ "position_embedding_type": "absolute",
 
 
 
30
  "torch_dtype": "float32",
31
  "transformers_version": "4.28.0",
32
+ "type_vocab_size": 2,
33
+ "use_cache": true,
34
+ "vocab_size": 28996
35
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bcbdf53474864b241bba0075ec14a6c7ca1c80ee99f71f9e4d388df26be7303b
3
- size 265492517
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bba8fa8c2e65b251c8edb9190667fc1680916b6fafe8656fa7bb5a1459e1cd13
3
+ size 430957037
runs/Oct03_19-10-32_e17b35ded69f/events.out.tfevents.1696360234.e17b35ded69f.298.4 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5ac21f7f828ce1b9a35bb2aae27029bb99ece0a6c958e1a8556c8182db159997
3
- size 5122
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c22c0e0ee1668aa150f97ff1fc9b6106250495324e6e49c1847e1d16a626c8d9
3
+ size 5476
runs/Oct03_19-10-32_e17b35ded69f/events.out.tfevents.1696361856.e17b35ded69f.298.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:891d29b7582aa578dc04f23317ad38d8544da5868f60fdc7de46d326a7c11cce
3
+ size 560
runs/Oct03_20-05-04_e17b35ded69f/1696363509.574055/events.out.tfevents.1696363509.e17b35ded69f.18338.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac1260ed4d03c77ac241a59696fdac3759b0a0ff6569124e3155b33c06dadf9c
3
+ size 5900
runs/Oct03_20-05-04_e17b35ded69f/events.out.tfevents.1696363509.e17b35ded69f.18338.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8a779d7cc849a000a06aac44601c1589179b85ba176c3b824395a04fb7a4683
3
+ size 4626
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,13 +1,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
  }
 
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
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0db9d2ea611a5796448c540b0ce9283f647a038d120b2d64532f260c789e7a8a
3
  size 3643
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:739be59b0b9caed55b5b6475526432d21aa108a86013a80164c97263f2202e2e
3
  size 3643
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff