silviacamplani commited on
Commit
940c1c8
1 Parent(s): 8fc2a09

Training in progress epoch 0

Browse files
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_keras_callback
4
+ model-index:
5
+ - name: silviacamplani/distilbert-finetuned-tapt-ner-ai
6
+ results: []
7
+ ---
8
+
9
+ <!-- This model card has been generated automatically according to the information Keras had access to. You should
10
+ probably proofread and complete it, then remove this comment. -->
11
+
12
+ # silviacamplani/distilbert-finetuned-tapt-ner-ai
13
+
14
+ This model was trained from scratch on an unknown dataset.
15
+ It achieves the following results on the evaluation set:
16
+ - Train Loss: 2.5750
17
+ - Validation Loss: 1.7754
18
+ - Train Precision: 0.0
19
+ - Train Recall: 0.0
20
+ - Train F1: 0.0
21
+ - Train Accuracy: 0.6480
22
+ - Epoch: 0
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - optimizer: {'inner_optimizer': {'class_name': 'AdamWeightDecay', 'config': {'name': 'AdamWeightDecay', 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 1e-05, 'decay_steps': 350, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False, 'weight_decay_rate': 0.01}}, 'dynamic': True, 'initial_scale': 32768.0, 'dynamic_growth_steps': 2000}
42
+ - training_precision: mixed_float16
43
+
44
+ ### Training results
45
+
46
+ | Train Loss | Validation Loss | Train Precision | Train Recall | Train F1 | Train Accuracy | Epoch |
47
+ |:----------:|:---------------:|:---------------:|:------------:|:--------:|:--------------:|:-----:|
48
+ | 2.5750 | 1.7754 | 0.0 | 0.0 | 0.0 | 0.6480 | 0 |
49
+
50
+
51
+ ### Framework versions
52
+
53
+ - Transformers 4.20.1
54
+ - TensorFlow 2.6.4
55
+ - Datasets 2.1.0
56
+ - Tokenizers 0.12.1
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "silviacamplani/distilbert-finetuned-tapt-lm-ai",
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-algorithm",
14
+ "2": "I-algorithm",
15
+ "3": "B-conference",
16
+ "4": "I-conference",
17
+ "5": "B-country",
18
+ "6": "I-country",
19
+ "7": "B-field",
20
+ "8": "I-field",
21
+ "9": "B-location",
22
+ "10": "I-location",
23
+ "11": "B-metrics",
24
+ "12": "I-metrics",
25
+ "13": "B-misc",
26
+ "14": "I-misc",
27
+ "15": "B-organisation",
28
+ "16": "I-organisation",
29
+ "17": "B-person",
30
+ "18": "I-person",
31
+ "19": "B-product",
32
+ "20": "I-product",
33
+ "21": "B-programlang",
34
+ "22": "I-programlang",
35
+ "23": "B-researcher",
36
+ "24": "I-researcher",
37
+ "25": "B-task",
38
+ "26": "I-task",
39
+ "27": "B-university",
40
+ "28": "I-university"
41
+ },
42
+ "initializer_range": 0.02,
43
+ "label2id": {
44
+ "B-algorithm": 1,
45
+ "B-conference": 3,
46
+ "B-country": 5,
47
+ "B-field": 7,
48
+ "B-location": 9,
49
+ "B-metrics": 11,
50
+ "B-misc": 13,
51
+ "B-organisation": 15,
52
+ "B-person": 17,
53
+ "B-product": 19,
54
+ "B-programlang": 21,
55
+ "B-researcher": 23,
56
+ "B-task": 25,
57
+ "B-university": 27,
58
+ "I-algorithm": 2,
59
+ "I-conference": 4,
60
+ "I-country": 6,
61
+ "I-field": 8,
62
+ "I-location": 10,
63
+ "I-metrics": 12,
64
+ "I-misc": 14,
65
+ "I-organisation": 16,
66
+ "I-person": 18,
67
+ "I-product": 20,
68
+ "I-programlang": 22,
69
+ "I-researcher": 24,
70
+ "I-task": 26,
71
+ "I-university": 28,
72
+ "O": 0
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.20.1",
84
+ "vocab_size": 30522
85
+ }
logs/train/events.out.tfevents.1661442665.1a16df506db2.17.0.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abad9124b81329f0c3cdd8c87be42b48c5e791ba9b15f324ec12ef04c1d92c06
3
+ size 1868311
logs/train/events.out.tfevents.1661442676.1a16df506db2.profile-empty ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f0b40383b3f68699a846d93e7004ff89ca08f2ed4ec50c2c635684ffa7e9ec9
3
+ size 40
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.input_pipeline.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00bcd7cbd01bb6ba8a19aa77e4b9926444fc6b0fe6607967329206e3d60fd091
3
+ size 3048
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.kernel_stats.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:869f71d71e7d7e190028fb5a5dd90a5ea0b75bdbc8be8922d029254c3e9a46fa
3
+ size 287493
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.memory_profile.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3bdc25b3c899d59ba63fb5f7cd583ca6718cd1105d508ce8d2d9732428e2876
3
+ size 38791
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.overview_page.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:191aecd64658a16710ea7cd7375afba58e712d652a6cfea7a03df1cbd036e053
3
+ size 5957
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.tensorflow_stats.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8a9e61a8fa71c39364284c049e2322aad39ecd8a21d4ca2a338ca173d28e606
3
+ size 193399
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.trace.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32c0cb62405074eb53554313636215e417a51d00c6523199c9ced6349e1478ea
3
+ size 186484
logs/train/plugins/profile/2022_08_25_15_51_16/1a16df506db2.xplane.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec2ea571a7d56b0e02790a29e58709ff1da50045925637b3ee01f1c85c378f2c
3
+ size 1476535
logs/validation/events.out.tfevents.1661442680.1a16df506db2.17.1.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af124c96baee7698775eac71c8ce79948ed375a488a389a1faf7eb1d88201291
3
+ size 193
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:afa80c39afccb8fa963d69f04fd7c511c63e5d4b535c0201b512bafda5a7a134
3
+ size 265666912
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "silviacamplani/distilbert-finetuned-tapt-lm-ai",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff