Sidziesama commited on
Commit
b5a4ae6
1 Parent(s): 730d132

Training in progress epoch 0

Browse files
Files changed (7) hide show
  1. README.md +58 -0
  2. config.json +85 -0
  3. special_tokens_map.json +7 -0
  4. tf_model.h5 +3 -0
  5. tokenizer.json +0 -0
  6. tokenizer_config.json +55 -0
  7. vocab.txt +0 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: distilbert/distilbert-base-uncased
4
+ tags:
5
+ - generated_from_keras_callback
6
+ model-index:
7
+ - name: Sidziesama/Legal_NER_Support_Model_distilledbert
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information Keras had access to. You should
12
+ probably proofread and complete it, then remove this comment. -->
13
+
14
+ # Sidziesama/Legal_NER_Support_Model_distilledbert
15
+
16
+ This model is a fine-tuned version of [distilbert/distilbert-base-uncased](https://huggingface.co/distilbert/distilbert-base-uncased) on an unknown dataset.
17
+ It achieves the following results on the evaluation set:
18
+ - Train Loss: 0.4366
19
+ - Validation Loss: 0.1584
20
+ - Train Precision: 0.8038
21
+ - Train Recall: 0.8357
22
+ - Train F1: 0.8194
23
+ - Train Accuracy: 0.9539
24
+ - Epoch: 0
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - optimizer: {'name': 'AdamWeightDecay', 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 3435, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False, 'weight_decay_rate': 0.01}
44
+ - training_precision: float32
45
+
46
+ ### Training results
47
+
48
+ | Train Loss | Validation Loss | Train Precision | Train Recall | Train F1 | Train Accuracy | Epoch |
49
+ |:----------:|:---------------:|:---------------:|:------------:|:--------:|:--------------:|:-----:|
50
+ | 0.4366 | 0.1584 | 0.8038 | 0.8357 | 0.8194 | 0.9539 | 0 |
51
+
52
+
53
+ ### Framework versions
54
+
55
+ - Transformers 4.39.3
56
+ - TensorFlow 2.15.0
57
+ - Datasets 2.18.0
58
+ - Tokenizers 0.15.2
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert/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-CASE_NUMBER",
13
+ "1": "B-COURT",
14
+ "2": "B-DATE",
15
+ "3": "B-GPE",
16
+ "4": "B-JUDGE",
17
+ "5": "B-LAWYER",
18
+ "6": "B-ORG",
19
+ "7": "B-OTHER_PERSON",
20
+ "8": "B-PETITIONER",
21
+ "9": "B-PRECEDENT",
22
+ "10": "B-PROVISION",
23
+ "11": "B-RESPONDENT",
24
+ "12": "B-STATUTE",
25
+ "13": "B-WITNESS",
26
+ "14": "I-CASE_NUMBER",
27
+ "15": "I-COURT",
28
+ "16": "I-DATE",
29
+ "17": "I-GPE",
30
+ "18": "I-JUDGE",
31
+ "19": "I-LAWYER",
32
+ "20": "I-ORG",
33
+ "21": "I-OTHER_PERSON",
34
+ "22": "I-PETITIONER",
35
+ "23": "I-PRECEDENT",
36
+ "24": "I-PROVISION",
37
+ "25": "I-RESPONDENT",
38
+ "26": "I-STATUTE",
39
+ "27": "I-WITNESS",
40
+ "28": "O"
41
+ },
42
+ "initializer_range": 0.02,
43
+ "label2id": {
44
+ "B-CASE_NUMBER": 0,
45
+ "B-COURT": 1,
46
+ "B-DATE": 2,
47
+ "B-GPE": 3,
48
+ "B-JUDGE": 4,
49
+ "B-LAWYER": 5,
50
+ "B-ORG": 6,
51
+ "B-OTHER_PERSON": 7,
52
+ "B-PETITIONER": 8,
53
+ "B-PRECEDENT": 9,
54
+ "B-PROVISION": 10,
55
+ "B-RESPONDENT": 11,
56
+ "B-STATUTE": 12,
57
+ "B-WITNESS": 13,
58
+ "I-CASE_NUMBER": 14,
59
+ "I-COURT": 15,
60
+ "I-DATE": 16,
61
+ "I-GPE": 17,
62
+ "I-JUDGE": 18,
63
+ "I-LAWYER": 19,
64
+ "I-ORG": 20,
65
+ "I-OTHER_PERSON": 21,
66
+ "I-PETITIONER": 22,
67
+ "I-PRECEDENT": 23,
68
+ "I-PROVISION": 24,
69
+ "I-RESPONDENT": 25,
70
+ "I-STATUTE": 26,
71
+ "I-WITNESS": 27,
72
+ "O": 28
73
+ },
74
+ "max_position_embeddings": 512,
75
+ "model_type": "distilbert",
76
+ "n_heads": 12,
77
+ "n_layers": 6,
78
+ "pad_token_id": 0,
79
+ "qa_dropout": 0.1,
80
+ "seq_classif_dropout": 0.2,
81
+ "sinusoidal_pos_embds": false,
82
+ "tie_weights_": true,
83
+ "transformers_version": "4.39.3",
84
+ "vocab_size": 30522
85
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:760ca80b2d44c0f2551901b283a07e04223211ab97fb753d8d97bdec56225d67
3
+ size 265667856
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
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
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff